@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1a3a1a 0%, #0d1f0d 100%);
    color: #e8f0e8;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(to right, #2d5016 0%, #1a3010 100%);
    border-bottom: 3px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav ul li a {
    font-family: 'Cinzel', serif;
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.main-nav ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px #d4af37;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    background: linear-gradient(135deg, #2d5016 0%, #1a3010 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: justify;
    color: #c8d8c8;
    margin-bottom: 1rem;
}

.warning-section {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-section h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.warning-section ul {
    list-style: none;
    padding: 0;
}

.warning-section ul li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(45, 80, 22, 0.5);
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}

.warning-section ul li strong {
    color: #d4af37;
}

.game-showcase {
    background: #0d1f0d;
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.game-showcase h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-wrapper {
    width: 100%;
    height: 700px;
    border: 4px solid #d4af37;
    border-radius: 10px;
    background: #000;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.info-panel {
    background: linear-gradient(135deg, #1a3010 0%, #2d5016 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.info-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.info-panel h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

.info-panel p {
    color: #c8d8c8;
    line-height: 1.7;
    text-align: justify;
}

/* Footer */
.site-footer {
    background: #0a1508;
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.resource-links {
    list-style: none;
    padding: 0;
}

.resource-links li {
    margin: 0.8rem 0;
}

.resource-links a {
    color: #c8d8c8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.resource-links a:hover {
    color: #d4af37;
}

/* Age Verification */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-overlay.visible {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #2d5016 0%, #1a3010 100%);
    border: 4px solid #d4af37;
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.age-box p {
    color: #c8d8c8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-action {
    font-family: 'Cinzel', serif;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-action.confirm {
    background: #d4af37;
    color: #0a1508;
}

.age-action.confirm:hover {
    background: #f0c44d;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

.age-action.deny {
    background: #555;
    color: #fff;
}

.age-action.deny:hover {
    background: #777;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(to bottom, #2d5016 0%, #1a3010 100%);
        transition: right 0.3s;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .main-nav ul li a {
        font-size: 1.3rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .info-columns {
        grid-template-columns: 1fr;
    }

    .game-wrapper {
        height: 450px;
    }

    .container {
        padding: 2rem 1rem;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }
}

.text-content {
    background: linear-gradient(135deg, #2d5016 0%, #1a3010 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.text-content h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.text-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.6rem;
}

.text-content p {
    color: #c8d8c8;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.text-content ul, .text-content ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c8d8c8;
}

.text-content li {
    margin: 0.8rem 0;
    line-height: 1.7;
}
