@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: linear-gradient(to bottom, #0a0a0a 0%, #1a1410 50%, #2d1f1a 100%);
    color: #e8dcc7;
    min-height: 100vh;
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, #1a1410 0%, #2d1f1a 100%);
    padding: 2rem;
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.navigation a {
    color: #e8dcc7;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.navigation a:hover {
    color: #d4af37;
}

.navigation a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: #d4af37;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #c4b5a0;
    font-style: italic;
    letter-spacing: 2px;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.alert-item {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.alert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.section {
    background: rgba(42, 33, 28, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem 0;
}

.section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.section ul {
    margin: 1.5rem 0 1.5rem 3rem;
}

.section li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.game-section {
    background: rgba(42, 33, 28, 0.6);
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: 3px solid #d4af37;
    border-radius: 5px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

footer {
    background: linear-gradient(135deg, #1a1410 0%, #0a0a0a 100%);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid #d4af37;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-resources a {
    color: #c4b5a0;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-resources a:hover {
    color: #d4af37;
}

/* Age Verification */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-container {
    background: linear-gradient(135deg, #1a1410 0%, #2d1f1a 100%);
    padding: 4rem;
    border-radius: 10px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4af37;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

.age-container h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-size: 2.5rem;
}

.age-container p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    color: #c4b5a0;
    line-height: 1.8;
}

.age-controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    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;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.age-accept {
    background: #d4af37;
    color: #0a0a0a;
}

.age-accept:hover {
    background: #f4cf5f;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.age-decline {
    background: transparent;
    color: #d4af37;
}

.age-decline:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: #1a1410;
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    }

    .navigation.active {
        right: 0;
    }

    .brand {
        font-size: 2rem;
    }

    h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    h2 {
        font-size: 2rem;
    }

    .alert-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 500px;
    }
}
