@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;700;900&display=swap');

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

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, #0d2818 0%, #1a3a2e 50%, #0d2818 100%);
    color: #e8e8e8;
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(13, 40, 24, 0.98);
    padding: 1.2rem 0;
    box-shadow: 0 3px 15px rgba(32, 201, 151, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #20c997;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #20c997;
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(32, 201, 151, 0.6);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navigation a {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.navigation a:hover {
    background: rgba(32, 201, 151, 0.2);
    color: #20c997;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 32px;
    height: 4px;
    background: #20c997;
    border-radius: 2px;
    transition: 0.3s;
}

main {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.banner {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.15) 0%, rgba(26, 58, 46, 0.8) 100%);
    padding: 6rem 4rem;
    text-align: center;
    margin-bottom: 4rem;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #20c997;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #20c997, transparent);
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #20c997;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(32, 201, 151, 0.7);
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #20c997;
    margin: 3rem 0 1.5rem;
    letter-spacing: 3px;
}

.banner-subtitle {
    font-size: 1.5rem;
    color: #c0c0c0;
    font-weight: 300;
    letter-spacing: 2px;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.7) 0%, rgba(13, 40, 24, 0.9) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 3px solid #20c997;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 201, 151, 0.3);
}

.feature-box h3 {
    color: #20c997;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.feature-box p {
    line-height: 1.9;
    font-size: 1.05rem;
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem 0;
    border: 3px solid #20c997;
    box-shadow: 0 15px 40px rgba(32, 201, 151, 0.2);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.text-section {
    background: rgba(26, 58, 46, 0.6);
    padding: 3.5rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 5px solid #20c997;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.text-section p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 2;
}

.text-section ul {
    margin-left: 3rem;
    margin-bottom: 1.8rem;
}

.text-section li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

footer {
    background: rgba(13, 40, 24, 0.98);
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 4px solid #20c997;
}

.footer-wrapper {
    text-align: center;
}

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

.footer-menu a {
    color: #20c997;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu a:hover {
    color: #fff;
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.visible {
    display: flex;
}

.age-verification-box {
    background: linear-gradient(135deg, #1a3a2e 0%, #0d2818 100%);
    padding: 4rem;
    border-radius: 10px;
    text-align: center;
    max-width: 650px;
    border: 5px solid #20c997;
    box-shadow: 0 0 60px rgba(32, 201, 151, 0.5);
}

.age-verification-box h2 {
    margin-bottom: 2rem;
    font-size: 3rem;
}

.age-verification-box p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-action-btn {
    padding: 1.3rem 4rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.age-action-btn.yes {
    background: #20c997;
    color: #0d2818;
}

.age-action-btn.yes:hover {
    background: #2de2b0;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(32, 201, 151, 0.6);
}

.age-action-btn.no {
    background: #8b0000;
    color: #fff;
}

.age-action-btn.no:hover {
    background: #a50000;
}

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

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(13, 40, 24, 0.98);
        transition: right 0.3s ease;
        padding: 6rem 2rem;
        border-left: 4px solid #20c997;
    }

    .navigation.open {
        right: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 2.5rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .banner {
        padding: 3.5rem 2rem;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 500px;
    }

    .text-section {
        padding: 2.5rem 1.5rem;
    }

    .age-verification-box {
        margin: 1rem;
        padding: 3rem;
    }

    .age-actions {
        flex-direction: column;
    }
}
