@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    border-bottom: 3px solid #d4af37;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 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: 2.5rem;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 35px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 5rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 1rem;
    position: relative;
}

.notice-box {
    background: linear-gradient(135deg, #2d1810 0%, #3d2415 100%);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.notice-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.notice-box li {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.content-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.game-container {
    background: #0a0a0a;
    border: 3px solid #d4af37;
    border-radius: 10px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.game-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.game-container iframe {
    border: 2px solid #d4af37;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    height: 650px;
    background: #000;
}

.game-container p {
    margin-top: 1.5rem;
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    border-top: 3px solid #d4af37;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    color: #fff;
    border-bottom-color: #d4af37;
}

/* 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: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 4rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid #d4af37;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn.yes {
    background: #d4af37;
    color: #0a0a0a;
}

.age-btn.yes:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.age-btn.no {
    background: transparent;
    color: #d4af37;
}

.age-btn.no:hover {
    background: #d4af37;
    color: #0a0a0a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(to bottom, #1a1a1a, #2d2d2d);
        transition: right 0.3s ease;
        padding: 6rem 2rem;
        border-left: 3px solid #d4af37;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero {
        padding: 3rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .game-container {
        padding: 2rem 1rem;
    }

    .game-container iframe {
        height: 450px;
    }

    .age-modal-content {
        padding: 2.5rem 2rem;
        margin: 1rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .notice-box ul {
        grid-template-columns: 1fr;
    }
}