@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;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941E;
    --light-gold: #F4E5B3;
    --dark-bg: #0D0D0D;
    --card-bg: #1A1A1A;
    --lighter-bg: #262626;
    --text-primary: #E8E8E8;
    --text-secondary: #B8B8B8;
    --accent-teal: #1B9AAA;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Section */
.site-header {
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: var(--gold);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 1rem auto 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-bg);
    margin: 5px 0;
    transition: 0.3s;
}

/* Container */
.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--lighter-bg) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
}

/* Card System */
.content-card {
    background: var(--card-bg);
    border: 1px solid var(--lighter-bg);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--light-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-card p {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.content-card ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-card ul li {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1rem;
}

.content-card ul li strong {
    color: var(--gold);
}

/* Notice Boxes */
.notice-panel {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.notice-panel h3 {
    font-family: 'Playfair Display', serif;
    color: var(--light-gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notice-panel p {
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.notice-panel.critical {
    background: linear-gradient(135deg, rgba(255, 69, 58, 0.2) 0%, rgba(255, 69, 58, 0.05) 100%);
    border-color: #FF453A;
}

.notice-panel.critical h3 {
    color: #FF453A;
}

/* Game Display Area */
.game-display {
    background: var(--dark-bg);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.game-display h2 {
    font-family: 'Playfair Display', serif;
    color: var(--light-gold);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.game-display iframe {
    width: 100%;
    max-width: 950px;
    height: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

/* Footer */
.site-footer {
    background: var(--card-bg);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.site-footer h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.site-footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin: 1rem 0;
}

.site-footer ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-footer ul li a:hover {
    color: var(--gold);
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--lighter-bg);
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Age Verification Modal */
.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify-modal.show {
    display: flex;
}

.age-verify-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    border: 4px solid var(--gold);
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.4);
}

.age-verify-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--light-gold);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.age-verify-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.age-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-button-group button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-age-yes {
    background: var(--gold);
    color: var(--dark-bg);
}

.btn-age-yes:hover {
    background: var(--light-gold);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-age-no {
    background: var(--lighter-bg);
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.btn-age-no:hover {
    background: var(--card-bg);
    border-color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-active {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .site-logo {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .page-container {
        padding: 2rem 1rem;
    }
    
    .hero-section {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 1.8rem;
    }
    
    .content-card h2 {
        font-size: 2rem;
    }
    
    .game-display iframe {
        height: 500px;
    }
    
    .age-verify-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-verify-content h2 {
        font-size: 2rem;
    }
    
    .age-button-group {
        flex-direction: column;
        gap: 1rem;
    }
}
