@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #10b981;
    --teal: #14b8a6;
    --slate: #334155;
    --charcoal: #1e293b;
    --pearl: #f8fafc;
    --silver: #cbd5e1;
    --midnight: #0f172a;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--pearl);
    color: var(--charcoal);
    line-height: 1.65;
    min-height: 100vh;
}

header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--emerald);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 38px;
    height: 38px;
}

.menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.menu a {
    color: var(--slate);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.menu a:hover {
    color: var(--emerald);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate);
    border-radius: 2px;
}

.banner {
    background: linear-gradient(135deg, var(--emerald), var(--teal));
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.banner p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.highlight-box {
    background: white;
    margin: 3rem auto;
    max-width: 850px;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--emerald);
}

.highlight-box h2 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.highlight-box li::before {
    content: '✦';
    color: var(--emerald);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.content-block {
    padding: 3rem 0;
    max-width: 950px;
    margin: 0 auto;
}

.content-block h2 {
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    line-height: 1.75;
    color: var(--slate);
}

.play-area {
    background: white;
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.play-area h2 {
    text-align: center;
    color: var(--emerald);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.game-window {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 6px;
    background: #000;
}

.feature-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1100px;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.feature-box h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-box p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--slate);
}

footer {
    background: var(--midnight);
    color: var(--silver);
    padding: 3.5rem 0 2rem;
    margin-top: 6rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.footer-part h3 {
    color: var(--emerald);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-part a {
    color: var(--silver);
    text-decoration: none;
    display: block;
    margin: 0.6rem 0;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-part a:hover {
    color: white;
}

.footer-end {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.gate-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.gate-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 700;
}

.gate-content p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.6;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: var(--emerald);
    color: white;
}

.btn-accept:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

.btn-reject {
    background: var(--pearl);
    color: var(--slate);
    border: 2px solid var(--silver);
}

.btn-reject:hover {
    background: var(--silver);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        padding: 1rem 0;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .feature-section {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 500px;
    }

    .gate-buttons {
        flex-direction: column;
    }
}
