@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;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #1a3311 0%, #2d5016 50%, #1a3311 100%);
    color: #e8f5e0;
    line-height: 1.8;
    min-height: 100vh;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(to right, #2d5016, #3d6b1f, #2d5016);
    border-bottom: 4px solid #86c947;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(134, 201, 71, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #86c947, #a8e66c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a3311;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(134, 201, 71, 0.5);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

nav a {
    color: #e8f5e0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(134, 201, 71, 0.1);
    font-size: 1.05rem;
}

nav a:hover {
    background: #86c947;
    color: #1a3311;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(134, 201, 71, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(134, 201, 71, 0.2);
    border-radius: 10px;
    border: 2px solid #86c947;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #86c947;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hero {
    padding: 5rem 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(134, 201, 71, 0.1), transparent);
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
}

h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.3rem;
    color: #86c947;
    margin: 3rem 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: #a8e66c;
    margin: 1.5rem 0 0.75rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.4rem;
    color: #c8f0b0;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #86c947, #a8e66c);
    color: #1a3311;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(134, 201, 71, 0.5);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(134, 201, 71, 0.7);
}

.content-area {
    padding: 4rem 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(61, 107, 31, 0.6), rgba(45, 80, 22, 0.6));
    border: 3px solid #86c947;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.info-card:hover {
    transform: translateY(-8px) rotate(1deg);
    border-color: #a8e66c;
    box-shadow: 0 12px 40px rgba(134, 201, 71, 0.4);
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.game-section {
    background: linear-gradient(135deg, rgba(26, 51, 17, 0.8), rgba(45, 80, 22, 0.8));
    border: 4px solid #86c947;
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 12px 50px rgba(0,0,0,0.6);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    background: rgba(61, 107, 31, 0.4);
    border-left: 5px solid #86c947;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(61, 107, 31, 0.6);
    border-left-color: #ffd700;
    transform: translateX(5px);
}

footer {
    background: #1a3311;
    border-top: 4px solid #86c947;
    padding: 3.5rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-column a {
    color: #c8f0b0;
    text-decoration: none;
    display: block;
    margin: 0.75rem 0;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-column a:hover {
    color: #86c947;
    padding-left: 8px;
}

.footer-base {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid #86c947;
    color: #c8f0b0;
    font-weight: 500;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #3d6b1f, #2d5016);
    border: 4px solid #86c947;
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 70px rgba(134, 201, 71, 0.6);
}

.age-modal-box h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.age-modal-box p {
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    color: #e8f5e0;
    line-height: 1.6;
}

.age-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: 3px solid #86c947;
    background: transparent;
    color: #86c947;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
}

.age-btn:hover {
    background: #86c947;
    color: #1a3311;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(134, 201, 71, 0.5);
}

.legal-text {
    background: rgba(26, 51, 17, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 5px solid #86c947;
}

.legal-text p {
    margin-bottom: 1.2rem;
}

.legal-text ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-text li {
    margin: 0.7rem 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #2d5016;
        transition: 0.3s;
        padding: 5rem 2rem;
        border-left: 4px solid #86c947;
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        font-size: 1.2rem;
        display: block;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.7rem;
    }
    
    .game-iframe {
        height: 450px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 3rem 0;
    }
}
