@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #d4af37;
    --accent-color: #c9a028;
    --text-color: #e0e0e0;
    --bg-color: #0f0f1e;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '♔';
    font-size: 2.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

.important-notices {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.important-notices h2 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.important-notices ul {
    list-style: none;
    padding-left: 0;
}

.important-notices li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.important-notices li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.game-container {
    margin: 3rem 0;
    text-align: center;
}

.game-container h2 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.game-frame {
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.game-frame iframe {
    display: block;
    border: none;
    width: 100%;
    height: 600px;
}

.content-section {
    background: rgba(26, 26, 46, 0.6);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 2px solid var(--secondary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 1.5rem;
}

.responsible-gaming h3 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.responsible-gaming ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.responsible-gaming a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.responsible-gaming a:hover {
    color: var(--secondary-color);
}

/* 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: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--secondary-color);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.age-btn.yes:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.age-btn.no {
    background: #666;
    color: white;
}

.age-btn.no:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--primary-color);
        transition: right 0.3s ease;
        padding-top: 4rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .game-frame iframe {
        height: 400px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
