* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fffe;
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.7;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 255, 254, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-content {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    max-width: 460px;
    border: 2px solid #059669;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.15);
}

.age-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #059669;
    font-weight: 700;
}

.age-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: #4b5563;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-age {
    padding: 12px 35px;
    font-size: 1.05rem;
    border: 2px solid #059669;
    background: #059669;
    color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-age:hover {
    background: #047857;
    border-color: #047857;
}

.btn-age:last-child {
    background: transparent;
    color: #059669;
}

.btn-age:last-child:hover {
    background: #f0fdf4;
}

header {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #059669;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #4b5563;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #059669;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #059669;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 90px 30px;
    text-align: center;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: #059669;
    line-height: 1.2;
}

.hero p {
    font-size: 1.28rem;
    margin-bottom: 35px;
    color: #6b7280;
}

.cta-button {
    display: inline-block;
    padding: 15px 42px;
    background: #059669;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.cta-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.features {
    padding: 75px 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 50px;
    color: #059669;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    border-color: #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #059669;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    font-size: 1.05rem;
}

.game-section {
    padding: 75px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-container {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
}

footer {
    background: #ffffff;
    padding: 55px 30px 28px;
    margin-top: 90px;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #059669;
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #047857;
}

.footer-disclaimer {
    font-size: 0.92rem;
    color: #6b7280;
    margin: 28px 0;
    line-height: 1.72;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 75px 30px;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.legal-content h1 {
    font-size: 2.7rem;
    color: #059669;
    margin-bottom: 38px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.85rem;
    color: #059669;
    margin-top: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 17px;
    font-size: 1.08rem;
    color: #4b5563;
}

.legal-content ul {
    margin: 17px 0 17px 38px;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #ffffff;
        transition: right 0.3s ease;
        padding-top: 75px;
        border-left: 1px solid #e5e7eb;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 18px 30px;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.08rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
