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

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

body {
    font-family: 'DM Sans', sans-serif;
    background: #141414;
    color: #e8e8e8;
    line-height: 1.75;
}

a {
    color: #a3e635;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #d4fc79;
}

header.main-header {
    background: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 700;
    border-bottom: 1px solid #2a2a2a;
}

.header-flex {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-wrap svg {
    width: 48px;
    height: 48px;
}

.brand-wrap h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a3e635;
}

.mobile-toggle {
    display: none;
    background: #2a2a2a;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 10px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #a3e635;
    margin: 4px 0;
    border-radius: 2px;
}

nav.site-nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

nav.site-nav a {
    display: block;
    padding: 0.7rem 1.4rem;
    font-weight: 500;
    color: #e8e8e8;
    border-radius: 10px;
    transition: 0.2s;
}

nav.site-nav a:hover {
    background: #2a2a2a;
    color: #a3e635;
}

.page-body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-section {
    padding: 6rem 0;
    text-align: center;
}

.welcome-section h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.welcome-section p {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: #b0b0b0;
}

.indicators {
    display: inline-flex;
    gap: 2rem;
    background: #1a1a1a;
    padding: 1.5rem 3rem;
    border-radius: 100px;
}

.indicator {
    text-align: center;
}

.indicator-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.indicator-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a3e635;
}

.game-block {
    padding: 3rem 0;
}

.game-block h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #a3e635;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-embed {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 0;
}

.info-tile {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 2.5rem;
    transition: 0.3s;
}

.info-tile:hover {
    background: #222;
    transform: translateY(-5px);
}

.info-tile h4 {
    color: #a3e635;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-tile p {
    color: #b0b0b0;
    font-size: 1rem;
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-area h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #a3e635;
    margin-bottom: 2rem;
    text-align: center;
}

.content-area h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #a3e635;
    margin: 2.5rem 0 1rem;
}

.content-area p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.content-area ul, .content-area ol {
    margin: 1rem 0 2rem 1.5rem;
    color: #b0b0b0;
}

.content-area li {
    margin-bottom: 0.6rem;
}

footer.site-footer {
    background: #0d0d0d;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid #2a2a2a;
}

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

.footer-inner h5 {
    color: #a3e635;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.resource-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 14, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 3rem;
    max-width: 400px;
    text-align: center;
    border: 2px solid #a3e635;
}

.age-card h2 {
    color: #a3e635;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-card p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.age-btn.yes {
    background: #a3e635;
    color: #141414;
}

.age-btn.yes:hover {
    background: #bef264;
    transform: scale(1.05);
}

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

.age-btn.no:hover {
    background: rgba(163, 230, 53, 0.1);
}

.denied h2 {
    color: #ef4444;
}

@media (max-width: 1000px) {
    .info-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav.site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 1rem;
        display: none;
        border-bottom: 1px solid #2a2a2a;
    }

    nav.site-nav.active {
        display: block;
    }

    nav.site-nav ul {
        flex-direction: column;
    }

    nav.site-nav a {
        text-align: center;
        padding: 1rem;
    }

    .welcome-section h2 {
        font-size: 2.5rem;
    }

    .game-embed iframe {
        height: 380px;
    }

    .indicators {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .brand-wrap h1 {
        font-size: 1.4rem;
    }
}
