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

:root {
    --cherry-red: #ef4444;
    --orange-bright: #f97316;
    --lemon-yellow: #facc15;
    --lime-green: #84cc16;
    --grape-purple: #a855f7;
    --berry-pink: #ec4899;
    --white: #ffffff;
    --light-bg: #fef9f0;
    --warm-cream: #fef3c7;
    --text-dark: #422006;
    --text-medium: #78350f;
}

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

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--warm-cream) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

a {
    color: var(--cherry-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--grape-purple);
}

/* Header */
.fruity-header {
    background: linear-gradient(135deg, var(--cherry-red) 0%, var(--orange-bright) 50%, var(--lemon-yellow) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.fruity-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.fruity-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fruit {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-word {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.fruit-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.fruit-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.fruity-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.fruity-nav a {
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    padding: 8px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.fruity-nav a:hover {
    color: var(--warm-cream);
}

/* Hero */
.juice-hero {
    padding: 155px 24px 90px;
    text-align: center;
    position: relative;
}

.juice-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 22px;
    background: linear-gradient(135deg, var(--cherry-red) 0%, var(--orange-bright) 50%, var(--grape-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.juice-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Fruit Cards */
.fruit-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 50px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fruit-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    width: 320px;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.fruit-card:nth-child(1) { border-color: var(--cherry-red); }
.fruit-card:nth-child(2) { border-color: var(--lime-green); }
.fruit-card:nth-child(3) { border-color: var(--grape-purple); }

.fruit-card:hover {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
}

.card-fruit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.fruit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fruit-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Game Zone */
.game-bowl {
    padding: 70px 24px;
    text-align: center;
}

.game-bowl h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.game-basket {
    max-width: 950px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(132, 204, 22, 0.15);
    border: 4px solid var(--lime-green);
}

.game-basket iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 20px;
}

/* Benefits */
.benefits-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(250, 204, 21, 0.1) 50%, transparent 100%);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-box {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.benefit-box h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-box p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Page Content */
.page-banner {
    padding: 150px 24px 65px;
    text-align: center;
    background: linear-gradient(135deg, var(--cherry-red) 0%, var(--orange-bright) 50%, var(--lemon-yellow) 100%);
}

.page-banner h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

.page-content {
    padding: 55px 24px;
    max-width: 860px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.7rem;
    color: var(--cherry-red);
    margin: 38px 0 18px;
}

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

.page-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.page-content ul {
    list-style: none;
    margin: 20px 0;
}

.page-content li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.page-content li::before {
    content: '🍒';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

/* Footer */
.juicy-footer {
    background: linear-gradient(135deg, var(--cherry-red) 0%, var(--orange-bright) 100%);
    padding: 50px 24px 35px;
    margin-top: 70px;
}

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

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 18px;
    font-size: 1rem;
}

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

.footer-copy {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Age Gate */
.age-bowl {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 32, 6, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-bowl.hidden {
    display: none;
}

.age-fruit-box {
    background: var(--white);
    border-radius: 28px;
    padding: 48px 42px;
    text-align: center;
    max-width: 460px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--orange-bright);
}

.age-fruit-box h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.age-fruit-box p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.age-fruit-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.fruit-btn {
    padding: 15px 40px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fruit-btn.yes {
    background: linear-gradient(135deg, var(--lime-green) 0%, #65a30d 100%);
    color: var(--white);
}

.fruit-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.fruit-btn.no {
    background: transparent;
    border: 2px solid var(--cherry-red);
    color: var(--cherry-red);
}

.fruit-btn.no:hover {
    background: var(--cherry-red);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .fruit-menu-btn {
        display: flex;
    }
    
    .fruity-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cherry-red);
        padding: 24px;
        display: none;
    }
    
    .fruity-nav.open {
        display: block;
    }
    
    .fruity-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .juice-hero h1 {
        font-size: 2.3rem;
    }
    
    .fruit-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .fruit-card {
        width: 100%;
        max-width: 400px;
    }
    
    .game-basket iframe {
        height: 450px;
    }
    
    .age-fruit-btns {
        flex-direction: column;
    }
    
    .fruit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-word {
        font-size: 1.5rem;
    }
    
    .juice-hero h1 {
        font-size: 1.9rem;
    }
    
    .game-basket iframe {
        height: 360px;
    }
}
