html { scroll-behavior: smooth; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background-color: #121212; color: #e0e0e0; } :root { --primary-color: #26A9E0; --secondary-color: #FFFFFF; --neon-primary: #00E5FF; /* Bright Cyan derived from primary */ --neon-secondary: #FF00FF; /* Bright Magenta */ --neon-accent: #CCFF00; /* Bright Lime */ --header-offset: 155px; /* Desktop: 45px (marquee) + 60px (header-top) + 50px (main-nav) */ } @media (max-width: 768px) { :root { --header-offset: 130px; /* Mobile: 30px (marquee) + 50px (header-top) + 50px (mobile-buttons) */ } } .page-content img { max-width: 100% !important; height: auto !important; display: block; } .page-content { overflow-x: hidden; max-width: 100%; } body { overflow-x: hidden; } /* Keyframe Animations for Neon Effects */ @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%); } } @keyframes theme-colors { 0%, 100% { border-color: var(--neon-primary); box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary); } 33% { border-color: var(--neon-secondary); box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary); } 66% { border-color: var(--neon-accent); box-shadow: 0 0 10px var(--neon-accent), 0 0 20px var(--neon-accent); } } @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: #ffffff; } 50% { text-shadow: 0 0 5px var(--neon-secondary), 0 0 10px var(--neon-secondary), 0 0 15px var(--neon-secondary); color: #ffffff; } 100% { text-shadow: 0 0 5px var(--neon-accent), 0 0 10px var(--neon-accent), 0 0 15px var(--neon-accent); color: #ffffff; } } /* Marquee Section */ .marquee-section { position: fixed; top: 0; left: 0; width: 100%; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); color: #ffffff; 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(0, 229, 255, 0.1); z-index: 1001; height: 45px; display: flex; align-items: center; } .marquee-container { width: 100%; max-width: 100%; margin: 0 auto; overflow: hidden; display: flex; align-items: center; gap: 15px; padding: 0 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-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; padding-right: 30px; /* Ensure gap for seamless loop */ } .marquee-text { font-size: 16px; font-weight: 600; color: #ffffff; 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: #ffffff; } .marquee-separator { font-size: 16px; 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: 45px; /* Adjust based on marquee height */ left: 0; width: 100%; z-index: 1000; background-color: transparent; /* Handled by child elements */ } .header-top { background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); 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(0, 229, 255, 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); /* White for clear contrast */ font-size: 28px; font-weight: bold; text-decoration: none; padding: 5px 0; display: block; /* Regular style, no neon */ } .desktop-nav-buttons { display: flex; gap: 10px; } .btn { position: relative; background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary)); padding: 12px 25px; color: #ffffff; text-decoration: none; border-radius: 5px; border: 2px solid; animation: theme-colors 4s ease-in-out infinite; text-shadow: 0 0 5px #ffffff, 0 0 10px var(--neon-primary); transition: all 0.3s ease; font-weight: 600; font-size: 15px; text-align: center; white-space: nowrap; } .btn:hover { animation-duration: 2s; transform: translateY(-2px); } .main-nav { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); border-top: 2px solid; border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; 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); display: flex; align-items: center; justify-content: center; padding: 10px 0; min-height: 30px; } .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); font-size: 16px; text-decoration: none; padding: 8px 0; position: relative; transition: color 0.3s ease; font-weight: 500; white-space: nowrap; } .nav-link:hover, .nav-link.active { color: var(--neon-primary); } .hamburger-menu { display: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 1002; } .hamburger-menu .bar { width: 100%; height: 3px; background-color: var(--neon-primary); margin: 4px 0; transition: all 0.3s ease; border-radius: 2px; box-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary); } .hamburger-menu.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); } .hamburger-menu.active .bar:nth-child(2) { opacity: 0; } .hamburger-menu.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); } .mobile-nav-buttons { display: none; /* Hidden by default for desktop */ } /* Footer Section */ .site-footer { background-color: #0d1117; color: #e0e0e0; padding: 40px 0 20px; font-size: 14px; } .footer-top { padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 30px; } .footer-grid-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(--primary-color); font-size: 24px; font-weight: bold; text-decoration: none; display: block; margin-bottom: 15px; } .footer-description { line-height: 1.6; color: #b0b0b0; word-wrap: break-word; overflow-wrap: break-word; } .footer-heading { font-size: 18px; color: var(--secondary-color); margin-bottom: 15px; font-weight: 600; } .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-nav li { margin-bottom: 8px; } .footer-nav a { color: #b0b0b0; text-decoration: none; transition: color 0.3s ease; } .footer-nav 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 { max-width: 1200px; margin: 0 auto 30px; padding: 0 20px; } .game-providers-section, .social-media-section { margin-bottom: 25px; } .footer-bottom { text-align: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .copyright { color: #888; font-size: 13px; } /* Mobile Responsive Styles */ @media (max-width: 768px) { .marquee-section { height: 30px; } .marquee-container { gap: 10px; padding: 0 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 8px; } .marquee-content { gap: 20px; animation: marquee-scroll 25s linear infinite; } .site-header { top: 30px; /* Adjust based on mobile marquee height */ } .header-top { padding: 8px 0; min-height: 40px; } .header-container { padding: 0 15px; } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; } .logo img { max-height: 40px; } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex !important; justify-content: center; gap: 10px; padding: 10px 15px; background: linear-gradient(135deg, #1a1a2e, #16213e); border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 8px var(--neon-accent), inset 0 0 10px rgba(204, 255, 0, 0.1); } .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; } .hamburger-menu { display: block; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); } .main-nav { display: none; /* Hidden by default */ position: fixed; top: var(--header-offset); /* Position below header-top and mobile-buttons */ left: 0; width: 100%; height: calc(100% - var(--header-offset)); background: linear-gradient(135deg, #0d1117, #1a1a2e); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 20px; box-sizing: border-box; transform: translateX(-100%); transition: transform 0.3s ease-out; z-index: 1000; overflow-y: auto; } .main-nav.active { display: flex; /* Show when active */ transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 0; gap: 15px; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 18px; } .nav-link:last-child { border-bottom: none; } .footer-grid-container { grid-template-columns: 1fr; gap: 20px; padding: 0 15px; } .footer-top { padding-bottom: 20px; margin-bottom: 20px; } .footer-middle { margin: 0 auto 20px; padding: 0 15px; } .footer-bottom { padding: 0 15px; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
