@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Nunito:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bear-brown: #8B4513;
    --forest-green: #2d5016;
    --honey-gold: #FFA500;
    --sky-blue: #87CEEB;
    --cream: #FFF8DC;
    --dark-wood: #3e2723;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, #87CEEB 0%, #98D8C8 50%, #2d5016 100%);
    background-attachment: fixed;
    color: var(--dark-wood);
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.95) 0%, rgba(62, 39, 35, 0.95) 100%);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--honey-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

nav a:hover {
    background: var(--honey-gold);
    color: var(--dark-wood);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: var(--honey-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 248, 220, 0.95);
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--bear-brown);
}

.hero-section h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    color: var(--bear-brown);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.bear-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bear-card {
    background: rgba(255, 248, 220, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid var(--honey-gold);
    text-align: center;
}

.bear-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.bear-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bear-brown);
}

.bear-card p {
    font-size: 1.1rem;
    color: var(--dark-wood);
}

.content-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    margin: 2rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-left: 8px solid var(--forest-green);
}

.content-box h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--bear-brown);
}

.content-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-den {
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(62, 39, 35, 0.9);
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.game-den h2 {
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    color: var(--honey-gold);
}

.game-window {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

footer {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.98) 0%, rgba(139, 69, 19, 0.98) 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--cream);
}

.footer-content h3 {
    font-family: 'Fredoka', sans-serif;
    color: var(--honey-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-family: 'Fredoka', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.footer-links a:hover {
    background: var(--honey-gold);
    color: var(--dark-wood);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    border: 6px solid var(--bear-brown);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.gate-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bear-brown);
}

.gate-content p {
    font-size: 1.2rem;
    color: var(--dark-wood);
    margin-bottom: 2rem;
}

.gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.gate-buttons button {
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-family: 'Fredoka', sans-serif;
    border: 3px solid var(--bear-brown);
    background: var(--honey-gold);
    color: var(--dark-wood);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.gate-buttons button:hover {
    background: var(--bear-brown);
    color: var(--cream);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 85px);
        background: rgba(62, 39, 35, 0.98);
        transition: right 0.3s ease;
        padding: 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    nav a {
        display: block;
        padding: 1rem;
        background: rgba(255, 165, 0, 0.2);
    }

    .logo {
        font-size: 1.6rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .bear-cards {
        grid-template-columns: 1fr;
    }

    .game-window {
        height: 400px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
