@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #10B981;
    --dark-green: #047857;
    --light-green: #D1FAE5;
    --cream: #FFFBEB;
    --brown: #92400E;
    --sky-blue: #7DD3FC;
    --text-dark: #1F2937;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #BAE6FD 0%, var(--light-green) 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Top Navigation */
.top-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-green);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--primary-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sheep-icon {
    font-size: 2.5rem;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 80%;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-green);
    background: var(--light-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--primary-green);
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-family: 'Pacifico', cursive;
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(16, 185, 129, 0.2);
}

.hero-section p {
    font-size: 1.4rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--light-green);
}

.content-section h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    padding-left: 3rem;
    position: relative;
    background: var(--cream);
    border-radius: 15px;
}

.content-section ul li::before {
    content: '🐑';
    position: absolute;
    left: 1rem;
    font-size: 1.5rem;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    border: 3px solid #F59E0B;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.alert-box h3 {
    color: var(--brown);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.alert-box p {
    color: var(--brown);
    font-weight: 500;
}

/* Game Embed */
.game-wrapper {
    background: linear-gradient(135deg, var(--light-green), white);
    border: 4px solid var(--primary-green);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.game-wrapper iframe {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: white;
    border-top: 4px solid var(--primary-green);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 15px;
}

.footer-links a:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.footer-note {
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Age Verification Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-verification.show {
    display: flex;
}

.age-box {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    border: 4px solid var(--primary-green);
}

.age-box h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.age-box .sheep-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.age-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.age-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-yes {
    background: var(--primary-green);
    color: white;
}

.age-yes:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

.age-no {
    background: #EF4444;
    color: white;
}

.age-no:hover {
    background: #DC2626;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 3px solid var(--primary-green);
    }

    .main-menu.active {
        display: flex;
    }

    .main-menu a {
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-box h2 {
        font-size: 2rem;
    }

    .age-button-group {
        flex-direction: column;
    }

    .age-button {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
