:root { --primary-color: #0A2239; --secondary-color: #E6B325; --text-color: #ffffff; --neon-primary: #FFFF00; /* Neon Yellow */ --neon-secondary: #FF00FF; /* Neon Magenta */ --neon-accent: #00FFFF; /* Neon Cyan */ --header-offset: 155px; /* Desktop: Marquee (45) + Header-top (60) + Main-nav (50) */ } @media (max-width: 768px) { :root { --header-offset: 145px; /* Mobile: Marquee (40) + Header-top (60) + Mobile-nav-buttons (45) */ } } /* Base styles */ body { margin: 0; font-family: 'Arial', sans-serif; color: var(--text-color); background-color: #000; padding-top: var(--header-offset); overflow-x: hidden; } a { text-decoration: none; color: inherit; } /* Animations for Neon styles */ @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 rgba(255,255,255,0.1); } 20%, 24%, 55% { opacity: 0.8; box-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor, inset 0 0 10px rgba(255,255,255,0.05); } } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 5px currentColor, 0 0 10px currentColor; } 50% { box-shadow: 0 0 15px currentColor, 0 0 30px currentColor, 0 0 45px currentColor; } } @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 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: var(--text-color); } 50% { text-shadow: 0 0 5px var(--neon-secondary), 0 0 10px var(--neon-secondary), 0 0 15px var(--neon-secondary); color: var(--text-color); } 100% { text-shadow: 0 0 5px var(--neon-accent), 0 0 10px var(--neon-accent), 0 0 15px var(--neon-accent); color: var(--text-color); } } /* Marquee Section Styles */ .marquee-section { position: fixed; top: 0; left: 0; width: 100%; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); color: var(--text-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(255, 255, 0, 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)); } @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; padding-right: 30px; } .marquee-text { font-size: 15px; font-weight: 600; color: var(--text-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(--text-color); } .marquee-separator { font-size: 15px; color: rgba(255, 255, 255, 0.6); margin: 0 10px; 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: 45px; left: 0; width: 100%; z-index: 1000; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); color: var(--text-color); } .header-top { background: linear-gradient(135deg, var(--primary-color), #1a1a2e); 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 10px rgba(230, 179, 37, 0.2); padding: 10px 0; min-height: 60px; 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 { font-size: 24px; font-weight: bold; color: var(--text-color); text-decoration: none; flex-shrink: 0; display: block; } .logo img { display: block; max-width: 100%; height: auto; max-height: 40px; } .desktop-nav-buttons { display: flex; gap: 10px; flex-shrink: 0; } .btn { position: relative; background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary)); padding: 12px 25px; color: var(--text-color); text-decoration: none; border-radius: 5px; border: 2px solid; animation: theme-colors 4s ease-in-out infinite; text-shadow: 0 0 5px var(--text-color), 0 0 10px var(--neon-primary); transition: all 0.3s ease; font-weight: 600; cursor: pointer; 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(230, 179, 37, 0.3); } .mobile-nav-buttons { display: none; } .main-nav { background: linear-gradient(135deg, #1a1a2e, #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 10px rgba(0, 255, 255, 0.1); padding: 10px 0; min-height: 50px; display: flex; align-items: center; width: 100%; } .main-nav .nav-container { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: center; align-items: center; gap: 25px; padding: 0 20px; } .main-nav .nav-link { color: var(--text-color); font-weight: 500; padding: 5px 0; transition: color 0.3s ease, text-shadow 0.3s ease; position: relative; font-size: 16px; } .main-nav .nav-link:hover { color: var(--secondary-color); text-shadow: 0 0 5px var(--secondary-color); } .hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; position: relative; z-index: 1002; width: 40px; height: 40px; flex-direction: column; justify-content: space-around; align-items: center; transition: all 0.3s ease; animation: pulse-glow 2s ease-in-out infinite alternate; color: var(--neon-primary); } .hamburger-menu span { display: block; width: 28px; height: 3px; background-color: var(--text-color); border-radius: 2px; transition: all 0.3s ease; box-shadow: 0 0 5px var(--neon-primary); } .hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .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; transition: opacity 0.3s ease; opacity: 0; } .mobile-menu-overlay.active { display: block; opacity: 1; } /* Footer Section Styles */ .site-footer { background-color: var(--primary-color); color: var(--text-color); padding: 40px 20px 20px; font-size: 14px; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .footer-col { display: flex; flex-direction: column; } .footer-logo { font-size: 20px; font-weight: bold; color: var(--secondary-color); margin-bottom: 15px; text-decoration: none; } .footer-description { line-height: 1.6; color: rgba(255, 255, 255, 0.7); word-wrap: break-word; overflow-wrap: break-word; } .footer-col h4 { font-size: 16px; color: var(--secondary-color); margin-bottom: 20px; text-transform: uppercase; } .footer-col ul { list-style: none; padding: 0; margin: 0; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--secondary-color); } .payment-methods .payment-icons { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 5px; } .payment-methods .payment-icons img { max-height: 50px; height: auto; width: auto; } .footer-middle-fullwidth { max-width: 1200px; margin: 0 auto 40px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 30px; } .game-providers-section h4, .social-media-section h4 { font-size: 16px; color: var(--secondary-color); margin-bottom: 15px; text-transform: uppercase; } .game-providers-icons, .social-media-icons { display: flex; flex-wrap: wrap; flex-direction: row; align-items: flex-start; gap: 8px; width: 100%; } .game-providers-icons img, .social-media-icons img { max-height: 50px; height: auto; width: auto; filter: grayscale(100%) brightness(150%); transition: filter 0.3s ease; } .game-providers-icons img:hover, .social-media-icons img:hover { filter: grayscale(0%) brightness(100%); } .footer-bottom { text-align: center; max-width: 1200px; margin: 0 auto; color: rgba(255, 255, 255, 0.5); } /* Mobile Responsive Styles */ @media (max-width: 768px) { .marquee-section { height: 40px; } .marquee-container { gap: 10px; padding: 0 10px; } .marquee-icon { width: 25px; height: 25px; } .marquee-icon-emoji { font-size: 18px; } .marquee-text, .marquee-separator { font-size: 13px; margin: 0 8px; } .marquee-content { gap: 20px; animation-duration: 25s; } .site-header { top: 40px; } .header-top { min-height: 50px; padding: 5px 0; } .header-container { padding: 0 15px; justify-content: flex-start; position: relative; } .hamburger-menu { display: flex; order: 0; margin-right: 15px; /* Space between hamburger and logo */ } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; order: 1; margin-left: -55px; /* Counteract hamburger width + margin to visually center */ } .logo img { max-height: 35px; } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex !important; width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 15px; overflow: hidden; gap: 10px; justify-content: center; flex-wrap: nowrap; background: linear-gradient(135deg, var(--primary-color), #1a1a2e); 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), inset 0 0 5px rgba(230, 179, 37, 0.1); min-height: 45px; } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; text-align: center; } .main-nav { display: none; position: fixed; top: calc(40px + 50px + 45px); left: 0; width: 80%; max-width: 300px; height: calc(100% - (40px + 50px + 45px)); background: linear-gradient(180deg, #1a1a2e, #0f3460); 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), inset 0 0 10px rgba(0, 255, 255, 0.1); flex-direction: column; padding: 20px 0; transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .main-nav .nav-container { flex-direction: column; gap: 15px; padding: 0 15px; width: 100%; max-width: none; align-items: flex-start; } .main-nav .nav-link { width: 100%; padding: 10px 0; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .main-nav .nav-link:last-child { border-bottom: none; } .footer-top-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; padding-bottom: 20px; } .footer-col { align-items: center; text-align: center; } .footer-col ul { text-align: center; } .footer-description { text-align: center; } .payment-methods .payment-icons, .game-providers-icons, .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;
  }
}
