@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&display=swap');

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

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom right, #1b5e20, #2e7d32, #388e3c);
    color: #f1f8e9;
    line-height: 1.75;
    min-height: 100vh;
}

.header-wrapper {
    background: rgba(27, 94, 32, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #66bb6a;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-emblem {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.5);
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #c5e1a5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.main-nav a {
    color: #f1f8e9;
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.main-nav a:hover {
    background: rgba(102, 187, 106, 0.3);
    color: #c5e1a5;
    transform: scale(1.05);
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: #c5e1a5;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.banner {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.8), rgba(46, 125, 50, 0.8)), url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><rect width="200" height="200" fill="none"/><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.05)"/></svg>');
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.2);
}

.banner h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: #c5e1a5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.banner p {
    font-size: 1.4rem;
    color: #e8f5e9;
    font-weight: 600;
}

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

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 187, 106, 0.3);
    border-radius: 25px;
    padding: 3rem;
    margin: 2.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card h2 {
    font-size: 2.3rem;
    color: #c5e1a5;
    margin-bottom: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card p {
    font-size: 1.05rem;
    margin: 1.3rem 0;
    line-height: 1.8;
}

.info-badge {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.2), rgba(67, 160, 71, 0.2));
    border-left: 6px solid #66bb6a;
    padding: 1.5rem;
    margin: 1.8rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-badge strong {
    color: #aed581;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.game-box {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.4), rgba(46, 125, 50, 0.4));
    border: 4px solid #66bb6a;
    border-radius: 30px;
    padding: 3rem;
    margin: 3.5rem 0;
    box-shadow: 0 15px 50px rgba(102, 187, 106, 0.4);
}

.game-box h2 {
    text-align: center;
    color: #c5e1a5;
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.15), rgba(67, 160, 71, 0.15));
    border: 2px solid rgba(102, 187, 106, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #66bb6a;
    box-shadow: 0 20px 50px rgba(102, 187, 106, 0.3);
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.25), rgba(67, 160, 71, 0.25));
}

.highlight-item h3 {
    color: #aed581;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.highlight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-footer {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.95), rgba(46, 125, 50, 0.95));
    padding: 3.5rem 2rem 1.5rem;
    margin-top: 5rem;
    border-top: 4px solid #66bb6a;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-block h3 {
    color: #c5e1a5;
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
    font-weight: 800;
}

.footer-block p {
    line-height: 1.8;
    font-size: 1rem;
}

.footer-nav {
    list-style: none;
}

.footer-nav a {
    color: #dcedc8;
    text-decoration: none;
    display: block;
    margin: 0.7rem 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-nav a:hover {
    color: #c5e1a5;
    padding-left: 10px;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(102, 187, 106, 0.3);
    color: #c5e1a5;
    font-size: 0.95rem;
    max-width: 1300px;
    margin: 0 auto;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.93);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-gate.show {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border: 4px solid #66bb6a;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 187, 106, 0.5);
}

.gate-content h2 {
    color: #c5e1a5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.gate-content p {
    font-size: 1.15rem;
    margin: 1rem 0;
    line-height: 1.7;
    color: #e8f5e9;
}

.gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.gate-btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
}

.gate-btn-yes {
    background: linear-gradient(135deg, #66bb6a, #43a047);
    color: white;
}

.gate-btn-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(102, 187, 106, 0.6);
}

.gate-btn-no {
    background: rgba(255, 255, 255, 0.15);
    color: #f1f8e9;
}

.gate-btn-no:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 968px) {
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(27, 94, 32, 0.98);
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 4px solid #66bb6a;
        z-index: 999;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1.2rem;
        border-radius: 10px;
        margin: 0.5rem 0;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.2rem;
    }
    
    .highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .gate-content {
        padding: 2rem;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
}
