html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Arial', sans-serif; background-color: #FFFFFF; color: #333333; } :root { --primary-color: #017439; --secondary-color: #FFFFFF; --register-color: #C30808; --login-color: #C30808; --background-color: #FFFFFF; --register-login-font-color: #FFFF00; --neon-primary: #FF00FF; /* Vibrant Magenta for neon effect */ --neon-secondary: #00FFFF; /* Vibrant Cyan for neon effect */ --neon-accent: #FFFF00; /* Vibrant Yellow for neon effect */ --marquee-height-desktop: 45px; --marquee-height-mobile: 30px; --header-top-height-desktop: 60px; --main-nav-height-desktop: 50px; --header-top-height-mobile: 50px; --mobile-nav-buttons-height-mobile: 60px; --header-offset: calc(var(--marquee-height-desktop) + var(--header-top-height-desktop) + var(--main-nav-height-desktop)); /* Desktop: 45 + 60 + 50 = 155px */ } @media (max-width: 768px) { :root { --header-offset: calc(var(--marquee-height-mobile) + var(--header-top-height-mobile) + var(--mobile-nav-buttons-height-mobile)); /* Mobile: 30 + 50 + 60 = 140px */ } } /* WCAG AA Contrast Check (example for default text/background) */ body { color: #333333; background-color: #FFFFFF; /* Contrast ratio 16.3:1 - Pass */ } /* Dynamic Neon Glow Colors - Multiple Flowing Color Effects */ /* Base neon glow effect */ .neon-glow { box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, 0 0 20px currentColor, inset 0 0 10px rgba(255, 255, 255, 0.1); } /* Style 1: Classic Neon Tube Effect (supports dynamic colors) */ .neon-tube { border: 2px solid; animation: neon-flicker 2s infinite alternate, theme-colors 4s ease-in-out infinite; } /* Style 2: Cyberpunk Grid Glow (supports dynamic colors) */ .cyber-grid { background: linear-gradient(90deg, transparent 95%, currentColor 100%), linear-gradient(180deg, transparent 95%, currentColor 100%); background-size: 20px 20px; border: 1px solid; animation: hue-spin 4s linear infinite; } /* Style 3: Pulse Breathing Effect (supports dynamic colors) */ .neon-pulse { border: 2px solid; animation: pulse-glow 2s ease-in-out infinite alternate, theme-colors 4s ease-in-out infinite; } /* Style 4: Rainbow Cycle Gradient (dynamic colors) */ .rainbow-flow { border: 2px solid; animation: rainbow-border 3s linear infinite; } /* Style 5: Hue Rotation (dynamic colors) */ .hue-rotate { border: 2px solid; filter: hue-rotate(0deg); animation: hue-spin 4s linear infinite; } /* Style 6: Two-color Alternate Blink (dynamic colors) */ .alternate-glow { border: 2px solid; animation: alternate-colors 2s ease-in-out infinite alternate; } /* Style 7: Multi-color Flowing Light Band (dynamic colors) */ .color-stream { position: relative; border: 2px solid transparent; background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #8000ff, #ff0080); background-size: 400% 400%; animation: gradient-flow 3s ease infinite; } /* Style 8: Random Color Change (dynamic colors) */ .random-colors { border: 2px solid; animation: random-glow 5s linear infinite; } /* Style 9: Website Theme Color Dynamic Change (dynamic colors, recommended) */ .theme-flow { border: 2px solid; animation: theme-colors 4s ease-in-out infinite; } /* Style 10: LED Dot Matrix Effect (supports dynamic colors) */ .led-matrix { border: 2px solid; box-shadow: 0 0 5px currentColor, 0 0 10px currentColor; position: relative; animation: random-glow 5s linear infinite; } .led-matrix::before { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: radial-gradient(circle at 0% 0%, currentColor 2px, transparent 3px), radial-gradient(circle at 100% 0%, currentColor 2px, transparent 3px), radial-gradient(circle at 0% 100%, currentColor 2px, transparent 3px), radial-gradient(circle at 100% 100%, currentColor 2px, transparent 3px); background-size: 20px 20px; animation: led-blink 1s steps(2) infinite; } /* Dynamic color animation definitions */ @keyframes rainbow-border { 0% { border-color: #ff0000; box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; } 16.6% { border-color: #ff8000; box-shadow: 0 0 10px #ff8000, 0 0 20px #ff8000; } 33.3% { border-color: #ffff00; box-shadow: 0 0 10px #ffff00, 0 0 20px #ffff00; } 50% { border-color: #00ff00; box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00; } 66.6% { border-color: #0000ff; box-shadow: 0 0 10px #0000ff, 0 0 20px #0000ff; } 83.3% { border-color: #8000ff; box-shadow: 0 0 10px #8000ff, 0 0 20px #8000ff; } 100% { border-color: #ff0000; box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; } } @keyframes hue-spin { 0% { filter: hue-rotate(0deg); box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary); } 100% { filter: hue-rotate(360deg); box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary); } } @keyframes alternate-colors { 0% { border-color: var(--neon-primary); box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary); } 100% { border-color: var(--neon-secondary); box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary); } } @keyframes gradient-flow { 0% { background-position: 0% 50%; box-shadow: 0 0 10px #ff0000, 0 0 20px #ff8000; } 50% { background-position: 100% 50%; box-shadow: 0 0 10px #00ffff, 0 0 20px #0000ff; } 100% { background-position: 0% 50%; box-shadow: 0 0 10px #ff0000, 0 0 20px #ff8000; } } @keyframes random-glow { 0% { border-color: #ff00ff; box-shadow: 0 0 20px #ff00ff; } 20% { border-color: #00ffff; box-shadow: 0 0 20px #00ffff; } 40% { border-color: #ffff00; box-shadow: 0 0 20px #ffff00; } 60% { border-color: #00ff00; box-shadow: 0 0 20px #00ff00; } 80% { border-color: #ff0000; box-shadow: 0 0 20px #ff0000; } 100% { border-color: #ff00ff; box-shadow: 0 0 20px #ff00ff; } } @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(255, 0, 255, 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(0, 255, 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 neon-flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; box-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor, inset 0 0 15px currentColor; } 20%, 24%, 55% { opacity: 0.8; box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, inset 0 0 10px currentColor; } } @keyframes pulse-glow { from { box-shadow: 0 0 5px currentColor, 0 0 10px currentColor; } to { box-shadow: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 45px currentColor; } } @keyframes led-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0.3; } } /* Dynamic Neon Text Glow */ .neon-text-dynamic { animation: text-glow-flow 3s ease-in-out infinite alternate; } @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 Styles */ .marquee-section { position: fixed; top: 0; left: 0; width: 100%; height: var(--marquee-height-desktop); 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(255, 0, 255, 0.1); z-index: 1001; 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: 40px; height: 40px; z-index: 2; position: relative; } .marquee-icon-emoji { font-size: 24px; 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)); } @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: 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); } @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* Header Section Styles */ .site-header { position: fixed; top: var(--marquee-height-desktop); left: 0; width: 100%; z-index: 1000; } .header-top { background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); height: var(--header-top-height-desktop); display: flex; align-items: center; 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(255, 0, 255, 0.1); } .header-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .hamburger-menu { display: none; /* Hidden on desktop */ } .logo { color: var(--secondary-color); /* White */ font-size: 28px; font-weight: bold; text-decoration: none; padding: 5px 0; transition: color 0.3s ease; /* LOGO NO NEON */ } .logo:hover { color: var(--primary-color); } .desktop-nav-buttons { display: flex; gap: 10px; } .btn { position: relative; background: linear-gradient(135deg, var(--register-color), #FF0000); /* Red gradient */ padding: 12px 30px; color: var(--register-login-font-color); /* Yellow font */ text-decoration: none; border-radius: 5px; border: 2px solid; animation: theme-colors 4s ease-in-out infinite; text-shadow: 0 0 5px var(--register-login-font-color), 0 0 10px #FF0000; font-weight: bold; font-size: 16px; transition: all 0.3s ease; cursor: pointer; } .btn:hover { animation-duration: 2s; transform: translateY(-2px); box-shadow: 0 0 15px var(--neon-primary), 0 0 30px var(--neon-primary), inset 0 0 15px rgba(255, 0, 255, 0.5); } .mobile-nav-buttons { display: none; /* Hidden on desktop */ } .main-nav { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); /* Darker blue/purple gradient for contrast */ height: var(--main-nav-height-desktop); display: flex; align-items: center; border-top: 2px solid; border-bottom: 2px solid; animation: alternate-colors 4s ease-in-out infinite; /* Different dynamic effect */ 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(0, 255, 255, 0.1); } .nav-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: center; align-items: center; padding: 0 20px; } .nav-link { color: var(--secondary-color); /* White */ text-decoration: none; padding: 10px 15px; font-size: 16px; font-weight: 500; transition: color 0.3s ease, background-color 0.3s ease; } .nav-link:hover, .nav-link.active { color: var(--register-login-font-color); /* Yellow on hover */ background-color: rgba(255, 255, 255, 0.1); border-radius: 3px; } /* Footer Section Styles */ .site-footer { background-color: #1a1a2e; /* Dark background */ color: #ffffff; padding: 40px 0 20px; font-size: 14px; line-height: 1.6; } .footer-main { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 0 20px; } .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 { word-wrap: break-word; overflow-wrap: break-word; line-height: 1.6; color: #cccccc; } .footer-heading { font-size: 18px; font-weight: bold; margin-bottom: 15px; color: var(--register-login-font-color); } .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-nav li { margin-bottom: 8px; } .footer-nav a { color: #cccccc; text-decoration: none; transition: color 0.3s ease; } .footer-nav a:hover { color: var(--secondary-color); } .payment-methods .payment-icons, .game-providers-section .game-providers-icons, .social-media-section .social-media-icons { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 8px; width: 100%; } .payment-methods .payment-icons img, .game-providers-section .game-providers-icons img, .social-media-section .social-media-icons img { max-height: 50px; height: auto; width: auto; filter: grayscale(100%) brightness(150%); /* Make icons visible on dark background */ transition: filter 0.3s ease; } .payment-methods .payment-icons img:hover, .game-providers-section .game-providers-icons img:hover, .social-media-section .social-media-icons img:hover { filter: grayscale(0%) brightness(100%); /* Color on hover */ } .game-providers-section, .social-media-section { max-width: 1200px; margin: 20px auto; padding: 0 20px; } .footer-bottom { border-top: 1px solid #333333; margin-top: 30px; padding-top: 20px; text-align: center; color: #cccccc; max-width: 1200px; margin-left: auto; margin-right: auto; } /* Mobile Specific Styles */ @media (max-width: 768px) { /* Header Offset for Mobile */ .marquee-section { height: var(--marquee-height-mobile); } .site-header { top: var(--marquee-height-mobile); } /* Marquee Mobile Adaptaion */ .marquee-container { gap: 10px; padding: 0 5px; } .marquee-icon { width: 25px; height: 25px; } .marquee-icon-emoji { font-size: 18px; } .marquee-text { font-size: 13px; gap: 15px; } .marquee-separator { font-size: 13px; margin: 0 10px; } .marquee-content { animation: marquee-scroll 25s linear infinite; } /* Header Mobile Adaptation */ .header-top { height: var(--header-top-height-mobile); padding: 0 15px; position: relative; /* For absolute positioning of logo if needed */ } .header-container { padding: 0; justify-content: flex-start; /* Align hamburger and logo */ } .hamburger-menu { display: block; width: 30px; height: 24px; position: relative; cursor: pointer; z-index: 1002; margin-right: 15px; background: none; border: none; padding: 0; } .hamburger-icon { display: block; position: absolute; height: 3px; width: 100%; background: var(--neon-primary); border-radius: 3px; left: 0; transition: all 0.3s ease; animation: text-glow-flow 3s ease-in-out infinite alternate; } .hamburger-icon::before, .hamburger-icon::after { content: ''; position: absolute; height: 3px; width: 100%; background: var(--neon-primary); border-radius: 3px; left: 0; transition: all 0.3s ease; animation: text-glow-flow 3s ease-in-out infinite alternate; } .hamburger-icon::before { top: -8px; } .hamburger-icon::after { top: 8px; } .hamburger-menu.active .hamburger-icon { background: transparent; } .hamburger-menu.active .hamburger-icon::before { top: 0; transform: rotate(45deg); } .hamburger-menu.active .hamburger-icon::after { top: 0; transform: rotate(-45deg); } .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 for hamburger width */ } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex !important; width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 15px; justify-content: center; flex-wrap: nowrap; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); 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); } .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 */ flex-direction: column; position: fixed; top: calc(var(--marquee-height-mobile) + var(--header-top-height-mobile) + var(--mobile-nav-buttons-height-mobile)); /* Position below header and mobile buttons */ left: 0; width: 80%; /* Sidebar width */ max-width: 300px; height: calc(100% - var(--marquee-height-mobile) - var(--header-top-height-mobile) - var(--mobile-nav-buttons-height-mobile)); /* Full height below header */ background: linear-gradient(135deg, #1a1a2e, #0f3460); /* Darker background for menu */ overflow-y: auto; transition: transform 0.3s ease-in-out; transform: translateX(-100%); /* Start off-screen */ z-index: 1000; border-right: 2px solid; animation: alternate-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-secondary), 0 0 20px var(--neon-secondary); } .main-nav.active { display: flex; /* Show when active */ transform: translateX(0); /* Slide in */ } .nav-container { flex-direction: column; padding: 20px 15px; align-items: flex-start; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 15px; } .nav-link:last-child { border-bottom: none; } .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; } .mobile-menu-overlay.active { display: block; } /* Footer Mobile Adaptation */ .footer-main { grid-template-columns: 1fr; padding: 0 15px; } .footer-col { margin-bottom: 30px; } .footer-col:last-of-type { margin-bottom: 0; } .payment-methods, .game-providers-section, .social-media-section { padding: 0 15px; } .footer-bottom { padding-left: 15px; padding-right: 15px; } /* 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; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
