@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, #2c5f2d 0%, #1b3a1c 100%);
    color: #f0f0f0;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(28, 48, 29, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #8bc34a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    background: rgba(139, 195, 74, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(139, 195, 74, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.menu-toggle {
    display: none;
    background: #8bc34a;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #1b3a1c;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(139, 195, 74, 0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #8bc34a;
    font-weight: 800;
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    color: #c8e6c9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(28, 48, 29, 0.8), rgba(27, 58, 28, 0.8));
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #8bc34a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.8rem;
    color: #8bc34a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.notice-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
}

.notice-section h2 {
    font-size: 2.3rem;
    color: #ffc107;
    margin-bottom: 2rem;
    font-weight: 700;
}

.notice-point {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    margin: 1.2rem 0;
    border-radius: 10px;
    border-left: 5px solid #8bc34a;
}

.notice-point strong {
    color: #8bc34a;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.game-section {
    background: rgba(28, 48, 29, 0.7);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    border: 3px solid #8bc34a;
    box-shadow: 0 12px 40px rgba(139, 195, 74, 0.2);
}

.game-section h2 {
    font-size: 2.8rem;
    color: #8bc34a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.game-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #c8e6c9;
}

.game-iframe {
    width: 100%;
    max-width: 950px;
    height: 700px;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.content-block {
    background: rgba(28, 48, 29, 0.7);
    padding: 3rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border: 2px solid rgba(139, 195, 74, 0.4);
}

.content-block h2 {
    font-size: 2.5rem;
    color: #8bc34a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.8rem;
    color: #9ccc65;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.content-block ul {
    padding-left: 2.5rem;
    margin: 1.5rem 0;
}

.content-block li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

footer {
    background: rgba(28, 48, 29, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid #8bc34a;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8bc34a;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #aed581;
    text-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #1b3a1c, #2c5f2d);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #8bc34a;
    box-shadow: 0 20px 70px rgba(139, 195, 74, 0.3);
}

.age-gate-content h2 {
    font-size: 2.5rem;
    color: #8bc34a;
    margin-bottom: 2rem;
    font-weight: 800;
}

.age-gate-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.age-btn.accept {
    background: linear-gradient(135deg, #8bc34a, #689f38);
    color: #1b3a1c;
}

.age-btn.accept:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.6);
}

.age-btn.reject {
    background: rgba(211, 47, 47, 0.8);
    color: #f0f0f0;
}

.age-btn.reject:hover {
    background: rgba(211, 47, 47, 1);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 100px;
        right: 0;
        background: rgba(28, 48, 29, 0.98);
        width: 80%;
        max-width: 350px;
        height: calc(100vh - 100px);
        padding: 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        gap: 1rem;
    }

    nav ul.open {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .game-iframe {
        height: 500px;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 3rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
