@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-purple: #4a148c;
    --royal-gold: #ffd700;
    --cream: #fff8e7;
    --dark-purple: #2d0a4d;
    --light-gold: #ffe97d;
    --text-dark: #2c1810;
    --shadow: rgba(74, 20, 140, 0.3);
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, var(--cream), #f5e6d3);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header and Navigation */
.top-header {
    background: linear-gradient(135deg, var(--royal-purple), var(--dark-purple));
    padding: 0;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--royal-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.site-logo::before {
    content: '👑 ';
    font-size: 2rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    letter-spacing: 1px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--royal-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: var(--royal-gold);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Main Container */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--royal-purple), var(--royal-gold));
    color: white;
    text-align: center;
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Content Cards */
.content-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--royal-gold);
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-purple);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-card ul,
.content-card ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-card li {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 3px solid var(--royal-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.warning-box h3 {
    color: #856404;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.warning-box p {
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Game Section */
.game-section {
    background: linear-gradient(to bottom, white, var(--cream));
    padding: 3rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.game-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.game-embed {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    border: 5px solid var(--royal-gold);
    border-radius: 10px;
    margin: 2rem auto;
    background: #000;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--dark-purple), var(--royal-purple));
    color: var(--cream);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

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

.footer-links a {
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

.site-footer p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Age Modal */
.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 10, 77, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.age-verification-modal.show {
    display: flex;
}

.modal-box {
    background: white;
    border: 5px solid var(--royal-gold);
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-purple);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.modal-box p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--royal-purple), var(--dark-purple));
    color: var(--royal-gold);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-decline {
    background: white;
    color: var(--royal-purple);
    border: 3px solid var(--royal-purple);
}

.btn-decline:hover {
    background: var(--royal-purple);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--dark-purple);
        transition: left 0.3s ease;
        padding: 2rem;
        z-index: 9998;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .main-nav a {
        display: block;
        padding: 1.2rem;
        font-size: 1.2rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        padding: 3rem 1.5rem;
    }
    
    .page-wrapper {
        padding: 2rem 1rem;
    }
    
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .modal-box {
        margin: 1rem;
        padding: 2.5rem 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}
