:root { --primary-color: #1A2A3A; --secondary-color: #FFD700; --neon-primary-glow: #FFD700; --neon-secondary-glow: #FF69B4; --neon-accent-glow: #00FFFF; --neon-red-glow: #FF0000; --neon-blue-glow: #0000FF; --neon-green-glow: #00FF00; --neon-orange-glow: #FFA500; --dark-bg-1: #0a0a0a; --dark-bg-2: #1a1a2e; --dark-bg-3: #16213e; } @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-glow), 0 0 20px var(--neon-primary-glow); } 100% { filter: hue-rotate(360deg); box-shadow: 0 0 10px var(--neon-primary-glow), 0 0 20px var(--neon-primary-glow); } } @keyframes alternate-colors { 0% { border-color: var(--neon-primary-glow); box-shadow: 0 0 10px var(--neon-primary-glow), 0 0 20px var(--neon-primary-glow); } 100% { border-color: var(--neon-secondary-glow); box-shadow: 0 0 10px var(--neon-secondary-glow), 0 0 20px var(--neon-secondary-glow); } } @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-glow); box-shadow: 0 0 10px var(--neon-primary-glow), 0 0 20px var(--neon-primary-glow), inset 0 0 10px rgba(255, 215, 0, 0.3); } 33% { border-color: var(--neon-secondary-glow); box-shadow: 0 0 10px var(--neon-secondary-glow), 0 0 20px var(--neon-secondary-glow), inset 0 0 10px rgba(255, 105, 180, 0.3); } 66% { border-color: var(--neon-accent-glow); box-shadow: 0 0 10px var(--neon-accent-glow), 0 0 20px var(--neon-accent-glow), 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-glow), 0 0 10px var(--neon-primary-glow), 0 0 15px var(--neon-primary-glow); color: #ffffff; } 50% { text-shadow: 0 0 5px var(--neon-secondary-glow), 0 0 10px var(--neon-secondary-glow), 0 0 15px var(--neon-secondary-glow); color: #ffffff; } 100% { text-shadow: 0 0 5px var(--neon-accent-glow), 0 0 10px var(--neon-accent-glow), 0 0 15px var(--neon-accent-glow); color: #ffffff; } } body { margin: 0; font-family: 'Arial', sans-serif; background-color: var(--dark-bg-1); color: #fff; padding-top: 120px; } .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; } .header-top { 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; 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-size: 2.5em; font-weight: bold; text-decoration: none; color: var(--neon-primary-glow); transition: all 0.3s ease; animation: text-glow-flow 3s ease-in-out infinite alternate, pulse-glow 2s ease-in-out infinite alternate; } .desktop-nav-buttons { display: flex; gap: 15px; } .btn { position: relative; padding: 12px 25px; color: #ffffff; text-decoration: none; border-radius: 5px; font-weight: bold; transition: all 0.3s ease; overflow: hidden; white-space: nowrap; } .btn.theme-flow { background: linear-gradient(135deg, var(--neon-primary-glow), var(--neon-secondary-glow)); border: 2px solid; animation: theme-colors 4s ease-in-out infinite; text-shadow: 0 0 5px #ffffff, 0 0 10px var(--neon-primary-glow); } .btn.rainbow-flow { background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #8000ff, #ff0080); background-size: 400% 400%; border: 2px solid; animation: gradient-flow 3s ease infinite, rainbow-border 3s linear infinite; text-shadow: 0 0 5px #ffffff, 0 0 10px #ff0000; } .btn:hover { transform: translateY(-2px); animation-duration: 2s; } .main-nav { background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-2)); border-top: 2px solid; border-bottom: 2px solid; animation: alternate-colors 4s ease-in-out infinite; padding: 10px 0; display: flex; } .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; padding: 0 20px; width: 100%; } .nav-link { color: #ffffff; text-decoration: none; padding: 10px 15px; font-weight: bold; transition: color 0.3s ease, background-color 0.3s ease; white-space: nowrap; } .nav-link:hover { color: var(--neon-primary-glow); background-color: rgba(255, 255, 255, 0.1); border-radius: 3px; } .hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; cursor: pointer; padding: 5px; } .hamburger-menu span { display: block; height: 3px; background-color: var(--neon-primary-glow); border-radius: 3px; transition: all 0.3s ease; box-shadow: 0 0 5px var(--neon-primary-glow), 0 0 10px var(--neon-primary-glow); } .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); } .mobile-nav-buttons { display: none; } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 999; } .site-footer { background-color: var(--dark-bg-2); color: #ccc; padding: 40px 0 20px; font-size: 0.9em; } .footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 30px; margin-bottom: 30px; } .footer-col h4 { color: #fff; font-size: 1.2em; margin-bottom: 15px; } .footer-col .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-col .footer-nav li { margin-bottom: 8px; } .footer-col .footer-nav a { color: #ccc; text-decoration: none; transition: color 0.3s ease; white-space: nowrap; } .footer-col .footer-nav a:hover { color: var(--neon-primary-glow); } .footer-about .footer-logo { font-size: 2em; font-weight: bold; color: #fff; text-decoration: none; display: block; margin-bottom: 15px; } .footer-description { line-height: 1.6; color: #aaa; 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; width: 100%; } .payment-icons img, .game-providers-icons img, .social-media-icons img { max-height: 40px; height: auto; width: auto; object-fit: contain; } .footer-mid-section { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 20px; margin-bottom: 20px; } .footer-mid-section h4 { color: #fff; font-size: 1.1em; margin-bottom: 15px; } .footer-bottom { text-align: center; padding-top: 10px; } .copyright { color: #888; font-size: 0.85em; } @media (min-width: 769px) { body { padding-top: 120px; } .mobile-nav-buttons { display: none; } .hamburger-menu { display: none; } } @media (max-width: 768px) { body { padding-top: 160px; } .header-container { width: 100%; max-width: none; padding: 0 15px; flex-wrap: wrap; } .header-top { padding: 10px 0; flex-direction: row; justify-content: space-between; align-items: center; } .hamburger-menu { display: flex; order: 1; margin-right: auto; } .logo { order: 2; flex-grow: 1; text-align: center; font-size: 2em; margin: 0 10px; } .desktop-nav-buttons { display: none; } .mobile-nav-buttons { display: flex; order: 3; width: 100%; justify-content: center; gap: 10px; padding: 10px 15px; background: linear-gradient(135deg, var(--dark-bg-1), var(--dark-bg-2)); border-top: 1px solid rgba(255,255,255,0.1); } .main-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; width: 80%; height: 100%; background: linear-gradient(180deg, var(--dark-bg-1), var(--dark-bg-3)); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; border-right: 2px solid; animation: theme-colors 4s ease-in-out infinite; padding-top: 60px; overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 20px; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } .mobile-menu-overlay.active { display: block; } .footer-top-grid { grid-template-columns: 1fr; gap: 20px; } .footer-col:not(:first-child) { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; } .footer-about { border-top: none; padding-top: 0; } .payment-methods, .game-providers-section, .social-media-section { padding-top: 20px; } .footer-mid-section { margin-bottom: 15px; padding-bottom: 15px; } }