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

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

:root {
    --cherry-red: #e53935;
    --sunny-orange: #ff9800;
    --lemon-yellow: #ffc107;
    --lime-green: #8bc34a;
    --grape-purple: #7b1fa2;
    --bg-light: #fff8e1;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --text-dark: #2d2d2d;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.7;
    font-size: 17px;
}

/* Navigation */
.fruit-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fruit-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange), var(--lemon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--cherry-red);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s;
}

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

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

.fruit-menu a:hover {
    color: var(--cherry-red);
}

/* Hero */
.juice-hero {
    min-height: 100vh;
    padding: 100px 25px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff3e0 100%);
    display: flex;
    align-items: center;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .fruit-color {
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: #5d5d5d;
    margin-bottom: 30px;
    max-width: 500px;
}

.play-cta {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.notice-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.notice-pill {
    background: var(--white);
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--cherry-red);
}

.notice-pill:nth-child(2) {
    border-left-color: var(--sunny-orange);
}

.notice-pill:nth-child(3) {
    border-left-color: var(--lime-green);
}

.notice-pill .icon {
    font-size: 2rem;
}

.notice-pill h3 {
    font-family: 'Baloo 2', cursive;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.notice-pill p {
    color: #666;
    font-size: 0.9rem;
}

/* Game Area */
.game-bowl {
    padding: 80px 25px;
    background: var(--white);
}

.bowl-header {
    text-align: center;
    margin-bottom: 45px;
}

.bowl-header h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bowl-header h2 span {
    color: var(--cherry-red);
}

.bowl-header p {
    color: #666;
    max-width: 550px;
    margin: 0 auto;
}

.game-box {
    max-width: 1050px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 15px 50px rgba(229, 57, 53, 0.2);
}

.game-box iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 18px;
    display: block;
    background: var(--white);
}

/* Features */
.fruit-features {
    padding: 80px 25px;
    background: linear-gradient(135deg, #fff3e0 0%, var(--bg-light) 100%);
}

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

.feature-fruit {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.feature-fruit:hover {
    transform: translateY(-8px);
}

.feature-fruit .icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.feature-fruit h3 {
    font-family: 'Baloo 2', cursive;
    color: var(--cherry-red);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-fruit p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.juice-footer {
    background: var(--bg-dark);
    padding: 50px 25px;
}

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

.footer-brand {
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.help-section {
    margin-bottom: 28px;
}

.help-section h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Baloo 2', cursive;
}

.help-section a {
    color: var(--sunny-orange);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.95rem;
}

.help-section a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.9rem;
}

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

.copy-line {
    color: #888;
    font-size: 0.85rem;
}

/* Age Modal */
.age-splash {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-splash.bye {
    display: none;
}

.age-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 45px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-card h2 {
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.age-card p {
    color: #666;
    margin-bottom: 25px;
}

.age-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-row button {
    padding: 14px 35px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.yes-btn {
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    color: var(--white);
}

.no-btn {
    background: #eee;
    color: #666;
}

.age-row button:hover {
    transform: scale(1.05);
}

/* Page Styles */
.page-top {
    padding: 130px 25px 50px;
    background: var(--white);
    text-align: center;
}

.page-top h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--cherry-red), var(--sunny-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-body {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 25px 80px;
}

.page-body h2 {
    font-family: 'Baloo 2', cursive;
    color: var(--cherry-red);
    margin: 35px 0 15px;
    font-size: 1.4rem;
}

.page-body p {
    color: #555;
    margin-bottom: 15px;
}

.page-body ul {
    color: #555;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-body li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }
    
    .fruit-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .fruit-menu.open {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-wrap {
        grid-template-columns: 1fr;
    }
    
    .game-box iframe {
        height: 420px;
    }
    
    .age-row {
        flex-direction: column;
    }
}
