@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #1a0f0a 0%, #2d1810 50%, #1a0f0a 100%);
    color: #f5e6d3;
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(218, 165, 32, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.site-header {
    background: rgba(26, 15, 10, 0.95);
    padding: 1.8rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(218, 165, 32, 0.25);
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(10px);
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #daa520;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.5);
    letter-spacing: 2px;
    font-style: italic;
}

.brand-logo::before {
    content: '★ ';
    color: #ffd700;
    font-style: normal;
}

.mobile-menu-btn {
    display: none;
    background: rgba(218, 165, 32, 0.2);
    border: 2px solid #daa520;
    color: #daa520;
    font-size: 1.5rem;
    padding: 0.7rem 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(218, 165, 32, 0.4);
}

.site-navigation ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.site-navigation a {
    color: #f5e6d3;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
    letter-spacing: 1px;
}

.site-navigation a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #daa520, #ffd700);
    transition: width 0.3s ease;
}

.site-navigation a:hover::after {
    width: 100%;
}

.site-navigation a:hover {
    color: #ffd700;
}

.hero-area {
    padding: 7rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.05) 0%, transparent 100%);
    position: relative;
    z-index: 1;
}

.hero-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    line-height: 1.2;
    letter-spacing: 1px;
    font-style: italic;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #daa520;
    text-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
    font-style: italic;
}

.hero-area p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e6d7c3;
    line-height: 1.9;
}

.action-button {
    display: inline-block;
    background: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
    color: #1a0f0a;
    padding: 1.4rem 4rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.6);
    border-color: #ffd700;
}

.page-content {
    max-width: 1600px;
    margin: 5rem auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.info-card {
    background: rgba(45, 24, 16, 0.7);
    padding: 3.5rem;
    border-radius: 12px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.info-card:hover {
    border-color: #daa520;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(218, 165, 32, 0.2);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    font-weight: 700;
    font-style: italic;
}

.info-card p {
    font-size: 1.05rem;
    color: #e6d7c3;
    line-height: 1.8;
}

.game-wrapper {
    background: rgba(45, 24, 16, 0.8);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem auto;
    max-width: 1400px;
    border: 2px solid rgba(218, 165, 32, 0.4);
    box-shadow: 0 20px 70px rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(5px);
}

.game-wrapper iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 10px;
}

.text-section {
    background: rgba(45, 24, 16, 0.6);
    padding: 4rem;
    border-radius: 12px;
    margin: 4rem 0;
    border-right: 5px solid #daa520;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.text-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #ffd700;
    font-weight: 700;
    font-style: italic;
}

.text-section p {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    color: #e6d7c3;
    line-height: 1.9;
}

.text-section ul {
    list-style: none;
    padding-left: 0;
}

.text-section li {
    padding: 1.1rem 0;
    font-size: 1.08rem;
    color: #e6d7c3;
    border-bottom: 1px solid rgba(218, 165, 32, 0.15);
    line-height: 1.8;
}

.text-section li::before {
    content: '★ ';
    color: #daa520;
    font-weight: bold;
    margin-right: 1rem;
}

.site-footer {
    background: rgba(26, 15, 10, 0.95);
    padding: 4.5rem 3rem;
    margin-top: 7rem;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-wrap {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.site-footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
    color: #ffd700;
    font-weight: 700;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-links a {
    color: #e6d7c3;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffd700;
}

.site-footer p {
    color: #c9b89a;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification-box {
    background: linear-gradient(135deg, #2d1810 0%, #1a0f0a 100%);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    border: 3px solid #daa520;
    box-shadow: 0 35px 90px rgba(218, 165, 32, 0.3);
    backdrop-filter: blur(15px);
}

.age-verification-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #ffd700;
    font-style: italic;
}

.age-verification-box p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #e6d7c3;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1.3rem 3.5rem;
    font-size: 1.08rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-buttons .confirm-btn {
    background: linear-gradient(135deg, #daa520, #ffd700);
    color: #1a0f0a;
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.4);
}

.age-buttons .confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.6);
}

.age-buttons .decline-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #e6d7c3;
    border: 2px solid #daa520;
}

.age-buttons .decline-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(26, 15, 10, 0.98);
        padding: 7rem 3rem;
        transition: right 0.4s ease;
        border-left: 1px solid #daa520;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
    }
    
    .site-navigation.active {
        right: 0;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 3rem;
    }
    
    .brand-logo {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-area {
        padding: 5rem 2rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 600px;
    }
    
    .age-verification-box {
        margin: 2rem;
        padding: 3rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
