:root { --site-primary-color: #0A2463; /* Dark Blue */ --site-secondary-color: #E0B34D; /* Gold/Orange */ --neon-color-1: #33ccff; /* Bright Blue */ --neon-color-2: #ff66cc; /* Bright Pink */ --neon-color-3: #ffff33; /* Bright Yellow */ --neon-color-4: #00ff00; /* Bright Green */ --neon-color-5: #ff3333; /* Bright Red */ --neon-color-6: #cc33ff; /* Bright Purple */ } /* General Neon Glow Animation Keyframes */ @keyframes neon-flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; } 20%, 24%, 55% { opacity: 0.8; } } @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 text-glow-flow { 0% { text-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1), 0 0 15px var(--neon-color-1); color: #ffffff; } 25% { text-shadow: 0 0 5px var(--neon-color-2), 0 0 10px var(--neon-color-2), 0 0 15px var(--neon-color-2); color: #ffffff; } 50% { text-shadow: 0 0 5px var(--neon-color-3), 0 0 10px var(--neon-color-3), 0 0 15px var(--neon-color-3); color: #ffffff; } 75% { text-shadow: 0 0 5px var(--neon-color-4), 0 0 10px var(--neon-color-4), 0 0 15px var(--neon-color-4); color: #ffffff; } 100% { text-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1), 0 0 15px var(--neon-color-1); color: #ffffff; } } @keyframes theme-colors { 0%, 100% { border-color: var(--neon-color-1); box-shadow: 0 0 10px var(--neon-color-1), 0 0 20px var(--neon-color-1), inset 0 0 10px rgba(51, 204, 255, 0.3); } 33% { border-color: var(--neon-color-2); box-shadow: 0 0 10px var(--neon-color-2), 0 0 20px var(--neon-color-2), inset 0 0 10px rgba(255, 102, 204, 0.3); } 66% { border-color: var(--neon-color-3); box-shadow: 0 0 10px var(--neon-color-3), 0 0 20px var(--neon-color-3), inset 0 0 10px rgba(255, 255, 51, 0.3); } } /* Basic Reset & Body Styles */ body { margin: 0; font-family: 'Arial', sans-serif; background-color: #1a1a2e; /* Base dark background for content */ color: #ffffff; line-height: 1.6; padding-top: 100px; /* Adjust based on marquee + header heights */ } body.no-scroll { overflow: hidden; } .site-header a, .site-footer a { text-decoration: none; color: inherit; } /* Marquee Section Styles */ .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-color-1), 0 0 20px var(--neon-color-1), 0 0 30px var(--neon-color-1), inset 0 0 20px rgba(51, 204, 255, 0.1); z-index: 1001; padding: 5px 0; /* Reduced padding for compact marquee */ } .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: 30px; /* Smaller icon */ height: 30px; /* Smaller icon */ z-index: 2; position: relative; } .marquee-icon-emoji { font-size: 20px; /* Smaller icon font 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-color-1), 0 0 10px var(--neon-color-1), 0 0 15px var(--neon-color-1); 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; } .marquee-text { font-size: 14px; /* Smaller text */ font-weight: 600; color: #ffffff; text-decoration: none; text-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1), 0 0 15px var(--neon-color-1); 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-color-1), 0 0 20px var(--neon-color-1), 0 0 30px var(--neon-color-1), 0 0 40px var(--neon-color-1); transform: scale(1.05); color: #ffffff; } .marquee-separator { font-size: 14px; /* Smaller text */ color: rgba(255, 255, 255, 0.6); margin: 0 10px; /* Adjusted margin */ text-shadow: 0 0 3px var(--neon-color-1), 0 0 6px var(--neon-color-1); } @keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* Header Styles */ .site-header { position: fixed; top: 40px; /* Adjust based on marquee height (5px padding top + 5px padding bottom + 30px icon height = 40px approx) */ left: 0; width: 100%; z-index: 1000; min-height: 50px; /* Minimum height for header-top */ } .header-top { 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-color-3), /* Yellow glow for top */ 0 0 20px var(--neon-color-3), 0 0 30px var(--neon-color-3), inset 0 0 20px rgba(255, 255, 51, 0.1); padding: 10px 0; } .header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; } .logo { font-family: 'Electrolize', sans-serif; /* Example futuristic font */ font-size: 28px; font-weight: bold; color: #ffffff; text-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1), 0 0 15px var(--neon-color-1); animation: text-glow-flow 3s ease-in-out infinite alternate, neon-flicker 2s infinite alternate; flex-shrink: 0; } .hamburger-menu { display: none; /* Hidden on desktop */ flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; z-index: 1002; /* Above logo and buttons */ position: relative; margin-right: 15px; /* Spacing from logo */ } .hamburger-menu span { display: block; width: 100%; height: 3px; background-color: var(--neon-color-1); border-radius: 2px; transition: all 0.3s ease; box-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1); } .hamburger-menu.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); } .desktop-nav-buttons { display: flex; gap: 10px; flex-shrink: 0; } .mobile-nav-buttons { display: none; /* Hidden on desktop */ } .btn { position: relative; background: linear-gradient(135deg, var(--neon-color-5), var(--neon-color-2)); /* Red to Pink gradient */ padding: 10px 20px; 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-color-5); 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-color-5), 0 0 30px var(--neon-color-5), 0 0 45px var(--neon-color-5), inset 0 0 15px rgba(255, 51, 51, 0.4); } .main-nav { background: linear-gradient(135deg, #16213e, #0f3460, #0a0a0a); /* Darker blue/purple gradient */ border-top: 2px solid; border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite reverse; /* Different animation for distinction */ box-shadow: 0 0 10px var(--neon-color-6), /* Purple glow for nav */ 0 0 20px var(--neon-color-6), 0 0 30px var(--neon-color-6), inset 0 0 20px rgba(204, 51, 255, 0.1); width: 100%; display: flex; /* Desktop default */ justify-content: center; padding: 10px 0; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; gap: 25px; } .nav-link { color: #e0e0e0; font-size: 16px; font-weight: 500; padding: 5px 0; transition: color 0.3s ease; white-space: nowrap; /* Prevent wrapping for desktop nav links */ } .nav-link:hover, .nav-link.active { color: var(--neon-color-1); text-shadow: 0 0 5px var(--neon-color-1), 0 0 10px var(--neon-color-1); } .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; transition: opacity 0.3s ease; } .mobile-menu-overlay.active { display: block; opacity: 1; } /* Footer Styles */ .site-footer { background-color: #0a0a0a; color: #e0e0e0; padding: 40px 0 20px 0; font-size: 14px; } .footer-top { padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .footer-col { display: flex; flex-direction: column; } .footer-col h4 { font-size: 18px; color: #ffffff; margin-bottom: 15px; text-transform: uppercase; } .footer-col ul { list-style: none; padding: 0; margin: 0; } .footer-col ul li { margin-bottom: 8px; } .footer-col ul li a { color: #e0e0e0; transition: color 0.3s ease; } .footer-col ul li a:hover { color: var(--site-secondary-color); } .footer-logo { font-size: 24px; font-weight: bold; color: #ffffff; margin-bottom: 15px; } .footer-description { color: #b0b0b0; line-height: 1.6; word-wrap: break-word; /* Ensure full display and wrapping */ 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; /* Consistent gap for all icon sections */ width: 100%; } .payment-icons img, .game-providers-icons img, .social-media-icons img { max-height: 40px; /* Reduced max-height for icons */ height: auto; width: auto; object-fit: contain; filter: grayscale(80%) brightness(120%); /* Subtle effect for footer icons */ transition: filter 0.3s ease; } .payment-icons img:hover, .game-providers-icons img:hover, .social-media-icons img:hover { filter: grayscale(0%) brightness(100%); } .game-providers-section, .social-media-section { padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .game-providers-section .footer-container, .social-media-section .footer-container { display: block; /* Override grid for full width sections */ max-width: 1200px; margin: 0 auto; padding: 0 20px; } .game-providers-section h4, .social-media-section h4 { text-align: left; margin-bottom: 15px; } .footer-bottom { padding-top: 20px; text-align: center; color: #b0b0b0; } /* Mobile Responsive */ @media (max-width: 768px) { body { padding-top: 150px; /* Adjust for mobile marquee + header + buttons */ } /* Marquee Mobile */ .marquee-section { padding: 2px 0; /* Even smaller padding */ } .marquee-container { gap: 10px; padding: 0 10px; } .marquee-icon { width: 25px; height: 25px; } .marquee-icon-emoji { font-size: 16px; } .marquee-text, .marquee-separator { font-size: 12px; } .marquee-content { gap: 20px; animation-duration: 25s; } /* Header Mobile */ .site-header { top: 30px; /* Adjust based on mobile marquee height */ } .header-top { padding: 8px 0; } .header-container { padding: 0 15px; justify-content: space-between; /* Hamburger left, Logo center */ position: relative; } .hamburger-menu { display: flex; /* Visible on mobile */ order: 0; /* Left side */ margin-right: 0; } .logo { font-size: 24px; order: 1; /* Center */ flex-grow: 1; text-align: center; margin-left: -30px; /* Offset hamburger width to truly center logo */ } .desktop-nav-buttons { display: none; /* Hidden on mobile */ } .mobile-nav-buttons { display: flex !important; /* Visible on mobile */ justify-content: center; gap: 10px; padding: 10px 15px; background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); /* Same as header-top */ border-bottom: 2px solid; animation: theme-colors 4s ease-in-out infinite; box-shadow: 0 0 8px var(--neon-color-3), 0 0 16px var(--neon-color-3), inset 0 0 10px rgba(255, 255, 51, 0.1); } .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); /* Account for 10px gap */ padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; text-align: center; } .main-nav { display: none; /* Hidden by default on mobile */ flex-direction: column; position: fixed; top: 100px; /* Adjust based on mobile marquee + header-top + mobile-nav-buttons height */ left: 0; width: 80%; max-width: 300px; /* Max width for mobile menu */ height: calc(100% - 100px); /* Fill remaining height */ background: linear-gradient(180deg, #1a1a2e, #0f3460); /* Darker background for menu */ box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; padding: 20px 0; border-right: 2px solid; animation: theme-colors 4s ease-in-out infinite reverse; box-shadow: 0 0 10px var(--neon-color-6), 0 0 20px var(--neon-color-6), inset 0 0 15px rgba(204, 51, 255, 0.2); overflow-y: auto; /* Allow scrolling if menu content is long */ } .main-nav.active { display: flex; /* Show the menu */ transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 0 20px; gap: 15px; } .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 */ .footer-container { grid-template-columns: 1fr; /* Single column layout */ gap: 20px; } .footer-col h4 { text-align: center; /* Center titles for mobile */ } .footer-col ul { text-align: center; /* Center links for mobile */ } .footer-logo, .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; /* Center icons for mobile */ } }