@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #8b5cf6;
    --pink: #ec4899;
    --indigo: #6366f1;
    --dark-purple: #5b21b6;
    --light-lavender: #f3e8ff;
    --text-dark: #312e81;
    --white: #ffffff;
    --soft-gray: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-lavender);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.top-bar {
    background: linear-gradient(90deg, var(--purple), var(--pink));
    padding: 0.7rem 0;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.content-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo {
    width: 42px;
    height: 42px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--purple);
}

.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-burger span {
    width: 26px;
    height: 3px;
    background: var(--purple);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-banner {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.hero-banner h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.alert-card {
    background: white;
    margin: 3rem auto;
    max-width: 800px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
    border: 2px solid var(--purple);
}

.alert-card h2 {
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2rem;
}

.alert-card ul {
    list-style: none;
}

.alert-card li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.alert-card li::before {
    content: '●';
    color: var(--pink);
    font-size: 1.5rem;
    line-height: 1;
}

.text-content {
    padding: 3rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.text-content h2 {
    color: var(--purple);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.game-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1150px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.game-section h2 {
    text-align: center;
    color: var(--purple);
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2.3rem;
}

.game-viewer {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1150px;
}

.perk-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid var(--purple);
}

.perk-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
}

.perk-item h3 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
}

.perk-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

footer {
    background: var(--dark-purple);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1150px;
    margin: 0 auto 2rem;
}

.footer-block h3 {
    color: var(--pink);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
}

.footer-block a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.6rem 0;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: var(--pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    max-width: 1150px;
    margin: 2rem auto 0;
}

.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(236, 72, 153, 0.95));
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verify.active {
    display: flex;
}

.verify-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.verify-box h2 {
    font-family: 'Nunito', sans-serif;
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 900;
}

.verify-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.verify-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-no {
    background: var(--soft-gray);
    color: var(--text-dark);
}

.btn-no:hover {
    background: #d1d5db;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .game-viewer {
        height: 500px;
    }

    .verify-actions {
        flex-direction: column;
    }
}
