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

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

:root {
    --lime: #7ed957;
    --lime-dark: #5cb336;
    --yellow: #ffd93d;
    --yellow-light: #ffeb85;
    --white: #ffffff;
    --dark-green: #2d5a27;
    --cream: #fffef5;
    --text-dark: #2a3d19;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.75;
    min-height: 100vh;
}

/* Header */
header {
    background: var(--lime);
    padding: 14px 25px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(126, 217, 87, 0.4);
}

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

.brand-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    margin-right: 14px;
}

.brand-title {
    font-family: 'Fredoka One', cursive;
    font-size: 30px;
    color: var(--dark-green);
    letter-spacing: 2px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navigation ul li a {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
}

.navigation ul li a:hover {
    background: var(--yellow);
    color: var(--text-dark);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 4px;
    background: var(--dark-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(180deg, var(--lime) 0%, var(--yellow-light) 100%);
    padding: 80px 25px;
    text-align: center;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    border-radius: 100% 100% 0 0;
}

.hero-banner h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 58px;
    color: var(--dark-green);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 var(--yellow);
}

.hero-banner p {
    font-size: 20px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
}

/* Info Bubbles */
.info-bubbles {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 60px 25px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.bubble {
    background: var(--white);
    border-radius: 30px;
    padding: 30px 35px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 10px 35px rgba(126, 217, 87, 0.2);
    border: 3px solid var(--lime);
    transition: transform 0.3s ease;
}

.bubble:hover {
    transform: translateY(-8px) rotate(1deg);
}

.bubble-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.bubble h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark-green);
    font-size: 20px;
    margin-bottom: 10px;
}

.bubble p {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

/* Game Area */
.game-area {
    background: var(--dark-green);
    padding: 65px 25px;
    margin-top: 20px;
}

.game-area h2 {
    font-family: 'Fredoka One', cursive;
    text-align: center;
    font-size: 42px;
    color: var(--yellow);
    margin-bottom: 35px;
}

.game-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    border: 5px solid var(--yellow);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.game-box iframe {
    width: 100%;
    height: 660px;
    border: none;
    display: block;
}

/* Features */
.features-area {
    padding: 80px 25px;
    background: var(--cream);
}

.features-area h2 {
    font-family: 'Fredoka One', cursive;
    text-align: center;
    font-size: 40px;
    color: var(--dark-green);
    margin-bottom: 50px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-tile {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 90, 39, 0.12);
    border-bottom: 4px solid var(--lime);
    transition: all 0.3s ease;
}

.feature-tile:hover {
    border-bottom-color: var(--yellow);
    transform: scale(1.03);
}

.tile-icon {
    font-size: 48px;
    margin-bottom: 18px;
    display: block;
}

.feature-tile h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.feature-tile p {
    color: var(--text-dark);
    font-size: 15px;
}

/* Text Pages */
.text-page {
    padding: 65px 25px;
    max-width: 950px;
    margin: 0 auto;
}

.text-page h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 50px;
    color: var(--dark-green);
    margin-bottom: 35px;
    text-align: center;
}

.text-page h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--lime-dark);
    margin: 35px 0 18px;
}

.text-page p {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.text-page ul {
    margin-left: 28px;
    margin-bottom: 22px;
}

.text-page ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Footer */
footer {
    background: var(--dark-green);
    padding: 55px 25px 35px;
}

.footer-box {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-box h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 25px;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.help-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help-links a:hover {
    color: var(--yellow);
}

.copyright-text {
    color: var(--lime);
    font-size: 14px;
    padding-top: 25px;
    border-top: 2px dashed rgba(255, 217, 61, 0.3);
}

/* Age Check */
.age-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 90, 39, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-check-box {
    background: var(--white);
    padding: 50px 45px;
    border-radius: 30px;
    text-align: center;
    max-width: 480px;
    width: 92%;
    border: 4px solid var(--yellow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-check-box h2 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark-green);
    font-size: 34px;
    margin-bottom: 18px;
}

.age-check-box p {
    color: var(--text-dark);
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 500;
}

.check-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.check-btn {
    padding: 16px 40px;
    font-family: 'Fredoka One', cursive;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-btn.yes {
    background: var(--lime);
    color: var(--dark-green);
}

.check-btn.yes:hover {
    background: var(--lime-dark);
    transform: scale(1.05);
}

.check-btn.no {
    background: var(--white);
    color: var(--text-dark);
    border: 3px solid var(--text-dark);
}

.check-btn.no:hover {
    background: var(--text-dark);
    color: var(--white);
}

.blocked-view {
    text-align: center;
    padding: 100px 25px;
}

.blocked-view h1 {
    font-family: 'Fredoka One', cursive;
    color: #e74c3c;
    font-size: 38px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--lime);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .navigation ul li a {
        font-size: 20px;
    }
    
    .hero-banner h1 {
        font-size: 36px;
    }
    
    .hero-banner p {
        font-size: 17px;
    }
    
    .bubble {
        min-width: 100%;
    }
    
    .game-box iframe {
        height: 440px;
    }
    
    .brand-title {
        font-size: 22px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .age-check-box {
        padding: 35px 25px;
    }
    
    .check-buttons {
        flex-direction: column;
    }
    
    .help-links {
        flex-direction: column;
        gap: 15px;
    }
}
