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

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

:root {
    --orange: #f97316;
    --orange-dark: #ea580c;
    --lime: #84cc16;
    --lime-dark: #65a30d;
    --white: #ffffff;
    --light: #fefce8;
    --dark: #1c1917;
    --gray: #57534e;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    z-index: 1000;
    padding: 14px 0;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-shape {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--lime));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.menu a:hover {
    color: var(--orange);
}

.menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--lime) 100%);
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 35px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.notice-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.notice {
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 16px;
    min-width: 200px;
}

.notice .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.notice h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.notice p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Game */
.game-section {
    background: var(--white);
    padding: 80px 20px;
}

.section-heading {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 40px;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--orange), var(--lime));
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 12px;
}

/* About */
.about-section {
    background: var(--light);
    padding: 100px 20px;
}

.about-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-wrap h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 30px;
}

.about-wrap p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Features */
.features-section {
    background: var(--white);
    padding: 80px 20px;
}

.features-row {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--light);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--orange), var(--lime));
    padding: 140px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.9);
}

/* Content */
.content-section {
    background: var(--white);
    padding: 70px 20px;
}

.content-container {
    max-width: 850px;
    margin: 0 auto;
}

.content-container h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 15px;
    margin-top: 35px;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container p {
    color: var(--gray);
    margin-bottom: 15px;
}

.content-container ul {
    margin: 15px 0 20px 20px;
}

.content-container li {
    color: var(--gray);
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    padding: 60px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: 'Nunito', sans-serif;
    color: var(--orange);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lime);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.95);
    display: grid;
    place-items: center;
    z-index: 10000;
}

.age-box {
    background: white;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    margin: 20px;
}

.age-box .icon {
    font-size: 4rem;
    margin-bottom: 18px;
}

.age-box h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.age-box p {
    color: var(--gray);
    margin-bottom: 25px;
}

.age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-allow, .btn-deny {
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-allow {
    background: linear-gradient(135deg, var(--orange), var(--lime));
    color: white;
}

.btn-deny {
    background: var(--light);
    color: var(--gray);
}

.btn-allow:hover, .btn-deny:hover {
    transform: scale(1.03);
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 25px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .menu.open {
        right: 0;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .notice-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 380px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .age-box {
        padding: 30px 20px;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
