@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zeph-light: #f0fdf4;
    --zeph-mint: #dcfce7;
    --zeph-green: #22c55e;
    --zeph-teal: #14b8a6;
    --zeph-sky: #0ea5e9;
    --zeph-dark: #064e3b;
    --zeph-text: #166534;
    --zeph-muted: #4ade80;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--zeph-light);
    color: var(--zeph-dark);
    line-height: 1.8;
}

.top-navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(240, 253, 244, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(34, 197, 94, 0.15);
}

.nav-inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-breeze {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--zeph-green), var(--zeph-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.logo-name {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--zeph-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--zeph-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover,
.nav-menu a.here {
    background: var(--zeph-green);
    color: white;
}

.mobile-btn {
    display: none;
    background: none;
    border: 2px solid var(--zeph-green);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
}

.mobile-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--zeph-green);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-btn.on span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-btn.on span:nth-child(2) {
    opacity: 0;
}

.mobile-btn.on span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    background: var(--zeph-mint);
    padding: 1rem;
}

.mobile-menu.visible {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--zeph-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    margin: 0.3rem 0;
}

.mobile-menu a:hover {
    background: var(--zeph-green);
    color: white;
}

.welcome-zone {
    min-height: 88vh;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--zeph-light) 0%, var(--zeph-mint) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.welcome-content {
    text-align: center;
    max-width: 850px;
}

.welcome-content h1 {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--zeph-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.welcome-content p {
    font-size: 1.2rem;
    color: var(--zeph-text);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.breeze-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--zeph-green), var(--zeph-teal));
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.35);
}

.breeze-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.45);
}

.notice-cards {
    padding: 4rem 2rem;
    background: var(--zeph-mint);
}

.cards-holder {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(34, 197, 94, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.2);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--zeph-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--zeph-text);
    font-size: 0.95rem;
}

.game-space {
    padding: 5rem 2rem;
    background: var(--zeph-light);
}

.game-space h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: var(--zeph-dark);
    margin-bottom: 2rem;
}

.game-box {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(34, 197, 94, 0.2);
    border: 4px solid var(--zeph-green);
}

.game-box iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.benefits {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--zeph-mint), var(--zeph-light));
}

.benefits-wrap {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--zeph-teal);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
}

.benefit h3 {
    color: var(--zeph-teal);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--zeph-text);
}

.bottom-section {
    background: var(--zeph-dark);
    padding: 3rem 2rem;
    text-align: center;
}

.bottom-section p {
    color: var(--zeph-muted);
    margin-bottom: 1.5rem;
}

.help-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.help-row a {
    color: var(--zeph-muted);
    text-decoration: none;
    font-weight: 600;
}

.help-row a:hover {
    color: white;
}

.footer-note {
    color: var(--zeph-muted);
    font-size: 0.85rem;
}

.page-top {
    padding: 6rem 2rem 3rem;
    background: var(--zeph-mint);
    text-align: center;
}

.page-top h1 {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--zeph-dark);
}

.text-section {
    padding: 4rem 2rem;
    background: var(--zeph-light);
}

.text-wrap {
    max-width: 850px;
    margin: 0 auto;
}

.text-wrap h2 {
    color: var(--zeph-green);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.text-wrap p {
    color: var(--zeph-text);
    margin-bottom: 1rem;
}

.text-wrap ul {
    list-style: none;
    margin: 1rem 0;
}

.text-wrap li {
    color: var(--zeph-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.text-wrap li::before {
    content: '🍃';
    position: absolute;
    left: 0;
}

.age-wall {
    position: fixed;
    inset: 0;
    background: rgba(6, 78, 59, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
}

.age-card h2 {
    font-family: 'Pacifico', cursive;
    color: var(--zeph-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.age-card p {
    color: var(--zeph-text);
    margin-bottom: 2rem;
}

.age-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-options button {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.age-options .enter {
    background: linear-gradient(135deg, var(--zeph-green), var(--zeph-teal));
    color: white;
}

.age-options .leave {
    background: white;
    border: 2px solid var(--zeph-green);
    color: var(--zeph-green);
}

.age-options button:hover {
    transform: scale(1.05);
}

.how-to {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid var(--zeph-green);
}

.how-to h3 {
    color: var(--zeph-green);
    margin-bottom: 0.5rem;
}

.how-to p {
    color: var(--zeph-text);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .benefits-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-btn {
        display: block;
    }
    
    .game-box iframe {
        height: 400px;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
}
