* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #001a0d;
    color: #e8f5e9;
    line-height: 1.75;
    min-height: 100vh;
}

.top-bar {
    background: #00ff88;
    padding: 0.5rem 0;
    text-align: center;
    color: #001a0d;
    font-weight: 700;
    font-size: 0.9rem;
}

.header-wrapper {
    background: linear-gradient(to right, #004d29, #00331a);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 20px rgba(0, 255, 136, 0.3);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    color: #00ff88;
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-logo svg {
    width: 60px;
    height: 60px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 35px;
    height: 4px;
    background: #00ff88;
    border-radius: 3px;
    transition: all 0.3s;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.primary-nav a {
    color: #e8f5e9;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 700;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 25px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.primary-nav a:hover {
    background: #00ff88;
    color: #001a0d;
}

.main-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-banner {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(circle, #004d29 0%, #00331a 100%);
    border-radius: 40px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.intro-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 136, 0.15);
    border-radius: 50%;
}

.intro-banner h1 {
    font-size: 4.5rem;
    color: #00ff88;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.intro-banner p {
    font-size: 1.6rem;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 500;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    background: linear-gradient(135deg, #004d29 0%, #002616 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card h3 {
    color: #00ff88;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.feature-card p {
    font-size: 1.12rem;
    line-height: 1.9;
}

.game-area {
    background: #002616;
    padding: 4rem;
    border-radius: 40px;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    border: 3px solid #00ff88;
}

.game-area h2 {
    color: #00ff88;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-embed-frame {
    width: 100%;
    height: 850px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

.info-section {
    background: linear-gradient(135deg, #004d29 0%, #002616 100%);
    padding: 3.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 10px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-section h2 {
    color: #00ff88;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.info-section p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 2;
}

.page-footer {
    background: #00110a;
    padding: 5rem 2rem;
    margin-top: 6rem;
    border-top: 5px solid #00ff88;
}

.footer-content {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: #00ff88;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-content p {
    color: #81c784;
    font-size: 1.05rem;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #004d29 0%, #002616 100%);
    border: 5px solid #00ff88;
    border-radius: 35px;
    padding: 4.5rem;
    max-width: 650px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
}

.age-gate-box h2 {
    color: #00ff88;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.age-gate-box p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 2;
}

.age-gate-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1.5rem 4.5rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-yes-enter {
    background: #00ff88;
    color: #001a0d;
}

.btn-yes-enter:hover {
    background: #00cc6e;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-no-exit {
    background: transparent;
    color: #00ff88;
    border: 4px solid #00ff88;
}

.btn-no-exit:hover {
    background: rgba(0, 255, 136, 0.15);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #002616;
        padding: 6rem 2rem;
        transition: right 0.3s;
        z-index: 9999;
    }

    .primary-nav.open {
        right: 0;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .primary-nav a {
        display: block;
        text-align: center;
    }

    .intro-banner h1 {
        font-size: 2.8rem;
    }

    .intro-banner p {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-embed-frame {
        height: 650px;
    }

    .age-gate-box {
        padding: 3rem 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-buttons button {
        width: 100%;
    }
}
