@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --toad-green: #4a7c59;
    --lily-pad: #6b9969;
    --pond-blue: #5b8c85;
    --mud-brown: #8b7355;
    --sun-yellow: #f4d35e;
    --cream: #faf0ca;
    --dark-green: #2d5016;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom, #a8dadc 0%, #6b9969 50%, #457b9d 100%);
    background-attachment: fixed;
    color: #2d3748;
    line-height: 1.6;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--toad-green), var(--pond-blue), var(--toad-green));
    padding: 0.8rem;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.top-nav {
    background: rgba(74, 124, 89, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 4px solid var(--sun-yellow);
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--sun-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.main-menu a:hover {
    background: var(--sun-yellow);
    color: var(--dark-green);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--sun-yellow);
    border-radius: 3px;
}

.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.splash-section {
    background: linear-gradient(135deg, rgba(107, 153, 105, 0.9), rgba(91, 140, 133, 0.9));
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    margin: 3rem 0;
    border: 5px solid var(--sun-yellow);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.splash-section::before {
    content: '🐸';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
}

.splash-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.8rem;
    color: var(--sun-yellow);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.splash-section p {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    border: 3px solid var(--lily-pad);
}

.feature-box:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: var(--sun-yellow);
}

.feature-box h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.9rem;
    color: var(--toad-green);
    margin-bottom: 1rem;
}

.feature-box p {
    color: #4a5568;
}

.gaming-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 3rem;
    border-radius: 35px;
    margin: 4rem 0;
    border: 5px solid var(--toad-green);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
}

.gaming-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    color: var(--pond-blue);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.game-box {
    background: var(--dark-green);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.game-iframe {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border: 4px solid var(--sun-yellow);
    border-radius: 15px;
}

.content-area {
    background: rgba(250, 240, 202, 0.9);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 25px;
    border: 4px solid var(--lily-pad);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.content-area h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--toad-green);
    margin-bottom: 1.5rem;
}

.content-area p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #2d3748;
}

.content-area strong {
    color: var(--pond-blue);
    font-weight: 700;
}

.bottom-footer {
    background: var(--dark-green);
    padding: 4rem 2rem;
    margin-top: 5rem;
    border-top: 5px solid var(--sun-yellow);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    color: var(--cream);
}

.footer-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    color: var(--sun-yellow);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--sun-yellow);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--sun-yellow);
    border-radius: 25px;
    transition: all 0.3s;
}

.footer-links a:hover {
    background: var(--sun-yellow);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.95), rgba(45, 80, 22, 0.97));
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verify-modal.active {
    display: flex;
}

.verify-content {
    background: linear-gradient(135deg, var(--cream), white);
    padding: 4rem;
    border-radius: 35px;
    text-align: center;
    max-width: 550px;
    border: 6px solid var(--sun-yellow);
    box-shadow: 0 0 70px rgba(244, 211, 94, 0.6);
}

.verify-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    color: var(--toad-green);
    margin-bottom: 2rem;
}

.verify-content p {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid var(--toad-green);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.btn-confirm {
    background: var(--toad-green);
    color: white;
}

.btn-confirm:hover {
    background: var(--pond-blue);
    transform: scale(1.08);
}

.btn-decline {
    background: transparent;
    color: var(--toad-green);
}

.btn-decline:hover {
    background: rgba(74, 124, 89, 0.1);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-menu ul {
        position: fixed;
        top: 85px;
        left: -100%;
        flex-direction: column;
        background: rgba(74, 124, 89, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
        border-bottom: 4px solid var(--sun-yellow);
    }

    .main-menu ul.visible {
        left: 0;
    }

    .main-menu li {
        margin: 1rem 0;
    }

    .splash-section h1 {
        font-size: 2.5rem;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .verify-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .verify-buttons {
        flex-direction: column;
    }
}
