:root {
    --bg-primary: #07111F;
    --bg-secondary: #101B2F;
    --surface: #182840;
    --electric-blue: #42BFFF;
    --lightning-cyan: #6FEAFF;
    --divine-gold: #D9A441;
    --olympus-gold: #F4D47C;
    --white-lightning: #F8FBFF;
    --text-primary: #F6F8FF;
    --text-secondary: #C8D2E8;
    --text-muted: #8A96B2;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --z-header: 1000;
    --z-cookie: 2000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--lightning-cyan);
}

ul {
    list-style: none;
}

/* Utilities */
.text-gold { color: var(--olympus-gold); }
.text-cyan { color: var(--lightning-cyan); }
.text-center { text-align: center; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }

.section-header { margin-bottom: 3.5rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; text-shadow: 0 0 15px rgba(66, 191, 255, 0.2); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-large { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), #1A73E8);
    color: var(--white-lightning);
    box-shadow: 0 0 20px rgba(66, 191, 255, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--lightning-cyan), var(--electric-blue));
    box-shadow: 0 0 30px rgba(111, 234, 255, 0.6);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--divine-gold), #B38222);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(217, 164, 65, 0.3);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, var(--olympus-gold), var(--divine-gold));
    box-shadow: 0 0 30px rgba(244, 212, 124, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
}
.btn-outline:hover {
    background: rgba(66, 191, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(66, 191, 255, 0.2);
}

/* Compliance Disclosures */
.top-compliance-bar {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(66, 191, 255, 0.15);
}
.top-compliance-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.4;
}
.top-compliance-content strong {
    color: var(--white-lightning);
}
.age-icon {
    font-size: 1.1rem;
}

