@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #150025 50%, #0f001a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.75;
}

/* Stars background */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, white, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 160px 120px, white, transparent);
    background-size: 200px 200px;
    z-index: -1;
    opacity: 0.5;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9000;
    background: rgba(10, 0, 21, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #a855f7;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #a855f7;
    margin: 6px 0;
    transition: 0.3s;
}

.hamburger.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: #b08fff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e879f9;
}

/* Main */
.main {
    padding-top: 95px;
}

/* Hero */
.hero {
    padding: 100px 35px;
    text-align: center;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    background: linear-gradient(135deg, #a855f7 0%, #e879f9 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero .intro {
    font-size: 1.25rem;
    color: #a78bfa;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    padding: 60px 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    flex: 1 1 300px;
    max-width: 380px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.card .icon { font-size: 3rem; margin-bottom: 18px; }

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #e879f9;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.card p { color: #a78bfa; font-size: 0.98rem; }

/* Game */
.game-section {
    padding: 70px 35px;
}

.game-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    color: #e879f9;
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.game-wrap {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 0, 21, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 20px;
    padding: 10px;
    overflow: hidden;
}

.game-wrap iframe {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 12px;
    display: block;
}

/* Content */
.content {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 35px;
}

.content h1 {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #a855f7 0%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
}

.content h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #e879f9;
    font-size: 1.4rem;
    margin: 40px 0 15px;
}

.content p { color: #b08fff; margin-bottom: 18px; font-size: 1.05rem; }
.content ul { color: #b08fff; margin: 18px 0 18px 30px; }
.content li { margin-bottom: 10px; }

/* Footer */
.footer {
    background: rgba(10, 0, 21, 0.95);
    padding: 60px 35px 40px;
    margin-top: 80px;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #e879f9;
    margin-bottom: 25px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.links a { color: #8b5cf6; text-decoration: none; transition: color 0.3s; }
.links a:hover { color: #e879f9; }

.copy {
    color: #6b21a8;
    font-size: 0.9rem;
    padding-top: 25px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 0, 21, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.age-gate.hidden { display: none; }

.age-box {
    background: linear-gradient(180deg, #150025 0%, #0a0015 100%);
    border: 2px solid #a855f7;
    border-radius: 25px;
    padding: 55px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 0 80px rgba(168, 85, 247, 0.3);
}

.age-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #e879f9;
    font-size: 1.9rem;
    margin-bottom: 18px;
}

.age-box p { color: #a78bfa; margin-bottom: 35px; }

.age-btns { display: flex; gap: 18px; justify-content: center; }

.age-btn {
    font-family: 'Space Grotesk', sans-serif;
    padding: 14px 48px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.age-btn.yes {
    background: linear-gradient(135deg, #a855f7 0%, #e879f9 100%);
    color: white;
    border: none;
}

.age-btn.yes:hover { box-shadow: 0 0 30px rgba(168, 85, 247, 0.5); }

.age-btn.no {
    background: transparent;
    color: #a855f7;
    border: 2px solid #a855f7;
}

.age-btn.no:hover { background: rgba(168, 85, 247, 0.1); }

/* Responsive */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 0, 21, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { font-size: 1.3rem; }
    .hero h1 { font-size: 2.5rem; }
    .game-wrap iframe { height: 420px; }
    .age-box { margin: 20px; padding: 40px 25px; }
    .age-btns { flex-direction: column; }
}
