html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333333; background-color: #FFFFFF; } :root { --primary-color: #26A9E0; --secondary-color: #FFFFFF; --login-color: #EA7C07; --dark-bg-1: #0a0a0a; --dark-bg-2: #1a1a2e; --dark-bg-3: #16213e; --neon-primary: var(--primary-color); --neon-secondary: #FF00FF; /* Magenta */ --neon-accent: #FFFF00; /* Yellow */ --header-offset: 160px; /* Desktop: Marquee(50) + HeaderTop(60) + MainNav(50) */ } @media (max-width: 768px) { :root { --header-offset: 130px; /* Mobile: Marquee(30) + HeaderTop(50) + MobileButtons(50) */ } } /* Fixed Header Offset for body */ body { padding-top: var(--header-offset); } /* --- Neon Glow Animations --- */ @keyframes theme-colors { 0%, 100% { border-color: var(--neon-primary); box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary), inset 0 0 10px rgba(38, 169, 224, 0.3); } 33% { border-color: var(--neon-secondary); box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary), inset 0 0 10px rgba(255, 0, 255, 0.3); } 66% { border-color: var(--neon-accent); box-shadow: 0 0 10px var(--neon-accent), 0 0 20px var(--neon-accent), inset 0 0 10px rgba(255, 255, 0, 0.3); } } @keyframes text-glow-flow { 0% { text-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary), 0 0 15px var(--neon-primary); color: var(--secondary-color); } 50% { text-shadow: 0 0 5px var(--neon-secondary), 0 0 10px var(--neon-secondary), 0 0 15px var(--neon-secondary); color: var(--secondary-color); } 100% { text-shadow: 0 0 5px var(--neon-accent), 0 0 10px var(--neon-accent), 0 0 15px var(--neon-accent); color: var(--secondary-color); } } @keyframes marquee-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.9; } } @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* --- 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-primary), 0 0 20px var(--neon-primary), 0 0 30px var(--neon-primary), inset 0 0 20px rgba(38, 169, 224, 0.1); z-index: 1001; height: 50px; /* Explicit height for offset calculation */ } .marquee-container { width: 100%; max-width: 100%; margin: 0 auto; overflow: hidden; display: flex; align-items: center; gap: 15px; padding: 10px 20px; box-sizing: border-box; } .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-primary), 0 0 10px var(--neon-primary), 0 0 15px var(--neon-primary); filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); } .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: 15px; font-weight: 600; color: var(--secondary-color); text-decoration: none; text-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary), 0 0 15px var(--neon-primary); 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-primary), 0 0 20px var(--neon-primary), 0 0 30px var(--neon-primary), 0 0 40px var(--neon-primary); transform: scale(1.05); color: var(--secondary-color); } .marquee-separator { font-size: 15px; color: rgba(255, 255, 255, 0.6); margin: 0 15px; text-shadow: 0 0 3px var(--neon-primary), 0 0 6px var(--neon-primary); } /* --- Header Section --- */ .site-header { position: fixed; top: 50px; /* Adjusted for marquee height */ left: 0; width: 100%; z-index: 1000; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2), var(--dark-bg-3)); } .site-header .header-top { 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-primary), 0 0 20px var(--neon-primary), 0 0 30px var(--neon-primary), inset 0 0 20px rgba(38, 169, 224, 0.1); padding: 10px 0; min-height: 40px; } .site-header .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; box-sizing: border-box; } .site-header .logo { color: var(--secondary-color); font-size: 28px; font-weight: bold; text-decoration: none; line-height: 1; padding: 5px 0; /* LOGO NO NEON EFFECTS */ } .site-header .logo img { display: block; max-height: 40px; height: auto; width: auto; } .site-header .desktop-nav-buttons { display: flex; gap: 10px; } .site-header .mobile-nav-buttons { display: none; /* Hidden on desktop */ } .site-header .btn { position: relative; background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary)); padding: 12px 25px; color: var(--secondary-color); font-size: 15px; font-weight: 600; 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-primary); transition: all 0.3s ease; cursor: pointer; white-space: nowrap; } .site-header .btn:hover { animation-duration: 2s; transform: translateY(-2px); } .site-header .main-nav { 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 reverse; box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary), 0 0 30px var(--neon-secondary), inset 0 0 20px rgba(255, 0, 255, 0.1); padding: 5px 0; display: flex; /* Desktop default */ min-height: 40px; } .site-header .main-nav .nav-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; box-sizing: border-box; flex-wrap: wrap; } .site-header .nav-link { color: var(--secondary-color); text-decoration: none; padding: 10px 15px; font-size: 16px; font-weight: 500; transition: color 0.3s ease, text-shadow 0.3s ease; white-space: nowrap; } .site-header .nav-link:hover, .site-header .nav-link.active { color: var(--neon-primary); text-shadow: 0 0 5px var(--neon-primary); } .hamburger-menu { display: none; /* Hidden on desktop */ background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1002; } .hamburger-icon { display: block; width: 25px; height: 3px; background-color: var(--secondary-color); position: relative; transition: background-color 0.3s ease; box-shadow: 0 0 5px var(--neon-primary); } .hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 100%; height: 100%; background-color: var(--secondary-color); position: absolute; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 5px var(--neon-primary); } .hamburger-icon::before { top: -8px; } .hamburger-icon::after { top: 8px; } .hamburger-menu.active .hamburger-icon { background-color: transparent; box-shadow: none; } .hamburger-menu.active .hamburger-icon::before { transform: translateY(8px) rotate(45deg); box-shadow: 0 0 5px var(--neon-secondary); } .hamburger-menu.active .hamburger-icon::after { transform: translateY(-8px) rotate(-45deg); box-shadow: 0 0 5px var(--neon-secondary); } .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-color: #000000; color: #CCCCCC; padding: 40px 0 20px; font-size: 14px; } .site-footer .footer-top-section { padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .site-footer .footer-middle-section { padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .site-footer .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .site-footer .footer-col { display: flex; flex-direction: column; } .site-footer .footer-logo { color: var(--primary-color); font-size: 24px; font-weight: bold; text-decoration: none; margin-bottom: 15px; } .site-footer .footer-description { color: #AAAAAA; line-height: 1.6; word-wrap: break-word; overflow-wrap: break-word; } .site-footer .footer-heading { color: var(--secondary-color); font-size: 16px; margin-bottom: 20px; text-transform: uppercase; } .site-footer .footer-nav { list-style: none; padding: 0; margin: 0; } .site-footer .footer-nav li { margin-bottom: 10px; } .site-footer .footer-nav a { color: #AAAAAA; text-decoration: none; transition: color 0.3s ease; } .site-footer .footer-nav a:hover { color: var(--primary-color); } .site-footer .payment-methods .payment-icons, .site-footer .game-providers-section .game-providers-icons, .site-footer .social-media-section .social-media-icons { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 8px; width: 100%; } .site-footer .payment-methods .payment-icons img, .site-footer .game-providers-section .game-providers-icons img, .site-footer .social-media-section .social-media-icons img { max-height: 50px; height: auto; width: auto; object-fit: contain; } .site-footer .footer-bottom-section { padding-top: 20px; text-align: center; } .site-footer .footer-legal-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 5px 15px; margin-bottom: 15px; } .site-footer .footer-legal-nav a { color: #AAAAAA; text-decoration: none; transition: color 0.3s ease; white-space: nowrap; } .site-footer .footer-legal-nav a:hover { color: var(--primary-color); } .site-footer .footer-legal-nav .separator { color: #555555; } .site-footer .copyright { color: #AAAAAA; font-size: 13px; } /* --- Responsive Design --- */ @media (max-width: 1024px) { .site-footer .footer-container { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { /* Mobile Content Overflow Prevention */ .page-content img { max-width: 100% !important; height: auto !important; display: block; } .page-content { overflow-x: hidden; max-width: 100%; } body { overflow-x: hidden; } /* Marquee Mobile */ .marquee-section { height: 40px; } .marquee-container { gap: 10px; padding: 5px 10px; } .marquee-icon { width: 25px; height: 25px; } .marquee-icon-emoji { font-size: 16px; } .marquee-text { font-size: 13px; } .marquee-separator { font-size: 13px; margin: 0 10px; } .marquee-content { gap: 20px; animation: marquee-scroll 25s linear infinite; } /* Header Mobile */ .site-header { top: 40px; /* Adjusted for mobile marquee height */ } .site-header .header-top { padding: 5px 0; } .site-header .header-container { width: 100%; max-width: none; padding: 0 15px; justify-content: space-between; position: relative; min-height: 50px; } .site-header .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; position: absolute; left: 50%; transform: translateX(-50%); max-width: calc(100% - 100px); /* Adjust to prevent overlap with hamburger */ } .site-header .logo img { max-height: 35px; } .site-header .desktop-nav-buttons { display: none; } .site-header .hamburger-menu { display: block; position: relative; z-index: 1002; margin-left: -10px; } .site-header .mobile-nav-buttons { display: flex !important; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2), var(--dark-bg-3)); border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary); padding: 10px 15px; width: 100%; max-width: 100%; box-sizing: border-box; justify-content: center; gap: 10px; flex-wrap: nowrap; min-height: 50px; } .site-header .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); box-sizing: border-box; padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; text-align: center; } .site-header .main-nav { display: none; /* Default hidden on mobile */ flex-direction: column; position: fixed; top: var(--header-offset); left: 0; width: 100%; height: calc(100% - var(--header-offset)); background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-1)); z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto; border-top: 2px solid; border-right: 2px solid; animation: theme-colors 4s ease-in-out infinite reverse; box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary); } .site-header .main-nav.active { display: flex; /* Show when active */ transform: translateX(0); } .site-header .main-nav .nav-container { flex-direction: column; padding: 20px 15px; align-items: flex-start; max-width: none; width: 100%; } .site-header .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .site-header .nav-link:last-child { border-bottom: none; } .mobile-menu-overlay.active { display: block; } /* Footer Mobile */ .site-footer .footer-container { grid-template-columns: 1fr; gap: 20px; } .site-footer .footer-legal-nav { flex-direction: column; align-items: center; gap: 5px; } .site-footer .footer-legal-nav .separator { display: none; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
