@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Righteous', cursive;
    background: #0a0e0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    color: #e8f5e9;
    min-height: 100vh;
    line-height: 1.8;
}

/* Header */
header {
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
    border-bottom: 3px solid #daa520;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #daa520;
    color: #daa520;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

nav ul li a:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: #daa520;
    transform: translateY(-2px);
}

/* Main Content */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.3), rgba(46, 125, 50, 0.3));
    border-radius: 20px;
    border: 2px solid #2e7d32;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #daa520, #ffd700, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-section p {
    font-size: 1.4rem;
    color: #a5d6a7;
}

.content-section {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.2), rgba(46, 125, 50, 0.2));
    border: 2px solid #388e3c;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.content-section h2 {
    color: #daa520;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #2e7d32;
    padding-bottom: 1rem;
}

.content-section h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p, .content-section ul {
    margin-bottom: 1.2rem;
    color: #c8e6c9;
    font-size: 1.1rem;
}

.content-section ul {
    padding-left: 2.5rem;
}

.content-section ul li {
    margin-bottom: 0.8rem;
}

.alert-box {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(244, 67, 54, 0.2));
    border: 3px solid #ff5722;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.alert-box h3 {
    color: #ff5722;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.alert-box ul {
    list-style: none;
    padding-left: 0;
}

.alert-box ul li {
    padding: 0.8rem 0;
    color: #ffccbc;
    font-size: 1.15rem;
    font-weight: 700;
}

.alert-box ul li:before {
    content: "🐞 ";
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

/* Game Container */
.game-container {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.3), rgba(46, 125, 50, 0.3));
    border: 3px solid #daa520;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.game-container h2 {
    color: #daa520;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.game-frame {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: 3px solid #2e7d32;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
    border-top: 3px solid #daa520;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: #daa520;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.responsible-links a {
    color: #a5d6a7;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.responsible-links a:hover {
    color: #ffd700;
    background: rgba(218, 165, 32, 0.2);
}

.footer-nav {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(218, 165, 32, 0.3);
}

.footer-nav a {
    color: #a5d6a7;
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.footer-nav a:hover {
    color: #ffd700;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 10, 0.97);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border: 4px solid #daa520;
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 60px rgba(218, 165, 32, 0.5);
}

.age-modal-content h2 {
    color: #ffd700;
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.age-modal-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #c8e6c9;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-family: 'Righteous', cursive;
    border: 3px solid;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
}

.btn-yes {
    background: #daa520;
    color: #0a0e0a;
    border-color: #ffd700;
}

.btn-yes:hover {
    background: #ffd700;
    transform: scale(1.08);
}

.btn-no {
    background: #d32f2f;
    color: #fff;
    border-color: #ff5252;
}

.btn-no:hover {
    background: #f44336;
    transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1b5e20, #2e7d32);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 600px;
        border-bottom: 3px solid #daa520;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 2rem;
    }

    .game-frame {
        height: 450px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-nav a {
        display: block;
        margin: 0.8rem 0;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-modal-content h2 {
        font-size: 2.2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}