html { scroll-behavior: smooth; } body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; color: #f0f0f0; background-color: #0a0a0a; overflow-x: hidden; padding-top: var(--header-offset); } :root { --primary-color: #017439; --secondary-color: #FFFFFF; --register-color: #C30808; --register-login-font-color: #FFFF00; --neon-primary: #00ffcc; --neon-secondary: #ff33cc; --neon-accent: #ccff00; --marquee-height-desktop: 45px; --header-top-height-desktop: 60px; --main-nav-height-desktop: 50px; --header-offset: 155px; } @media (max-width: 768px) { :root { --marquee-height-mobile: 30px; --header-top-height-mobile: 50px; --mobile-buttons-height-mobile: 45px; --header-offset: 125px; } } a { text-decoration: none; color: inherit; } .header-container, .nav-container, .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; } @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(0, 255, 204, 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, 51, 204, 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(204, 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: #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; } } @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 { 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, 255, 204, 0.1); z-index: 1001; height: var(--marquee-height-desktop); 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)); } .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; } .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); } .site-header { position: fixed; top: var(--marquee-height-desktop); left: 0; width: 100%; z-index: 1000; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); color: var(--secondary-color); min-height: calc(var(--header-top-height-desktop) + var(--main-nav-height-desktop)); display: flex; flex-direction: column; } .header-top { width: 100%; 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), inset 0 0 20px rgba(0, 255, 204, 0.1); height: var(--header-top-height-desktop); display: flex; align-items: center; } .header-top .header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; } .logo { font-size: 28px; font-weight: bold; color: var(--secondary-color); text-decoration: none; display: block; text-shadow: none; box-shadow: none; animation: none; filter: none; } .logo img { display: block; max-width: 100%; height: auto; max-height: 40px; } .desktop-nav-buttons { display: flex; gap: 12px; align-items: center; } .btn { position: relative; background: linear-gradient(135deg, var(--register-color), #8b0000); padding: 12px 25px; color: var(--register-login-font-color); 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 var(--register-color); transition: all 0.3s ease; font-weight: bold; white-space: nowrap; } .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(0, 255, 204, 0.4); } .main-nav { width: 100%; background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); 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), inset 0 0 20px rgba(255, 51, 204, 0.1); height: var(--main-nav-height-desktop); display: flex; align-items: center; } .main-nav .nav-container { display: flex; flex-direction: row; justify-content: center; align-items: center; height: 100%; gap: 30px; } .nav-link { color: var(--secondary-color); font-size: 16px; font-weight: 500; padding: 5px 0; position: relative; transition: color 0.3s ease; text-shadow: none; } .nav-link:hover { color: var(--neon-primary); } .hamburger-menu { display: none; cursor: pointer; width: 30px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; padding: 5px; box-sizing: content-box; z-index: 1002; } .hamburger-menu .bar { width: 100%; height: 3px; background-color: var(--secondary-color); transition: all 0.3s ease; border-radius: 2px; box-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary); animation: text-glow-flow 3s ease-in-out infinite alternate; } .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger-menu.active .bar:nth-child(2) { opacity: 0; } .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .mobile-nav-buttons { display: none; width: 100%; background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e); border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 10px var(--neon-accent), 0 0 20px var(--neon-accent), inset 0 0 20px rgba(204, 255, 0, 0.1); padding: 10px 15px; box-sizing: border-box; gap: 10px; justify-content: center; align-items: center; height: var(--mobile-buttons-height-mobile); } .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; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; } .mobile-menu-overlay.active { opacity: 1; visibility: visible; } body.no-scroll { overflow: hidden; } .site-footer { background-color: #1c1c1c; color: #cccccc; padding-top: 40px; font-size: 14px; } .site-footer h4 { color: var(--secondary-color); font-size: 18px; margin-bottom: 20px; } .footer-top { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 30px; } .footer-top .footer-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .footer-col ul { list-style: none; padding: 0; margin: 0; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #cccccc; transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--primary-color); } .footer-logo { font-size: 24px; font-weight: bold; color: var(--secondary-color); margin-bottom: 15px; display: block; } .footer-description { line-height: 1.6; word-wrap: break-word; overflow-wrap: break-word; color: #cccccc; } .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; } .footer-middle { padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .footer-middle .footer-container { display: flex; flex-direction: column; gap: 30px; } .game-providers-section, .social-media-section { width: 100%; } .footer-bottom { padding: 20px 0; text-align: center; color: #999999; } @media (max-width: 768px) { .marquee-section { height: var(--marquee-height-mobile); padding: 0 5px; } .marquee-container { gap: 10px; padding: 0 5px; } .marquee-icon { width: 25px; height: 25px; } .marquee-icon-emoji { font-size: 18px; } .marquee-text { font-size: 13px; line-height: 1.3; } .marquee-separator { font-size: 13px; margin: 0 8px; } .marquee-content { animation-duration: 25s; gap: 20px; padding-right: 20px; } .site-header { top: var(--marquee-height-mobile); min-height: calc(var(--header-top-height-mobile) + var(--mobile-buttons-height-mobile)); flex-direction: column; } .header-top { height: var(--header-top-height-mobile); padding: 0 15px; box-sizing: border-box; } .header-top .header-container { padding: 0; justify-content: space-between; position: relative; } .hamburger-menu { display: flex; order: 1; flex: 0 0 auto; margin-right: 15px; } .logo { order: 2; flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 22px; } .logo img { max-height: 35px !important; } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex !important; flex-wrap: nowrap; height: var(--mobile-buttons-height-mobile); } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); padding: 8px 10px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; line-height: 1.3; } .main-nav { display: none; position: fixed; top: var(--header-offset); left: 0; width: 100%; height: calc(100% - var(--header-offset)); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 20px 0; box-sizing: border-box; transform: translateX(-100%); transition: transform 0.3s ease-out; background: linear-gradient(180deg, #1a1a2e, #0a0a0a); border: none; box-shadow: 0 0 15px var(--neon-primary), 0 0 30px var(--neon-primary); z-index: 1000; overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .main-nav .nav-container { flex-direction: column; align-items: flex-start; padding: 0 20px; gap: 15px; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 10px 0; font-size: 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } .header-container, .nav-container, .footer-container { padding: 0 15px; max-width: none; width: 100%; } .footer-top .footer-container { grid-template-columns: 1fr; gap: 20px; } .footer-middle .footer-container { gap: 20px; } .footer-col { text-align: center; } .footer-col ul { text-align: center; } .footer-logo { text-align: center; } .footer-description { text-align: center; } .payment-methods .payment-icons, .game-providers-section .game-providers-icons, .social-media-section .social-media-icons { justify-content: center; } .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;
  }
}
