:root {  --primary-color: #26A9E0; /* Light blue */  --secondary-color: #FFFFFF;  --login-color: #EA7C07; /* Orange */  --black-color: #000000;  /* Neon dynamic colors - intelligently chosen to complement primary */  --neon-primary: #00FFFF; /* Cyan */  --neon-secondary: #FF00FF; /* Magenta */  --neon-accent: #FFFF00; /* Yellow */  --marquee-height-desktop: 45px;  --marquee-height-mobile: 35px;  --header-top-height-desktop: 60px;  --header-top-height-mobile: 50px;  --main-nav-height-desktop: 50px;  --mobile-buttons-height: 45px; /* Adjust if padding/line-height changes */  --header-offset: calc(var(--marquee-height-desktop) + var(--header-top-height-desktop) + var(--main-nav-height-desktop)); /* Desktop */}@media (max-width: 768px) {  :root {    --header-offset: calc(var(--marquee-height-mobile) + var(--header-top-height-mobile) + var(--mobile-buttons-height)); /* Mobile */  }}/* Base Styles */body {  margin: 0;  font-family: Arial, sans-serif;  line-height: 1.6;  color: #e0e0e0;  background-color: #0a0a0a; /* Dark background for neon effect */  padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */  overflow-x: hidden; /* Prevent horizontal scroll */}/* General Link Styles */a {  text-decoration: none;  color: inherit;}/* Neon Dynamic Color Animations */@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;  }}@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 Styles */.marquee-section {  position: fixed;  top: 0;  left: 0;  width: 100%;  height: var(--marquee-height-desktop);  background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); /* Dark background */  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, 255, 0.1); /* Using neon-primary for subtle inner glow */  z-index: 1001; /* Ensure on top of header */  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; /* Adjusted padding */}.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; /* Ensure space at the end of content */}.marquee-text {  font-size: 16px;  font-weight: 600;  color: #ffffff;  text-decoration: none;  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); /* Position below marquee */  width: 100%;  z-index: 1000; /* Below marquee, above other content */}.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(0, 255, 255, 0.1);}.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, not neon */  text-decoration: none;}.logo img {  display: block;  max-width: 100%;  height: auto;  max-height: 50px; /* Desktop height */}.hamburger-menu {  display: none; /* Hidden on desktop */  background: none;  border: none;  cursor: pointer;  padding: 10px;  position: relative;  z-index: 1002; /* Ensure on top of mobile menu and overlay */}/* Hamburger icon styling */.hamburger-menu span {  display: block;  width: 25px;  height: 3px;  background-color: var(--neon-primary); /* Neon color for hamburger */  margin-bottom: 5px;  transition: all 0.3s ease;  box-shadow: 0 0 5px var(--neon-primary), 0 0 10px 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); }.desktop-nav-buttons {  display: flex; /* Visible on desktop */  gap: 10px;  align-items: center;}.mobile-nav-buttons {  display: none; /* Hidden on desktop */}/* Main Navigation Styles */.main-nav {  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);  height: var(--main-nav-height-desktop);  display: flex; /* Visible on desktop */  align-items: center;  border-top: 2px solid;  border-bottom: 2px solid;  animation: theme-colors 4s ease-in-out infinite; /* Different glow color for main nav */  box-shadow:     0 0 10px var(--neon-secondary), /* Use a different neon color for contrast */    0 0 20px var(--neon-secondary),    0 0 30px var(--neon-secondary),    inset 0 0 20px rgba(255, 0, 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); /* Regular color for nav links */  font-size: 16px;  padding: 10px 0;  transition: color 0.3s ease, text-shadow 0.3s ease;  white-space: nowrap;}.nav-link:hover {  color: var(--neon-primary); /* Use a neon color on hover */  text-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary);}/* Buttons */.btn {  position: relative;  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));  padding: 12px 20px;  color: #ffffff;  font-weight: bold;  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;  white-space: nowrap; /* Prevent button text from wrapping on desktop */  overflow: hidden;  text-overflow: ellipsis;  max-width: 180px; /* Limit button width on desktop */}.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, 255, 0.5);}/* Mobile Menu Overlay */.mobile-menu-overlay {  display: none; /* Hidden by default */  position: fixed;  top: 0;  left: 0;  width: 100%;  height: 100%;  background-color: 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 */.site-footer {  background: #1a1a2e; /* Dark background for footer, no neon */  color: #e0e0e0;  padding: 40px 20px 20px;  font-size: 14px;}.site-footer h4 {  color: var(--secondary-color);  font-size: 18px;  margin-bottom: 15px;  text-transform: uppercase;}.footer-top-section {  border-bottom: 1px solid rgba(255, 255, 255, 0.1);  padding-bottom: 30px;  margin-bottom: 30px;}.footer-grid-container {  display: grid;  grid-template-columns: repeat(4, 1fr);  gap: 30px;  max-width: 1200px;  margin: 0 auto;}.footer-col ul {  list-style: none;  padding: 0;  margin: 0;}.footer-col ul li {  margin-bottom: 10px;}.footer-col ul li a {  color: #b0b0b0;  transition: color 0.3s ease;}.footer-col ul li a:hover {  color: var(--primary-color);}.footer-logo {  font-size: 22px;  font-weight: bold;  color: var(--secondary-color);  margin-bottom: 15px;  display: block;  text-decoration: none;}.footer-description {  color: #b0b0b0;  line-height: 1.6;  word-wrap: break-word;  overflow-wrap: break-word;}.payment-icons, .game-providers-icons, .social-media-icons {  display: flex;  flex-wrap: wrap;  flex-direction: row;  align-items: flex-start;  gap: 8px; /* Adjusted gap for tighter spacing */  width: 100%;}.payment-icons img, .game-providers-icons img, .social-media-icons img {  max-height: 50px;  height: auto;  width: auto;  object-fit: contain;}.footer-middle-section {  max-width: 1200px;  margin: 0 auto 30px;  padding-bottom: 30px;  border-bottom: 1px solid rgba(255, 255, 255, 0.1);}.game-providers-section, .social-media-section {  margin-bottom: 20px;}.game-providers-section:last-child, .social-media-section:last-child {  margin-bottom: 0;}.footer-bottom-section {  text-align: center;  color: #888;  max-width: 1200px;  margin: 0 auto;}/* Mobile Responsive */@media (max-width: 768px) {  /* Marquee Mobile */  .marquee-section {    height: var(--marquee-height-mobile);    padding: 0;  }  .marquee-container {    gap: 10px;    padding: 0 5px;  }  .marquee-icon {    width: 25px;    height: 25px;  }  .marquee-icon-emoji {    font-size: 16px;  }  .marquee-text {    font-size: 13px;    line-height: 1.3;  }  .marquee-separator {    font-size: 13px;    margin: 0 8px;  }  .marquee-content {    gap: 20px;    animation-duration: 25s;  }  /* Header Mobile */  .site-header {    top: var(--marquee-height-mobile); /* Position below mobile marquee */  }  .header-top {    height: var(--header-top-height-mobile);    padding: 0;  }    .header-container {    padding: 0 15px;    justify-content: space-between; /* Adjusted for hamburger */    position: relative;    min-height: 50px; /* Ensure height for logo positioning */  }  .hamburger-menu {    display: block; /* Visible on mobile */    order: 0; /* Leftmost */    flex-shrink: 0;  }  .logo {    flex: 1 !important;    display: flex !important;    justify-content: center !important;    align-items: center !important;    font-size: 20px;    position: absolute; /* Absolute positioning for robust centering */    left: 50%;    transform: translateX(-50%);    max-width: calc(100% - 100px); /* Account for hamburger width */  }  .logo img {    max-height: 40px; /* Mobile logo height */  }    .desktop-nav-buttons {    display: none; /* Hidden on mobile */  }  .mobile-nav-buttons {    display: flex !important; /* Visible on mobile, as a separate row */    width: 100%;    max-width: 100%;    box-sizing: border-box;    padding: 8px 15px; /* Padding for the button container */    overflow: hidden;    gap: 10px;    justify-content: center;    flex-wrap: nowrap; /* Ensure buttons stay in one line */    background: linear-gradient(135deg, #0a0a0a, #1a1a2e); /* Dark background for mobile buttons */    border-bottom: 2px solid;    animation: theme-colors 4s ease-in-out infinite;    box-shadow:       0 0 8px var(--neon-primary),      0 0 15px var(--neon-primary),      inset 0 0 10px rgba(0, 255, 255, 0.1);    height: var(--mobile-buttons-height); /* Explicit height for offset calculation */    align-items: center;  }  .mobile-nav-buttons .btn {    flex: 1;    min-width: 0;    max-width: calc(50% - 5px); /* 50% width minus half of the gap */    padding: 8px 12px; /* Smaller padding for mobile buttons */    font-size: 13px; /* Smaller font for mobile buttons */    white-space: normal; /* Allow text to wrap */    word-wrap: break-word;    overflow-wrap: break-word;    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-buttons-height)); /* Below header and mobile buttons */    left: 0;    width: 70%; /* Adjust as needed */    max-width: 300px;    height: calc(100% - var(--marquee-height-mobile) - var(--header-top-height-mobile) - var(--mobile-buttons-height)); /* Full height below header */    background: linear-gradient(135deg, #16213e, #0f3460); /* Darker background for mobile menu */    overflow-y: auto;    transition: transform 0.3s ease;    transform: translateX(-100%); /* Slide out from left */    z-index: 1000; /* Above overlay */    padding: 20px 0;    border-right: 2px solid;    animation: theme-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 */  }  .main-nav .nav-container {    flex-direction: column;    align-items: flex-start;    padding: 0 15px;    gap: 15px;    width: 100%;    max-width: none; /* Ensure full width on mobile */  }  .nav-link {    width: 100%;    padding: 10px 0;    border-bottom: 1px solid rgba(255, 255, 255, 0.1);  }  .nav-link:last-child {    border-bottom: none;  }  /* Footer Mobile */  .site-footer {    padding: 30px 15px 15px;  }  .footer-grid-container {    grid-template-columns: 1fr; /* Single column on mobile */    gap: 20px;  }  .footer-col {    text-align: center;  }  .footer-col ul {    text-align: center;  }  .footer-col h4 {    text-align: center;  }  .footer-about {    text-align: center;  }  .footer-logo {    margin: 0 auto 10px;  }  .footer-description {    text-align: center;  }  .payment-methods, .game-providers-section, .social-media-section {    text-align: center;  }  .payment-icons, .game-providers-icons, .social-media-icons {    justify-content: center;  }  .footer-middle-section {    margin-bottom: 20px;    padding-bottom: 20px;  }  /* Mobile Content Overflow Protection */  .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;
  }
}
