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

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

body {
    font-family: 'Nunito', sans-serif;
    background: #0a1f12;
    color: #d4e8dc;
    line-height: 1.8;
}

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

a:hover {
    color: #6ee7b7;
}

.top-navigation {
    background: linear-gradient(180deg, #0d2916 0%, transparent 100%);
    padding: 1.2rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 600;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section svg {
    width: 52px;
    height: 52px;
}

.logo-section span {
    font-size: 2rem;
    font-weight: 800;
    color: #34d399;
}

.menu-hamburger {
    display: none;
    background: rgba(52, 211, 153, 0.2);
    border: 1px solid #34d399;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
}

.menu-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #34d399;
    margin: 5px 0;
    border-radius: 3px;
}

.nav-items ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-items a {
    display: block;
    padding: 0.6rem 1.3rem;
    font-weight: 600;
    color: #d4e8dc;
    border-radius: 8px;
    transition: 0.2s;
}

.nav-items a:hover {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at bottom, #0f3320 0%, #0a1f12 100%);
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, #0a1f12);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-tag {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.4);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

.game-section {
    padding: 5rem 2rem;
    background: #0a1f12;
    position: relative;
    z-index: 20;
}

.game-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 2rem;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #0d2916;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 16px;
    display: block;
}

.features-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-box {
    background: linear-gradient(145deg, #0f3320, #0d2916);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(52, 211, 153, 0.15);
    transition: 0.3s;
}

.feature-box:hover {
    border-color: #34d399;
    transform: translateY(-5px);
}

.feature-box h3 {
    color: #34d399;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box p {
    font-weight: 500;
    opacity: 0.85;
}

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

.page-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 2rem;
    text-align: center;
}

.page-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #34d399;
    margin: 2.5rem 0 1rem;
}

.page-section p {
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-section ul, .page-section ol {
    margin: 1rem 0 2rem 1.5rem;
    font-weight: 500;
}

.page-section li {
    margin-bottom: 0.6rem;
}

.footer-section {
    background: #071610;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(52, 211, 153, 0.2);
}

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

.footer-content h4 {
    color: #34d399;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

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

.age-box {
    background: linear-gradient(160deg, #0f3320, #0d2916);
    border: 2px solid #34d399;
    border-radius: 28px;
    padding: 3rem;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 60px rgba(52, 211, 153, 0.15);
}

.age-box h2 {
    color: #34d399;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.age-box p {
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.age-button {
    padding: 1rem 2.2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.age-button.confirm {
    background: #34d399;
    color: #0a1f12;
}

.age-button.confirm:hover {
    background: #6ee7b7;
    transform: scale(1.05);
}

.age-button.deny {
    background: transparent;
    border: 2px solid #34d399;
    color: #34d399;
}

.age-button.deny:hover {
    background: rgba(52, 211, 153, 0.1);
}

.blocked h2 {
    color: #f87171;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-items {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d2916;
        padding: 1rem;
        display: none;
        border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    }

    .nav-items.visible {
        display: block;
    }

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

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .logo-section span {
        font-size: 1.5rem;
    }
}
