:root {  --primary-color: #26A9E0;  --secondary-color: #FFFFFF;  --dark-bg-1: #0a0a0a;  --dark-bg-2: #1a1a2e;  --dark-bg-3: #16213e;  --neon-primary: var(--primary-color, #ff00ff); /* Base for dynamic neon */  --neon-secondary: #00ffff; /* Secondary for dynamic neon */  --neon-accent: #ffff00; /* Accent for dynamic neon */  --marquee-height: 45px; /* Default desktop marquee height */  --header-top-height: 60px; /* Default desktop header top height */  --main-nav-height: 50px; /* Default desktop main nav height */  --header-offset: calc(var(--marquee-height) + var(--header-top-height) + var(--main-nav-height)); /* Desktop */}.no-scroll { overflow: hidden;}@media (max-width: 768px) {  :root {    --mobile-header-top-height: 60px; /* Mobile header top height */    --mobile-button-height: 40px; /* Mobile button bar height (approx) */    --header-offset: calc(var(--marquee-height) + var(--mobile-header-top-height) + var(--mobile-button-height)); /* Mobile */  }}/* Base styles */body {  margin: 0;  font-family: 'Arial', sans-serif;  color: var(--secondary-color);  background-color: #121212; /* Darker background for overall page */  padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */  overflow-x: hidden; /* Prevent horizontal scroll on body */}a {  text-decoration: none;  color: var(--secondary-color);}/* Neon Animations (must be included) */@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(38, 169, 224, 0.3); /* Using primary color with alpha */  }  33% {    border-color: #FF00FF; /* Example vibrant color */    box-shadow:       0 0 10px #FF00FF,      0 0 20px #FF00FF,      inset 0 0 10px rgba(255, 0, 255, 0.3);  }  66% {    border-color: #00FFFF; /* Example vibrant color */    box-shadow:       0 0 10px #00FFFF,      0 0 20px #00FFFF,      inset 0 0 10px rgba(0, 255, 255, 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; }}@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); }}/* Marquee Section Styles (MUST be neon style) */.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)); /* Dark background */  color: var(--secondary-color);  overflow: hidden;  border-bottom: 2px solid;  animation: theme-colors 4s ease-in-out infinite; /* Dynamic color border */  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); /* Using primary color with alpha */  z-index: 1001; /* Ensure on top of header */  height: var(--marquee-height); /* Fixed height */  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; /* Adjust padding to fit height */}.marquee-icon {  flex-shrink: 0;  display: flex;  align-items: center;  justify-content: center;  width: 28px; /* Adjusted size for overall marquee height */  height: 28px;  z-index: 2;  position: relative;}.marquee-icon-emoji {  font-size: 20px; /* Adjusted size */  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; }}@keyframes marquee-scroll {  0% { transform: translateX(0); }  100% { transform: translateX(-50%); }}.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;  line-height: 1; /* Adjust line height for marquee text */}.marquee-text {  font-size: 14px; /* Adjusted size */  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);  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: 14px; /* Adjusted size */  color: rgba(255, 255, 255, 0.6);  margin: 0 10px;  text-shadow:     0 0 3px var(--neon-primary),    0 0 6px var(--neon-primary);}/* Header Styles (MUST be neon style) */.site-header {  position: fixed;  top: var(--marquee-height); /* Position below marquee */  left: 0;  width: 100%;  z-index: 1000;  min-height: calc(var(--header-top-height) + var(--main-nav-height));  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 10px var(--neon-primary),    0 0 20px var(--neon-primary),    inset 0 0 15px rgba(38, 169, 224, 0.1);}.header-top {  width: 100%;  height: var(--header-top-height);  display: flex;  align-items: center;  background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2), var(--dark-bg-3));  border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle separator */}.header-container {  max-width: 1200px;  width: 100%;  margin: 0 auto;  display: flex;  justify-content: space-between;  align-items: center;  padding: 0 20px;  box-sizing: border-box;}.logo {  font-size: 24px;  font-weight: bold;  color: var(--secondary-color); /* Regular color, no neon for logo */  text-decoration: none;  padding: 5px 0; /* Add padding for clickable area */  display: block;}.desktop-nav-buttons {  display: flex;  gap: 10px;}.btn {  position: relative;  background: linear-gradient(135deg, var(--primary-color), #00FFFF); /* Using primary and a vibrant secondary for gradient */  padding: 12px 25px;  color: var(--secondary-color);  text-decoration: none;  border-radius: 5px;  border: 2px solid;  animation: theme-colors 4s ease-in-out infinite; /* Dynamic color border */  text-shadow:     0 0 5px var(--secondary-color),    0 0 10px var(--primary-color);  transition: all 0.3s ease;  font-weight: bold;  white-space: nowrap; /* Prevent button text from wrapping on desktop */}.btn:hover {  animation-duration: 2s;  transform: translateY(-2px);  text-shadow:     0 0 8px var(--secondary-color),    0 0 15px var(--primary-color),    0 0 25px var(--primary-color);}.hamburger-menu {  display: none; /* Hidden on desktop */  width: 30px;  height: 20px;  position: relative;  cursor: pointer;  z-index: 1001; /* Above mobile-nav-buttons */}/* Neon glow for hamburger */.hamburger-menu span {  display: block;  position: absolute;  height: 3px;  width: 100%;  background: var(--secondary-color);  border-radius: 5px;  opacity: 1;  left: 0;  transform: rotate(0deg);  transition: .25s ease-in-out;  box-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary);  animation: text-glow-flow 3s ease-in-out infinite alternate; /* Dynamic color */}/* Hamburger line positions */.hamburger-menu span:nth-child(1) { top: 0px; }.hamburger-menu span:nth-child(2) { top: 8px; }.hamburger-menu span:nth-child(3) { top: 16px; }/* Hamburger active state (X icon) */.hamburger-menu.active span:nth-child(1) { top: 8px; transform: rotate(135deg); }.hamburger-menu.active span:nth-child(2) { opacity: 0; left: -60px; }.hamburger-menu.active span:nth-child(3) { top: 8px; transform: rotate(-135deg); }.mobile-nav-buttons {  display: none; /* Hidden on desktop */}/* Main Navigation Styles */.main-nav {  width: 100%;  height: var(--main-nav-height);  display: flex;  align-items: center;  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg-3), #0f3460); /* Different dark gradient */  border-top: 2px solid;  border-bottom: 2px solid;  animation: theme-colors 4s ease-in-out infinite reverse; /* Dynamic color border, reversed animation */  box-shadow:     0 0 10px var(--neon-secondary),    0 0 20px var(--neon-secondary),    inset 0 0 15px rgba(0, 255, 255, 0.1);}.main-nav .nav-container {  max-width: 1200px;  width: 100%;  margin: 0 auto;  display: flex;  justify-content: center;  align-items: center;  padding: 0 20px;  box-sizing: border-box;  gap: 25px;}.nav-link {  color: var(--secondary-color);  font-weight: 500;  padding: 10px 0;  transition: color 0.3s ease, text-shadow 0.3s ease;  white-space: nowrap;  position: relative;}.nav-link::after {  content: '';  position: absolute;  left: 50%;  bottom: 0;  transform: translateX(-50%) scaleX(0);  width: 100%;  height: 2px;  background-color: var(--primary-color);  transition: transform 0.3s ease;}.nav-link:hover {  color: var(--primary-color);  text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);}.nav-link:hover::after,.nav-link.active::after {  transform: translateX(-50%) scaleX(1);}.mobile-menu-overlay {  display: none; /* Hidden by default */  position: fixed;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: rgba(0, 0, 0, 0.7);  z-index: 999;  opacity: 0;  transition: opacity 0.3s ease;}.mobile-menu-overlay.active {  display: block;  opacity: 1;}/* Footer Styles (Regular, no neon) */.site-footer {  background-color: #1a1a1a;  color: #cccccc;  padding: 40px 0 20px;  font-size: 14px;}.site-footer .footer-container {  max-width: 1200px;  margin: 0 auto;  padding: 0 20px;  box-sizing: border-box;}.footer-top {  border-bottom: 1px solid #333333;  padding-bottom: 30px;  margin-bottom: 30px;}.footer-top .footer-container {  display: grid;  grid-template-columns: repeat(4, 1fr);  gap: 20px;}.footer-col h4 {  color: var(--secondary-color);  font-size: 16px;  margin-bottom: 15px;  position: relative;}.footer-col h4::after {  content: '';  position: absolute;  left: 0;  bottom: -5px;  width: 30px;  height: 2px;  background-color: var(--primary-color);}.footer-logo {  font-size: 28px;  font-weight: bold;  color: var(--secondary-color);  text-decoration: none;  margin-bottom: 15px;  display: block;}.footer-description {  line-height: 1.6;  word-wrap: break-word;  overflow-wrap: break-word;  color: #aaaaaa;}.footer-nav {  list-style: none;  padding: 0;  margin: 0;}.footer-nav li {  margin-bottom: 8px;}.footer-nav a {  color: #cccccc;  transition: color 0.3s ease;}.footer-nav a:hover {  color: var(--primary-color);}.payment-methods .payment-icons,.game-providers-icons,.social-media-icons {  display: flex;  flex-wrap: wrap;  flex-direction: row;  align-items: flex-start;  gap: 8px; /* Consistent gap for icons */  width: 100%;}.payment-methods .payment-icons img,.game-providers-icons img,.social-media-icons img {  max-height: 50px;  height: auto;  width: auto;  filter: grayscale(100%) brightness(150%); /* Make icons fit dark theme */  transition: filter 0.3s ease;}.payment-methods .payment-icons img:hover,.game-providers-icons img:hover,.social-media-icons img:hover {  filter: grayscale(0%) brightness(100%); /* Colorize on hover */}.game-providers-section,.social-media-section {  padding: 20px 0;  border-bottom: 1px solid #333333;}.game-providers-section h4,.social-media-section h4 {  color: var(--secondary-color);  font-size: 16px;  margin-bottom: 15px;  position: relative;  padding: 0 20px; /* Align with container padding */}/* Horizontal line after H4 in footer */.game-providers-section h4::after,.social-media-section h4::after {  content: '';  position: absolute;  left: 20px; /* Align with container padding */  bottom: -5px;  width: 30px;  height: 2px;  background-color: var(--primary-color);}.game-providers-section .footer-container,.social-media-section .footer-container {  padding: 0 20px; /* Ensure icons are within container */}.footer-bottom {  padding-top: 20px;}.copyright {  text-align: center;  color: #888888;}/* Responsive Styles */@media (max-width: 768px) {  /* Marquee Mobile */  .marquee-section {    height: 35px; /* Smaller height for mobile */  }  .marquee-container {    padding: 0 10px;    gap: 10px;  }  .marquee-icon {    width: 24px;    height: 24px;  }  .marquee-icon-emoji {    font-size: 18px;  }  .marquee-text {    font-size: 12px;  }  .marquee-separator {    font-size: 12px;    margin: 0 8px;  }  .marquee-content {    gap: 20px;    animation: marquee-scroll 25s linear infinite;  }  /* Header Mobile */  .site-header {    min-height: calc(var(--mobile-header-top-height) + var(--mobile-button-height));  }  .header-top {    height: var(--mobile-header-top-height);  }  .header-container {    padding: 0 15px;    width: 100%;    max-width: none; /* Crucial for mobile full width */  }  .logo {    flex: 1 !important;    display: flex !important;    justify-content: center !important;    align-items: center !important;    font-size: 20px;    padding: 0;    max-height: 40px; /* Ensure logo doesn't take too much height */  }  .desktop-nav-buttons {    display: none;  }  .hamburger-menu {    display: block;    order: -1; /* Place hamburger first */    margin-right: auto; /* Push logo to center */    width: 25px; /* Smaller hamburger */    height: 18px;  }  .hamburger-menu span:nth-child(1) { top: 0px; }  .hamburger-menu span:nth-child(2) { top: 7px; }  .hamburger-menu span:nth-child(3) { top: 14px; }  .hamburger-menu.active span:nth-child(1) { top: 7px; }  .hamburger-menu.active span:nth-child(3) { top: 7px; }  .mobile-nav-buttons {    display: flex !important; /* Always visible on mobile */    width: 100%;    max-width: 100%;    box-sizing: border-box;    padding: 8px 15px; /* Reduced padding */    gap: 10px;    justify-content: center;    flex-wrap: nowrap; /* Prevent buttons from wrapping */    background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2)); /* Dark background for button bar */    border-bottom: 1px solid rgba(255,255,255,0.1);    height: var(--mobile-button-height);    align-items: center;  }  .mobile-nav-buttons .btn {    flex: 1;    min-width: 0;    max-width: calc(50% - 5px); /* Ensure two buttons fit with gap */    padding: 8px 12px; /* Reduced padding */    font-size: 13px; /* Reduced font size */    white-space: normal; /* Allow text wrapping */    word-wrap: break-word;    overflow-wrap: break-word;    text-align: center;  }  .main-nav {    display: none; /* Hidden by default, shown by JS */    position: fixed;    top: var(--header-offset); /* Position below header-top and mobile-buttons */    left: 0;    width: 70%; /* Slide out from left */    max-width: 300px; /* Max width for mobile menu */    height: calc(100% - var(--header-offset)); /* Fill remaining height */    flex-direction: column;    transform: translateX(-100%); /* Start off-screen */    transition: transform 0.3s ease-in-out;    background: linear-gradient(180deg, var(--dark-bg-3), var(--dark-bg-1)); /* Dark background */    z-index: 1000; /* Above overlay */    overflow-y: auto; /* Scrollable if content is long */    border-right: 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 15px rgba(38, 169, 224, 0.1);  }  .main-nav.active {    display: flex; /* Show menu */    transform: translateX(0); /* Slide into view */  }  .main-nav .nav-container {    flex-direction: column;    align-items: flex-start;    padding: 20px 15px;    gap: 15px;    width: 100%;    max-width: none; /* Crucial for mobile full width */  }  .nav-link {    width: 100%;    padding: 10px 0;    border-bottom: 1px solid rgba(255, 255, 255, 0.1);  }  .nav-link::after {    display: none; /* Hide hover effect on mobile */  }  .nav-link:hover {    color: var(--primary-color);    text-shadow: none;  }  /* Footer Mobile */  .site-footer .footer-top .footer-container {    grid-template-columns: 1fr; /* Single column layout */  }  .footer-col {    margin-bottom: 20px;  }  .game-providers-section h4,  .social-media-section h4 {    padding: 0 15px; /* Adjust padding for mobile container */  }  .game-providers-section h4::after,  .social-media-section h4::after {    left: 15px; /* Adjust position for mobile container */  }  .game-providers-section .footer-container,  .social-media-section .footer-container {    padding: 0 15px;  }  .payment-methods .payment-icons,  .game-providers-icons,  .social-media-icons {    gap: 5px; /* Smaller gap for mobile icons */  }  /* 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;
  }
}
