* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --burgundy: #800020;
    --cream: #fff8e7;
    --dark-burgundy: #4a0012;
    --light-gold: #f4d06f;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to bottom, #fff8e7, #f0e5d0);
    color: #2c1810;
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: var(--burgundy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
}

main {
    padding: 0;
}

.hero-banner {
    background: linear-gradient(135deg, var(--burgundy), var(--dark-burgundy));
    color: var(--cream);
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 4rem;
}

.hero-banner h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-banner p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.elegant-card {
    background: white;
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.elegant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.elegant-card h3 {
    color: var(--burgundy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

.elegant-card p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.notice-section {
    background: var(--burgundy);
    color: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    border: 4px solid var(--gold);
}

.notice-section h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-section ul {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.notice-section li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 1.2rem;
}

.notice-section li:before {
    content: '★ ';
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.game-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--gold);
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
}

.game-section h2 {
    color: var(--burgundy);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.game-section iframe {
    width: 100%;
    height: 700px;
    border: 4px solid var(--burgundy);
    border-radius: 10px;
}

.text-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 6px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-section h2 {
    color: var(--burgundy);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.text-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

footer {
    background: var(--burgundy);
    color: var(--cream);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--light-gold);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: white;
    padding: 4rem;
    border-radius: 15px;
    border: 6px solid var(--gold);
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.age-modal-content h2 {
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #2c1810;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: 3px solid var(--burgundy);
    background: var(--burgundy);
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.age-btn:hover {
    background: var(--dark-burgundy);
    transform: scale(1.05);
}

.age-btn.no {
    background: white;
    color: var(--burgundy);
}

.terms-content {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.terms-content h1 {
    color: var(--burgundy);
    margin-bottom: 2rem;
    font-size: 3rem;
    border-bottom: 4px solid var(--gold);
    padding-bottom: 1rem;
}

.terms-content h2 {
    color: var(--burgundy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.1rem;
}

.terms-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 1rem;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--burgundy);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .game-section iframe {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
