@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-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f5e6c8;
    --deep-blue: #1a1f3a;
    --navy: #0f1320;
    --accent: #ff6b35;
    --text-light: #f8f9fa;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
}

.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(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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.15), rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--light-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.notice-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(212, 175, 55, 0.2));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
}

.notice-box h3 {
    color: var(--accent);
    margin-top: 0;
}

.notice-list {
    list-style: none;
    padding-left: 0;
}

.notice-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.notice-list li::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--primary-gold);
}

.game-container iframe {
    width: 100%;
    max-width: 1000px;
    height: 650px;
    border: none;
    border-radius: 10px;
}

footer {
    background: rgba(15, 19, 32, 0.95);
    border-top: 2px solid var(--primary-gold);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.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(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--deep-blue), var(--navy));
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--navy);
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 31, 58, 0.98);
        transition: right 0.3s ease;
        padding: 5rem 2rem;
        border-left: 2px solid var(--primary-gold);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
