:root { --primary-color: #26A9E0; --secondary-color: #FFFFFF; --login-color: #EA7C07; --dark-bg-1: #0a0a0a; --dark-bg-2: #1a1a2e; --dark-bg-3: #16213e; --neon-blue: #00FFFF; --neon-pink: #FF00FF; --neon-green: #00FF00; --neon-yellow: #FFFF00; --neon-red: #FF0000; --header-offset: 155px; /* Desktop: Marquee 45px + Header-top 60px + Main-nav 50px = 155px */ } @media (max-width: 768px) { :root { --header-offset: 155px; /* Mobile: Marquee 45px + Header-top 60px + Mobile-nav-buttons 50px = 155px */ } } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Arial', sans-serif; line-height: 1.6; color: var(--secondary-color); background-color: var(--dark-bg-1); padding-top: var(--header-offset); } /* Animations for dynamic neon colors */ @keyframes theme-colors { 0%, 100% { border-color: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), inset 0 0 10px rgba(0, 255, 255, 0.3); } 33% { border-color: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), inset 0 0 10px rgba(255, 0, 255, 0.3); } 66% { border-color: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow), inset 0 0 10px rgba(255, 255, 0, 0.3); } } @keyframes text-glow-flow { 0% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-blue); color: var(--secondary-color); } 33% { text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 15px var(--neon-pink); color: var(--secondary-color); } 66% { text-shadow: 0 0 5px var(--neon-yellow), 0 0 10px var(--neon-yellow), 0 0 15px var(--neon-yellow); color: var(--secondary-color); } 100% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-blue); color: var(--secondary-color); } } /* Marquee Section */ .marquee-section { position: fixed; top: 0; left: 0; width: 100%; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2), var(--dark-bg-3)); color: var(--secondary-color); overflow: hidden; border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), inset 0 0 20px rgba(0, 255, 255, 0.1); z-index: 1001; font-size: 14px; } .marquee-container { width: 100%; max-width: 1200px; margin: 0 auto; overflow: hidden; display: flex; align-items: center; gap: 15px; padding: 8px 20px; } .marquee-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; z-index: 2; position: relative; } .marquee-icon-emoji { font-size: 20px; display: inline-block; animation: marquee-pulse 2s ease-in-out infinite, text-glow-flow 3s ease-in-out infinite alternate; text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-blue); filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); } @keyframes marquee-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.9; } } .marquee-wrapper { flex: 1; overflow: hidden; position: relative; } .marquee-content { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee-scroll 30s linear infinite; gap: 30px; } .marquee-text { font-size: 14px; font-weight: 600; color: var(--secondary-color); text-decoration: none; text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-blue); line-height: 1.5; display: inline-block; vertical-align: middle; animation: text-glow-flow 3s ease-in-out infinite alternate; cursor: pointer; transition: all 0.3s ease; } .marquee-text:hover { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--neon-blue); transform: scale(1.05); color: var(--secondary-color); } .marquee-separator { font-size: 14px; color: rgba(255, 255, 255, 0.6); margin: 0 15px; text-shadow: 0 0 3px var(--neon-blue), 0 0 6px var(--neon-blue); } @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* Header Section */ .site-header { position: fixed; top: 45px; /* Marquee height */ left: 0; width: 100%; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2), var(--dark-bg-3)); z-index: 1000; } .header-top { width: 100%; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2)); border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow), inset 0 0 20px rgba(255, 255, 0, 0.1); padding: 10px 0; min-height: 40px; display: flex; align-items: center; } .header-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { color: var(--secondary-color); font-size: 28px; font-weight: bold; text-decoration: none; display: block; } .logo img { display: block; max-width: 100%; height: auto; max-height: 50px; } .desktop-nav-buttons { display: flex; gap: 10px; } .btn { position: relative; padding: 12px 20px; color: var(--secondary-color); text-decoration: none; border-radius: 5px; border: 2px solid; animation: theme-colors 4s ease-in-out infinite; text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--neon-blue); transition: all 0.3s ease; font-weight: bold; font-size: 15px; background: linear-gradient(135deg, var(--primary-color), var(--neon-blue)); } .btn:hover { animation-duration: 2s; transform: translateY(-2px); } .main-nav { width: 100%; background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-3)); border-top: 2px solid; border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red), inset 0 0 20px rgba(255, 0, 0, 0.1); padding: 10px 0; min-height: 30px; display: flex; align-items: center; } .nav-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; gap: 25px; } .nav-link { color: var(--secondary-color); text-decoration: none; font-weight: 600; padding: 8px 12px; transition: color 0.3s ease, text-shadow 0.3s ease; font-size: 15px; } .nav-link:hover { color: var(--neon-blue); text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); } .hamburger-menu { display: none; cursor: pointer; width: 30px; height: 25px; position: relative; z-index: 1002; } .hamburger-menu .bar { display: block; width: 100%; height: 3px; background-color: var(--neon-blue); border-radius: 2px; position: absolute; left: 0; transition: all 0.3s ease; animation: text-glow-flow 3s ease-in-out infinite alternate; } .hamburger-menu .bar:nth-child(1) { top: 0; } .hamburger-menu .bar:nth-child(2) { top: 11px; } .hamburger-menu .bar:nth-child(3) { top: 22px; } .hamburger-menu.active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); } .hamburger-menu.active .bar:nth-child(2) { opacity: 0; } .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); } .mobile-nav-buttons { display: none; /* Hidden on desktop */ } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 999; } /* Footer Section */ .site-footer { background: var(--dark-bg-2); color: #ccc; padding: 40px 0 20px; font-size: 14px; } .footer-top { padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .footer-col { margin-bottom: 20px; } .footer-logo { color: var(--secondary-color); font-size: 24px; font-weight: bold; text-decoration: none; display: block; margin-bottom: 15px; } .footer-description { line-height: 1.6; color: #aaa; word-wrap: break-word; overflow-wrap: break-word; } .footer-heading { font-size: 16px; color: var(--secondary-color); margin-bottom: 15px; font-weight: bold; } .footer-nav { list-style: none; } .footer-nav li { margin-bottom: 8px; } .footer-nav a, .footer-nav-action a { color: #aaa; text-decoration: none; transition: color 0.3s ease; } .footer-nav a:hover, .footer-nav-action a:hover { color: var(--primary-color); } .payment-icons, .game-providers-icons, .social-media-icons { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 8px; width: 100%; } .payment-icons img, .game-providers-icons img, .social-media-icons img { max-height: 50px; height: auto; width: auto; } .footer-middle { padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .game-providers-section, .social-media-section { margin-bottom: 20px; } .footer-bottom { padding-top: 20px; } .copyright { text-align: center; color: #888; font-size: 13px; margin-bottom: 10px; } .footer-nav-action { display: flex; justify-content: center; list-style: none; gap: 20px; margin-top: 15px; } .footer-nav-action a { color: var(--login-color); font-weight: bold; } /* Mobile Responsive */ @media (max-width: 768px) { .marquee-section { padding: 0px 2px; } .marquee-container { gap: 10px; padding: 0px 2px; } .marquee-icon { width: 20px; height: 20px; } .marquee-icon-emoji { font-size: 14px; } .marquee-text { font-size: 12px; } .marquee-separator { font-size: 12px; margin: 0 10px; } .marquee-content { gap: 20px; animation: marquee-scroll 25s linear infinite; } .site-header { top: 45px; /* Marquee height */ } .header-top { padding: 10px 0; } .header-container { padding: 0 15px; width: 100%; max-width: none; justify-content: space-between; } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; } .logo img { max-height: 40px !important; } .desktop-nav-buttons { display: none; } .hamburger-menu { display: flex; align-items: center; justify-content: center; } .mobile-nav-buttons { display: flex !important; flex-wrap: nowrap; gap: 10px; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; padding: 5px 15px; min-height: 40px; } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); box-sizing: border-box; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; padding: 8px 12px; font-size: 13px; text-align: center; } .main-nav { display: none; /* Hidden by default on mobile */ position: fixed; top: 155px; /* Marquee + Header-top + Mobile-nav-buttons height */ left: 0; width: 75%; height: calc(100% - 155px); background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-1)); flex-direction: column; align-items: flex-start; justify-content: flex-start; transform: translateX(-100%); transition: transform 0.3s ease; border-right: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), inset 0 0 20px rgba(0, 255, 255, 0.1); z-index: 1000; overflow-y: auto; } .main-nav.active { display: flex; /* Show menu when active */ transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 20px 15px; width: 100%; max-width: none; gap: 15px; } .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .mobile-menu-overlay.active { display: block; } .footer-container { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; width: 100%; max-width: none; } .footer-col { margin-bottom: 0; } .footer-nav-action { flex-direction: column; gap: 10px; } .copyright { text-align: left; } .page-content img { max-width: 100% !important; height: auto !important; display: block; } .page-content { overflow-x: hidden; max-width: 100%; } body { overflow-x: hidden; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@media (max-width: 768px) {
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
}
