* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0fdf4;
    color: #064e3b;
    min-height: 100vh;
    line-height: 1.75;
}

header {
    background: white;
    box-shadow: 0 2px 15px rgba(5, 150, 105, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-badge {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-title {
    font-size: 26px;
    font-weight: 700;
    color: #047857;
}

.navigation {
    display: flex;
    gap: 32px;
}

.navigation a {
    color: #065f46;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #10b981;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon div {
    width: 26px;
    height: 3px;
    background: #10b981;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.splash {
    padding: 90px 35px;
    text-align: center;
    background: linear-gradient(to bottom, #d1fae5, #f0fdf4);
}

.splash h1 {
    font-size: 58px;
    font-weight: 800;
    color: #047857;
    margin-bottom: 28px;
    line-height: 1.2;
}

.splash-text {
    font-size: 21px;
    color: #065f46;
    max-width: 820px;
    margin: 0 auto 45px;
}

.button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.section {
    padding: 75px 35px;
}

.section-header {
    font-size: 46px;
    font-weight: 700;
    color: #047857;
    text-align: center;
    margin-bottom: 55px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 35px;
    max-width: 1250px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 42px 35px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.12);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.2);
    border-color: #10b981;
}

.card-icon {
    font-size: 50px;
    margin-bottom: 22px;
}

.card h3 {
    font-size: 24px;
    color: #047857;
    margin-bottom: 18px;
    font-weight: 700;
}

.card p {
    font-size: 16px;
    color: #065f46;
    line-height: 1.75;
}

.info-box {
    background: white;
    border-radius: 18px;
    padding: 42px;
    margin: 55px auto;
    max-width: 1050px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.12);
    border-left: 6px solid #10b981;
}

.info-box h3 {
    font-size: 28px;
    color: #047857;
    margin-bottom: 28px;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 16px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: #065f46;
    border-bottom: 1px solid #d1fae5;
}

.info-box li:last-child {
    border-bottom: none;
}

.info-box li:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

.game-embed {
    background: white;
    border-radius: 18px;
    padding: 42px;
    margin: 55px auto;
    max-width: 1350px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.12);
}

.game-embed iframe {
    width: 100%;
    height: 780px;
    border: none;
    border-radius: 12px;
}

footer {
    background: white;
    padding: 65px 35px 38px;
    margin-top: 90px;
    border-top: 3px solid #d1fae5;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #10b981;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #047857;
}

.footer-credit {
    color: #6b7280;
    font-size: 14px;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: white;
    border-radius: 20px;
    padding: 55px;
    text-align: center;
    max-width: 580px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-box h2 {
    font-size: 35px;
    color: #047857;
    margin-bottom: 28px;
    font-weight: 800;
}

.age-gate-box p {
    font-size: 18px;
    color: #065f46;
    margin-bottom: 32px;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.age-gate-btn {
    padding: 17px 42px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-gate-yes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.age-gate-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.age-gate-no {
    background: #e5e7eb;
    color: #6b7280;
}

.age-gate-no:hover {
    background: #d1d5db;
}

.page-content {
    max-width: 1150px;
    margin: 0 auto;
    padding: 85px 35px;
}

.page-content h1 {
    font-size: 50px;
    color: #047857;
    margin-bottom: 35px;
    font-weight: 800;
}

.page-content h2 {
    font-size: 34px;
    color: #059669;
    margin-top: 48px;
    margin-bottom: 24px;
    font-weight: 700;
}

.page-content p {
    font-size: 17px;
    color: #065f46;
    margin-bottom: 24px;
    line-height: 1.85;
}

.page-content ul, .page-content ol {
    margin-left: 38px;
    margin-bottom: 24px;
}

.page-content li {
    margin-bottom: 14px;
    color: #065f46;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 38px 35px;
        gap: 28px;
        transition: left 0.3s;
        box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2);
    }

    .navigation.open {
        left: 0;
    }

    .splash h1 {
        font-size: 40px;
    }

    .splash-text {
        font-size: 18px;
    }

    .section-header {
        font-size: 34px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-menu {
        flex-direction: column;
        gap: 18px;
    }

    .age-gate-box {
        margin: 28px;
        padding: 42px 28px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .game-embed iframe {
        height: 580px;
    }

    .page-content h1 {
        font-size: 38px;
    }

    .page-content h2 {
        font-size: 28px;
    }
}
