@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Nunito:wght@400;600;700&display=swap');

:root {
    --cherry-red: #ff4757;
    --lemon-yellow: #ffc312;
    --grape-purple: #8c7ae6;
    --lime-green: #2ed573;
    --orange-bright: #ff9f43;
    --sky-blue: #70a1ff;
    --snow-white: #ffffff;
    --soft-gray: #f8f9fa;
    --text-dark: #2d3436;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--soft-gray);
    color: var(--text-dark);
    line-height: 1.7;
}

.fresh-header {
    background: var(--snow-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fresh-brand {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cherry-red), var(--orange-bright), var(--lemon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.fresh-nav {
    display: flex;
    gap: 35px;
    list-style: none;
}

.fresh-nav a {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.fresh-nav a:hover {
    color: var(--cherry-red);
}

.menu-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-burger span {
    width: 26px;
    height: 3px;
    background: var(--cherry-red);
    border-radius: 3px;
}

.colorful-hero {
    background: linear-gradient(135deg, var(--lemon-yellow) 0%, var(--orange-bright) 25%, var(--cherry-red) 50%, var(--grape-purple) 75%, var(--sky-blue) 100%);
    padding: 100px 30px 120px;
    text-align: center;
    position: relative;
}

.colorful-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--soft-gray);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.hero-box {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-box h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--snow-white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-box p {
    font-size: 1.3rem;
    color: var(--snow-white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.juicy-btn {
    display: inline-block;
    background: var(--snow-white);
    color: var(--cherry-red);
    padding: 18px 50px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.juicy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pill {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--snow-white);
}

.pill .emoji {
    font-size: 1.5rem;
}

.pill .text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.game-stage {
    padding: 80px 30px 100px;
    background: var(--soft-gray);
}

.stage-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.stage-title span {
    color: var(--cherry-red);
}

.game-box {
    max-width: 1050px;
    margin: 0 auto;
    background: var(--snow-white);
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.game-box iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 15px;
    display: block;
}

.perks-section {
    padding: 80px 30px 100px;
    background: var(--snow-white);
}

.perks-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.perk-card {
    background: var(--soft-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.perk-card:hover {
    transform: translateY(-8px);
}

.perk-card:nth-child(1) { border-top: 4px solid var(--cherry-red); }
.perk-card:nth-child(2) { border-top: 4px solid var(--lemon-yellow); }
.perk-card:nth-child(3) { border-top: 4px solid var(--lime-green); }
.perk-card:nth-child(4) { border-top: 4px solid var(--grape-purple); }

.perk-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.perk-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
}

.info-page {
    padding: 120px 30px 100px;
    min-height: 100vh;
    background: var(--soft-gray);
}

.info-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--snow-white);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.info-container h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    background: linear-gradient(135deg, var(--cherry-red), var(--orange-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-container h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 35px 0 18px;
    color: var(--grape-purple);
}

.info-container p {
    margin-bottom: 16px;
    color: #555;
}

.info-container ul {
    margin: 15px 0 25px 25px;
    color: #555;
}

.info-container li {
    margin-bottom: 10px;
}

.fresh-footer {
    background: var(--snow-white);
    padding: 50px 30px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav a {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 18px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--cherry-red);
}

.help-zone {
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.help-zone p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
}

.help-zone a {
    color: var(--cherry-red);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
}

.fresh-copy {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #aaa;
}

.age-layer {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-card {
    background: var(--snow-white);
    padding: 50px 45px;
    border-radius: 25px;
    text-align: center;
    max-width: 460px;
    margin: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-top: 5px solid var(--cherry-red);
}

.age-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.age-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.age-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-button {
    font-family: 'Quicksand', sans-serif;
    padding: 15px 35px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.age-button.yes {
    background: var(--lime-green);
    color: var(--snow-white);
}

.age-button.no {
    background: var(--cherry-red);
    color: var(--snow-white);
}

.age-button:hover {
    transform: scale(1.05);
}

.blocked-card h2 {
    color: var(--cherry-red);
}

@media (max-width: 1100px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-burger {
        display: flex;
    }
    
    .fresh-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--snow-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .fresh-nav.open {
        transform: translateY(0);
    }
    
    .hero-box h1 {
        font-size: 2.5rem;
    }
    
    .info-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .game-box iframe {
        height: 380px;
    }
    
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .info-container {
        padding: 40px 25px;
    }
    
    .age-btns {
        flex-direction: column;
    }
}
