:root { --primary-color: #FF8C1A; --secondary-color: #FFA53A; --card-bg: #17191F; --background-color: #0D0E12; --text-main-color: #FFF3E6; --border-color: #A84F0C; --glow-color: #FFB04D; --deep-orange-color: #D96800; /* Neon dynamic colors - based on site theme */ --neon-primary: var(--primary-color); --neon-secondary: var(--secondary-color); --neon-accent: var(--glow-color); /* Using glow color as accent for neon */ /* Header offset calculation (with marquee) */ --header-offset: 166px; /* 44px (marquee) + 68px (header-top) + 52px (main-nav) + 2px buffer */ } body { margin: 0; font-family: 'Arial', sans-serif; color: var(--text-main-color); background-color: var(--background-color); padding-top: var(--header-offset); /* Ensure content is below fixed header */ overflow-x: hidden; /* Prevent horizontal scroll from mobile overflow */ } a { text-decoration: none; color: inherit; } /* Keyframe Animations for Neon Effects */ @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, 140, 26, 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, 165, 58, 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, 176, 77, 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 */ .marquee-section { position: fixed; top: 0; left: 0; width: 100%; height: 44px; box-sizing: border-box; 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, 140, 26, 0.1); z-index: 1001; } .marquee-container { width: 100%; max-width: 100%; height: 100%; margin: 0 auto; overflow: hidden; display: flex; align-items: center; gap: 15px; padding: 0 20px; box-sizing: border-box; } .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; height: 100%; /* Ensure content fills marquee height */ } .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); } /* Header Section */ .site-header { position: fixed; top: 44px; /* Below marquee */ left: 0; width: 100%; z-index: 1000; box-sizing: border-box; } .header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; 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), 0 0 30px var(--neon-primary), inset 0 0 20px rgba(255, 140, 26, 0.1); } .header-container { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; box-sizing: border-box; height: 100%; } .logo { font-size: 24px; font-weight: bold; color: #ffffff; /* LOGO no neon effect */ text-decoration: none; flex-shrink: 0; display: block; } .logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; } .desktop-nav-buttons { display: flex; gap: 10px; flex-shrink: 0; margin-left: auto; /* Push buttons to the right */ } .mobile-nav-buttons { display: none; /* Hidden on desktop */ } .btn { position: relative; background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); padding: 12px 25px; color: #ffffff; 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; font-weight: 600; cursor: pointer; white-space: nowrap; /* Prevent text wrap on desktop */ } .btn:hover { animation-duration: 2s; transform: translateY(-2px) scale(1.02); box-shadow: 0 0 15px var(--neon-primary), 0 0 30px var(--neon-primary), inset 0 0 15px rgba(255, 140, 26, 0.4); } .main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; /* Display on desktop */ align-items: center; overflow: hidden; background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); border-top: 2px solid; border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; 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(255, 165, 58, 0.1); } .nav-container { max-width: 1200px; width: 100%; margin: 0 auto; height: 100%; display: flex; align-items: center; justify-content: center; /* Center nav links */ padding: 0 20px; box-sizing: border-box; } .nav-link { color: #ffffff; font-size: 16px; font-weight: 500; padding: 10px 15px; transition: color 0.3s ease, background-color 0.3s ease; white-space: nowrap; } .nav-link:hover { color: var(--neon-primary); background-color: rgba(255, 255, 255, 0.1); border-radius: 3px; } .hamburger-menu { display: none; /* Hidden on desktop */ background: none; border: none; cursor: pointer; padding: 0; width: 30px; height: 24px; position: relative; flex-direction: column; justify-content: space-between; align-items: center; z-index: 1002; /* Ensure above logo and other elements */ } .hamburger-line { display: block; width: 100%; height: 3px; background-color: #ffffff; border-radius: 2px; transition: all 0.3s ease; box-shadow: 0 0 5px var(--neon-primary), 0 0 10px var(--neon-primary); /* Neon glow */ } .hamburger-menu.active .hamburger-line:nth-child(1) { transform: translateY(10px) rotate(45deg); } .hamburger-menu.active .hamburger-line:nth-child(2) { opacity: 0; } .hamburger-menu.active .hamburger-line:nth-child(3) { transform: translateY(-11px) rotate(-45deg); } .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; transition: opacity 0.3s ease; opacity: 0; } .mobile-menu-overlay.active { display: block; opacity: 1; } /* Footer Section */ .site-footer { background-color: #0D0E12; /* Regular dark background */ color: #FFF3E6; padding: 40px 20px 20px; font-size: 14px; line-height: 1.6; box-sizing: border-box; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 40px; box-sizing: border-box; } .footer-col h4 { color: var(--primary-color); font-size: 18px; margin-bottom: 15px; text-transform: uppercase; } .footer-logo { font-size: 24px; font-weight: bold; color: #ffffff; text-decoration: none; display: block; margin-bottom: 15px; } .footer-description { word-wrap: break-word; overflow-wrap: break-word; line-height: 1.6; } .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-nav li { margin-bottom: 8px; } .footer-nav a { color: #FFF3E6; transition: color 0.3s ease; } .footer-nav a:hover { color: var(--primary-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; /* Consistent gap for icon sections */ 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; object-fit: contain; } .footer-middle-sections { max-width: 1200px; margin: 0 auto 40px; box-sizing: border-box; display: flex; flex-direction: column; gap: 30px; } .game-providers-section h4, .social-media-section h4 { color: var(--primary-color); font-size: 18px; margin-bottom: 15px; text-transform: uppercase; } .footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); } /* Responsive Design */ @media (max-width: 768px) { :root { --header-offset: 146px; /* 36px (marquee) + 60px (header-top) + 48px (mobile-nav-buttons) + 2px buffer */ } /* Marquee mobile adjustments */ .marquee-section { height: 36px !important; } .marquee-container { gap: 10px !important; padding: 0 12px !important; } .marquee-icon { width: 20px !important; height: 20px !important; } .marquee-icon-emoji { font-size: 14px !important; } .marquee-text { font-size: 14px !important; } .marquee-separator { font-size: 14px !important; margin: 0 10px !important; } .marquee-content { animation: marquee-scroll 25s linear infinite; } /* Header mobile adjustments */ .site-header { top: 36px; /* Below marquee */ } .header-top { min-height: 60px !important; height: 60px !important; } .header-container { padding: 0 15px; width: 100%; max-width: none; /* Important for mobile to take full width */ justify-content: space-between; /* Space out hamburger and logo */ } .logo { flex: 1 !important; /* Allow logo to take available space */ display: flex !important; justify-content: center !important; /* Center logo */ align-items: center !important; max-width: calc(100% - 60px); /* Adjust max-width to not overlap hamburger */ font-size: 20px; } .logo img { max-height: 40px !important; max-width: 100%; } .hamburger-menu { display: flex; /* Show hamburger menu */ position: relative; z-index: 1002; margin-right: auto; /* Push hamburger to left, allow logo to center */ } .desktop-nav-buttons { display: none; /* Hide desktop buttons */ } .mobile-nav-buttons { display: flex !important; /* Show mobile buttons */ width: 100%; max-width: 100%; box-sizing: border-box; padding: 10px 15px; 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), inset 0 0 10px rgba(255, 140, 26, 0.1); justify-content: center; gap: 10px; flex-wrap: nowrap; /* Prevent buttons from wrapping */ } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); /* Two buttons, accounting for gap */ padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; text-align: center; } .main-nav { display: none; /* Hidden by default, shown by JS */ flex-direction: column; position: fixed; top: 144px; /* marquee + header-top + mobile-nav-buttons */ left: 0; width: 250px; /* Sidebar width */ height: calc(100% - 144px); /* Fill remaining height */ background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); 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 20px rgba(255, 140, 26, 0.1); transform: translateX(-100%); /* Start off-screen */ transition: transform 0.3s ease; z-index: 1000; /* Above overlay */ padding-top: 20px; overflow-y: auto; /* Allow scrolling for many menu items */ } .main-nav.active { display: flex; /* Show menu when active */ transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; /* Align menu items to the left */ padding: 0 15px; width: 100%; max-width: none; height: auto; /* Allow height to adjust to content */ } .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } /* 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; } /* Footer mobile adjustments */ .site-footer { padding: 30px 15px 15px; } .footer-top-grid { grid-template-columns: 1fr; /* Single column layout */ gap: 20px; margin-bottom: 30px; } .footer-col { text-align: center; } .footer-col.footer-about { text-align: left; } .footer-logo { font-size: 22px; } .footer-col h4 { font-size: 16px; text-align: center; } .footer-nav { text-align: center; } .footer-nav li { display: inline-block; /* For horizontal list if preferred */ margin: 0 5px 8px; } .footer-nav a { font-size: 13px; } .payment-methods .payment-icons, .game-providers-section .game-providers-icons, .social-media-section .social-media-icons { justify-content: center; } .footer-middle-sections { margin-bottom: 30px; } .footer-bottom { padding-top: 15px; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
