@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Crimson+Text:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-gold: #d4af37;
    --royal-burgundy: #800020;
    --royal-navy: #1a1a2e;
    --royal-cream: #f4f1e8;
    --royal-silver: #c0c0c0;
    --royal-dark: #0f0f1e;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(to bottom, #1a1a2e 0%, #0f0f1e 100%);
    color: var(--royal-cream);
    line-height: 1.8;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border-bottom: 3px solid var(--royal-gold);
    border-top: 3px solid var(--royal-gold);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-gold);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

.nav-toggle {
    display: none;
    background: var(--royal-gold);
    border: 2px solid var(--royal-burgundy);
    color: var(--royal-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

.nav-toggle:hover {
    background: var(--royal-cream);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

nav ul li a {
    font-family: 'Cinzel', serif;
    color: var(--royal-cream);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    background: rgba(128, 0, 32, 0.3);
    border: 2px solid var(--royal-gold);
    border-radius: 0;
    transition: all 0.3s;
    display: inline-block;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: var(--royal-burgundy);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid var(--royal-gold);
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--royal-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--royal-silver);
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.notice-card {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.3) 0%, rgba(26, 26, 46, 0.3) 100%);
    border: 3px solid var(--royal-gold);
    border-radius: 0;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--royal-silver);
    pointer-events: none;
}

.notice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--royal-burgundy);
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--royal-gold);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.notice-card p {
    color: var(--royal-cream);
    font-size: 1.05rem;
}

/* Game Section */
.game-section {
    margin: 5rem 0;
    text-align: center;
}

.game-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 4px;
}

.game-container {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(15, 15, 30, 0.6) 100%);
    border: 3px solid var(--royal-gold);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    margin: 2rem auto;
    max-width: 950px;
    position: relative;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--royal-silver);
    pointer-events: none;
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
}

/* Content Section */
.content-section {
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(15, 15, 30, 0.5) 100%);
    border: 3px solid var(--royal-gold);
    border-radius: 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--royal-cream);
    font-size: 1.1rem;
}

.content-section ul {
    list-style: none;
    margin: 2rem 0;
}

.content-section ul li {
    padding: 1.2rem;
    margin: 1rem 0;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--royal-gold);
    color: var(--royal-cream);
}

.content-section ul li strong {
    color: var(--royal-gold);
    font-weight: 700;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.95) 100%);
    border-top: 3px solid var(--royal-gold);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.8rem 0;
}

.footer-section ul li a {
    color: var(--royal-silver);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--royal-gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--royal-gold);
    color: var(--royal-silver);
    font-size: 0.95rem;
}

/* 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, #1a1a2e 0%, #0f0f1e 100%);
    border: 4px solid var(--royal-gold);
    border-radius: 0;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
    position: relative;
}

.age-modal-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--royal-silver);
}

.age-modal-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--royal-gold);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.age-modal-content p {
    color: var(--royal-cream);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-buttons button {
    font-family: 'Cinzel', serif;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid;
    border-radius: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.btn-yes {
    background: var(--royal-gold);
    color: var(--royal-dark);
    border-color: var(--royal-burgundy);
}

.btn-yes:hover {
    background: var(--royal-cream);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.btn-no {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-no:hover {
    background: #dc2626;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(15, 15, 30, 0.98);
        transition: right 0.3s;
        padding: 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul li a {
        display: block;
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 450px;
    }

    .age-modal-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }

    .content-section {
        padding: 2.5rem;
    }
}