@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-gold: #d4af37;
    --text-light: #e8e8e8;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(26, 26, 46, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid var(--accent-gold);
}

.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: 700;
    color: var(--accent-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 1rem;
}

nav a:hover {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(22, 33, 62, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notice-section {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.notice-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.notice-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.notice-list li {
    padding: 1rem;
    background: rgba(26, 26, 46, 0.5);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
    font-weight: 500;
}

.game-container {
    background: rgba(22, 33, 62, 0.8);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-container h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.content-section {
    background: rgba(22, 33, 62, 0.6);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.content-section h1,
.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.content-section h1 {
    font-size: 2.5rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--accent-gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: var(--secondary-dark);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.age-button.yes {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.age-button.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.age-button.no {
    background: #555;
    color: var(--text-light);
}

.age-button.no:hover {
    background: #666;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
        border-bottom: 2px solid var(--accent-gold);
    }

    nav ul.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
