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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, #dcfce7 0%, #86efac 50%, #4ade80 100%);
    color: #064e3b;
    line-height: 1.6;
    min-height: 100vh;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 197, 94, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(8px);
}

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

.age-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid #10b981;
}

.age-frog {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: hop 1s ease-in-out infinite;
}

@keyframes hop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.age-box h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1rem;
}

.age-box p {
    font-size: 1.1rem;
    color: #065f46;
    margin-bottom: 1rem;
}

.age-subtext {
    font-size: 0.95rem;
    color: #059669;
}

.age-choice {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-hop,
.btn-nope {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hop {
    background: #10b981;
    color: #fff;
}

.btn-hop:hover {
    background: #059669;
    transform: scale(1.05);
}

.btn-nope {
    background: #ef4444;
    color: #fff;
}

.btn-nope:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.top-bar {
    background: linear-gradient(90deg, #047857 0%, #059669 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    width: 80px;
    height: 80px;
}

.site-title {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfdf5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger-line {
    width: 32px;
    height: 4px;
    background: #ecfdf5;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.top-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.8rem 1.5rem;
    color: #d1fae5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(236, 253, 245, 0.2);
    color: #fff;
}

.nav-link.current {
    background: #ecfdf5;
    color: #047857;
    font-weight: 700;
}

.content {
    padding: 2rem 0;
}

.welcome-splash {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.8) 0%, rgba(209, 250, 229, 0.8) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 30px;
}

.splash-content {
    max-width: 900px;
    margin: 0 auto;
}

.big-title {
    font-family: 'Comic Neue', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.splash-subtitle {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 2rem;
}

.lily-pads {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pad {
    background: #10b981;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.intro-cards {
    padding: 2rem 0;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.fun-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fun-card:hover {
    transform: translateY(-8px);
}

.main-card {
    border: 3px solid #10b981;
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fun-card h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    color: #047857;
    margin-bottom: 1rem;
}

.fun-card h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #047857;
    margin-bottom: 1rem;
}

.warning-card {
    border-left: 6px solid #ef4444;
    background: linear-gradient(135deg, #fff 0%, #fee2e2 100%);
}

.info-card {
    border-left: 6px solid #3b82f6;
    background: linear-gradient(135deg, #fff 0%, #dbeafe 100%);
}

.age-card {
    border-left: 6px solid #f59e0b;
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.game-showcase {
    padding: 3rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1rem;
}

.section-head p {
    font-size: 1.3rem;
    color: #065f46;
}

.game-window {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    border: 4px solid #10b981;
}

.game-window iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #065f46;
    font-weight: 600;
}

.features-area {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.6) 0%, rgba(209, 250, 229, 0.6) 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 3rem 0;
}

.section-heading {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #047857;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.feat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feat-card h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.6rem;
    color: #047857;
    margin-bottom: 1rem;
}

.numbers-section {
    padding: 3rem 2rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 3px solid #10b981;
}

.number-big {
    font-family: 'Comic Neue', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.number-text {
    font-size: 1.2rem;
    color: #065f46;
    font-weight: 600;
}

.cta-section {
    padding: 3rem 2rem;
}

.cta-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.4);
}

.cta-box h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #047857;
    text-decoration: none;
    font-family: 'Comic Neue', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ecfdf5;
    transform: scale(1.05);
}

.page-banner {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.8) 0%, rgba(209, 250, 229, 0.8) 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 25px;
}

.page-title {
    font-family: 'Comic Neue', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.4rem;
    color: #065f46;
}

.play-intro {
    padding: 2rem 0;
}

.intro-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #10b981;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.intro-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.intro-text h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    color: #047857;
    margin-bottom: 1rem;
}

.play-game {
    padding: 2rem 0;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    border: 4px solid #10b981;
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.how-to-play {
    padding: 3rem 0;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.instruction-box {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.instruction-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instruction-box h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #047857;
    margin-bottom: 1rem;
}

.play-notes {
    padding: 2rem 0;
}

.notes-card {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #ef4444;
    max-width: 900px;
    margin: 0 auto;
}

.notes-card h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    color: #047857;
    margin-bottom: 1.5rem;
}

.notes-list {
    list-style: none;
    padding-left: 1rem;
}

.notes-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #064e3b;
}

.legal-banner {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.8) 0%, rgba(209, 250, 229, 0.8) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 3rem;
}

.legal-banner h1 {
    font-family: 'Comic Neue', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 1.2rem;
    color: #065f46;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-article {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #10b981;
}

.legal-article h2 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    color: #047857;
    margin-bottom: 1rem;
}

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-article.important {
    border: 3px solid #ef4444;
    background: linear-gradient(135deg, #fff 0%, #fee2e2 100%);
}

.resource-links,
.confirm-list {
    list-style: none;
    padding-left: 1rem;
}

.resource-links li,
.confirm-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.resource-links a {
    color: #047857;
    font-weight: 600;
}

.resource-links a:hover {
    text-decoration: underline;
}

.bottom-section {
    background: linear-gradient(90deg, #047857 0%, #059669 100%);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    color: #ecfdf5;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #d1fae5;
    line-height: 1.6;
}

.help-list,
.quick-links {
    list-style: none;
    margin-top: 1rem;
}

.help-list li,
.quick-links li {
    margin-bottom: 0.5rem;
}

.help-list a,
.quick-links a {
    color: #a7f3d0;
    text-decoration: none;
}

.help-list a:hover,
.quick-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(236, 253, 245, 0.3);
    color: #d1fae5;
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 260px;
        flex-direction: column;
        background: #047857;
        padding: 1.5rem;
        border-radius: 15px;
        transition: right 0.3s ease;
        box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.3);
    }

    .top-nav.active {
        right: 1rem;
    }

    .big-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .intro-box {
        flex-direction: column;
        text-align: center;
    }

    .game-window iframe,
    .game-container iframe {
        height: 400px;
    }

    .age-choice {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .site-logo {
        width: 60px;
        height: 60px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .lily-pads {
        flex-direction: column;
        align-items: center;
    }
}
