@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --void: #0a0a12;
    --deep: #12121c;
    --magenta: #ff2d92;
    --pink: #ff6eb4;
    --light: #f0e6f6;
    --muted: #9994b8;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--void);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

a {
    color: var(--magenta);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--pink);
}

.site-head {
    background: linear-gradient(180deg, rgba(18, 18, 28, 0.95) 0%, rgba(10, 10, 18, 0.9) 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 45, 146, 0.2);
}

.head-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-area svg {
    width: 44px;
    height: 44px;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.brand-text span {
    color: var(--magenta);
}

.burger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--magenta);
    transition: 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

.burger.clicked span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger.clicked span:nth-child(2) {
    opacity: 0;
}

.burger.clicked span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.site-nav a:hover {
    color: var(--magenta);
}

.main-content {
    padding-top: 80px;
}

.splash {
    padding: 8rem 2rem 5rem;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(255, 45, 146, 0.08) 0%, transparent 50%);
}

.splash h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.splash h1 span {
    color: var(--magenta);
}

.splash .lead {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.cta-link {
    display: inline-block;
    background: var(--magenta);
    color: var(--void);
    padding: 1rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-link:hover {
    background: var(--pink);
    color: var(--void);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 45, 146, 0.3);
}

.warning-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.w-card {
    background: var(--deep);
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--magenta);
    transition: transform 0.3s;
}

.w-card:hover {
    transform: translateX(5px);
}

.w-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.w-card h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.w-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.game-block {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.game-block h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.game-block h2 span {
    color: var(--magenta);
}

.game-block .desc {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.5rem;
}

.game-player {
    width: 100%;
    background: var(--deep);
    border: 1px solid rgba(255, 45, 146, 0.25);
}

.game-player iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.features-bar {
    background: var(--deep);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.features-bar h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.f-item {
    text-align: center;
    min-width: 150px;
}

.f-item .ico {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.f-item h4 {
    color: var(--magenta);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.f-item p {
    color: var(--muted);
    font-size: 0.85rem;
}

.page-text {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-text h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-text h1 span {
    color: var(--magenta);
}

.page-text h2 {
    color: var(--magenta);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.page-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.page-text ul {
    color: var(--muted);
    margin: 1rem 0 1.5rem 1.8rem;
}

.page-text li {
    margin-bottom: 0.5rem;
}

.foot-area {
    background: var(--deep);
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(255, 45, 146, 0.2);
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    margin-bottom: 1.2rem;
}

.help-links a {
    margin: 0 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.help-links a:hover {
    color: var(--magenta);
}

.foot-inner .copy {
    color: var(--muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

.age-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: var(--deep);
    padding: 3rem;
    max-width: 440px;
    text-align: center;
    border: 2px solid var(--magenta);
}

.age-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-box p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.age-choices {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-choices button {
    padding: 0.9rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-yes {
    background: var(--magenta);
    color: var(--void);
}

.btn-yes:hover {
    background: var(--pink);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--muted) !important;
    color: var(--muted);
}

.btn-no:hover {
    border-color: var(--light) !important;
    color: var(--light);
}

.hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .warning-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--deep);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .site-nav.open {
        transform: translateY(0);
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .splash h1 {
        font-size: 2.4rem;
    }
    
    .splash .lead {
        font-size: 1rem;
    }
    
    .game-player iframe {
        height: 450px;
    }
    
    .features-list {
        gap: 2rem;
    }
    
    .page-text h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .splash {
        padding: 5rem 1rem 3rem;
    }
    
    .splash h1 {
        font-size: 1.9rem;
    }
    
    .game-player iframe {
        height: 320px;
    }
    
    .age-box {
        margin: 1rem;
        padding: 2rem;
    }
}