.game-compliance-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
    padding: 1rem;
    background: rgba(7, 17, 31, 0.6);
    border: 1px solid rgba(66, 191, 255, 0.1);
    border-radius: 6px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: rgba(7, 17, 31, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(66, 191, 255, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 17, 31, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-lightning);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-icon { color: var(--olympus-gold); text-shadow: 0 0 10px var(--olympus-gold); }
.logo:hover { color: var(--olympus-gold); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--lightning-cyan);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--lightning-cyan);
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white-lightning); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--electric-blue);
    position: absolute;
    transition: var(--transition);
}
.hamburger { top: 9px; }
.hamburger::before { top: -9px; }
.hamburger::after { top: 9px; }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(7,17,31,0.6) 0%, rgba(7,17,31,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(66, 191, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 20px;
    color: var(--lightning-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(66, 191, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Game Section */
.game-section {
    background: var(--bg-primary);
    position: relative;
}

.game-wrapper {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    z-index: 2;
}

.game-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 2px solid var(--olympus-gold);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(66, 191, 255, 0.15), 0 0 10px rgba(217, 164, 65, 0.3);
    overflow: hidden;
    z-index: 2;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 105%; height: 110%;
    background: radial-gradient(ellipse at center, rgba(66,191,255,0.15) 0%, rgba(7,17,31,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(66, 191, 255, 0.1);
    border-bottom: 1px solid rgba(66, 191, 255, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(66, 191, 255, 0.3);
    transform: translateY(-5px);
}

.stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--white-lightning); margin-bottom: 0.2rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Rewards Section */
.rewards-section {
    background: var(--bg-primary);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reward-card {
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(217, 164, 65, 0.1);
    transition: var(--transition);
}

.reward-card:hover {
    border-color: var(--olympus-gold);
    box-shadow: 0 10px 30px rgba(217, 164, 65, 0.15);
    transform: translateY(-5px);
}

.reward-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.reward-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reward-card:hover .reward-img { transform: scale(1.05); }

.reward-content { padding: 1.5rem; }
.reward-title { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--olympus-gold); }
.reward-desc { font-size: 0.95rem; color: var(--text-secondary); }

/* About Snippet */
.about-snippet {
    background: var(--bg-secondary);
    position: relative;
}

.about-box {
    background: linear-gradient(145deg, var(--surface), rgba(24,40,64,0.5));
    border: 1px solid rgba(66,191,255,0.1);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section { background: var(--bg-primary); }
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    background: var(--surface);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover { background: rgba(66, 191, 255, 0.05); }
.faq-icon { color: var(--electric-blue); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(7, 17, 31, 0.5);
}

.faq-answer p { padding: 0 1.5rem 1.2rem; color: var(--text-secondary); }

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    position: relative;
    padding-top: 4rem;
    overflow: hidden;
}

.footer-glow-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), var(--lightning-cyan), var(--electric-blue), transparent);
    box-shadow: 0 0 20px 2px rgba(66, 191, 255, 0.6);
}

.footer-sparks {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 50% 0%, rgba(66,191,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white-lightning); margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; }

.footer-title { color: var(--olympus-gold); margin-bottom: 1.2rem; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; }
.footer-links a:hover { color: var(--electric-blue); padding-left: 5px; }

.support-text { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.support-email {
    display: inline-block;
    background: rgba(66,191,255,0.1);
    border: 1px solid rgba(66,191,255,0.3);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    color: var(--lightning-cyan);
    font-family: monospace;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright { color: var(--text-muted); font-size: 0.9rem; }
.disclaimer { 
    color: rgba(138, 150, 178, 0.8); 
    font-size: 0.85rem; 
    text-transform: none; 
    letter-spacing: normal; 
    max-width: 900px; 
    margin: 0 auto; 
    line-height: 1.6; 
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 27, 47, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--electric-blue);
    border-radius: 8px;
    padding: 1.5rem;
    width: calc(100% - 40px);
    max-width: 400px;
    z-index: var(--z-cookie);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(66,191,255,0.15);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show { transform: translateY(0); }
.cookie-title { color: var(--olympus-gold); margin-bottom: 0.5rem; font-size: 1.1rem; }
.cookie-content p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; }
.cookie-actions { display: flex; gap: 1rem; justify-content: flex-end; }

/* Inner Pages General Layout */
.page-header {
    padding: 11rem 2rem 4rem;
    background: radial-gradient(ellipse at top, var(--surface) 0%, var(--bg-primary) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(66, 191, 255, 0.1);
}

.page-title { font-size: 3rem; text-shadow: 0 0 15px rgba(217,164,65,0.2); }
.page-content { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; background: var(--bg-primary); }

.legal-content h2 { color: var(--olympus-gold); margin: 2rem 0 1rem; font-size: 1.5rem; }
.legal-content h3 { color: var(--lightning-cyan); margin: 1.5rem 0 0.8rem; font-size: 1.2rem; }
.legal-content p, .legal-content ul { margin-bottom: 1.2rem; color: var(--text-secondary); }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: 0.5rem; }

/* Contact Form */
.contact-wrapper {
    background: var(--surface);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; color: var(--text-primary); font-size: 0.95rem; font-weight: 500; }
.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(7, 17, 31, 0.6);
    border: 1px solid rgba(66,191,255,0.2);
    border-radius: 4px;
    color: var(--white-lightning);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--electric-blue); box-shadow: 0 0 10px rgba(66,191,255,0.2); }
textarea.form-control { min-height: 150px; resize: vertical; }

.form-message {
    display: none;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
.form-message.success { display: block; background: rgba(217, 164, 65, 0.1); color: var(--olympus-gold); border: 1px solid var(--olympus-gold); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .game-wrapper { width: 90%; }
    .hero-title { font-size: 3.5rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; left: -100%;
        width: 80%; height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: left 0.4s ease;
        border-right: 1px solid rgba(66,191,255,0.2);
    }
    .main-nav.active { left: 0; box-shadow: 10px 0 30px rgba(0,0,0,0.5); }
    .nav-list { flex-direction: column; text-align: center; font-size: 1.2rem; width: 100%; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    .game-wrapper { width: 100%; }
    .game-frame { border-left: none; border-right: none; border-radius: 0; }
    
    .rewards-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; gap: 1rem; }
    .about-box { padding: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-logo { justify-content: center; }
}