@import url('https://fonts.googleapis.com/css2?family=Playfair+Display: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: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.7;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::before {
    content: '◆';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover::before,
.main-navigation a.active::before {
    opacity: 1;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #ffd700;
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: #d4af37;
    color: #0d0d0d;
}

/* Main Content */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 10px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    text-align: justify;
}

/* Warning Box */
.warning-panel {
    background: linear-gradient(135deg, #2a1a0a 0%, #1a1a0a 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.warning-panel h3 {
    text-align: left;
    margin-top: 0;
}

.warning-panel ul {
    margin-top: 1.5rem;
}

/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.benefit-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #ffd700;
}

.benefit-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.benefit-box p {
    text-align: center;
}

/* Game Container */
.game-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

/* Divider */
.gold-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 3rem auto;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper h3 {
    color: #d4af37;
    margin-bottom: 2rem;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #ffd700;
}

.footer-wrapper p {
    color: #888;
    text-align: center;
}

/* Age Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
}

.age-verification.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 4px solid #d4af37;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.age-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    margin: 0 0 2rem 0;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.age-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-accept {
    background: #d4af37;
    color: #0d0d0d;
}

.age-accept:hover {
    background: #ffd700;
    transform: scale(1.05);
}

.age-decline {
    background: transparent;
    color: #d4af37;
}

.age-decline:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .site-logo {
        font-size: 2rem;
    }

    .main-navigation {
        flex-direction: column;
        gap: 1.5rem;
        display: none;
    }

    .main-navigation.open {
        display: flex;
        padding: 2rem 0;
    }

    .nav-toggle {
        display: block;
        margin: 1rem auto 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 500px;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-content {
        margin: 2rem;
        padding: 3rem 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    p {
        text-align: left;
    }
}
