@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-gold: #d4af37;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-text: #e8e8e8;
    --accent: #c9a227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: rgba(15, 15, 30, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 1rem;
}

nav a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.3) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: rgba(26, 26, 46, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.notice-section {
    background: rgba(201, 162, 39, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.notice-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.notice-list {
    list-style: none;
    padding-left: 0;
}

.notice-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.notice-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.game-container {
    margin: 3rem 0;
    text-align: center;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: 3px solid var(--primary-gold);
    border-radius: 15px;
    margin: 2rem auto;
    background: #000;
}

footer {
    background: var(--darker-bg);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-gold);
}

.age-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-yes {
    background: var(--primary-gold);
    color: var(--darker-bg);
}

.btn-yes:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

.terms-content, .privacy-content, .disclaimer-content {
    background: rgba(26, 26, 46, 0.7);
    padding: 3rem;
    border-radius: 15px;
    line-height: 1.8;
}

.terms-content h1, .privacy-content h1, .disclaimer-content h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.terms-content h2, .privacy-content h2, .disclaimer-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.terms-content p, .privacy-content p, .disclaimer-content p {
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--darker-bg);
        transition: right 0.3s;
        padding-top: 4rem;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .age-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-content h2 {
        font-size: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .game-frame {
        height: 500px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
