@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f4e4a6;
    --burgundy: #800020;
    --burgundy-dark: #4a0012;
    --cream: #f5f5dc;
    --dark: #1a0f0f;
    --darker: #0d0606;
    --text: #e8dcc8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #2a1515 100%);
    color: var(--text);
    line-height: 1.8;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(13, 6, 6, 0.95) 0%, rgba(26, 15, 15, 0.9) 100%);
    border-bottom: 3px solid var(--gold);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo::before {
    content: "◈ ";
}

.logo::after {
    content: " ◈";
}

.logo:hover {
    color: var(--gold-light);
    transform: scale(1.02);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 80%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 35px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--cream);
    line-height: 2;
    font-style: italic;
}

/* Notice Banner */
.notice-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(90deg, rgba(128, 0, 32, 0.3) 0%, rgba(212, 175, 55, 0.2) 50%, rgba(128, 0, 32, 0.3) 100%);
    border: 2px solid var(--gold);
    border-left: none;
    border-right: none;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.notice-item {
    flex: 1;
    padding: 1rem;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.notice-item:last-child {
    border-right: none;
}

.notice-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Elegant Card */
.elegant-card {
    background: linear-gradient(135deg, rgba(26, 15, 15, 0.8) 0%, rgba(13, 6, 6, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.elegant-card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    pointer-events: none;
}

.elegant-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
}

.elegant-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 1px;
}

.elegant-card p {
    margin-bottom: 1.5rem;
    line-height: 2;
    font-size: 1.1rem;
}

.elegant-card ul {
    list-style: none;
    padding-left: 0;
}

.elegant-card li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.elegant-card li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Game Showcase */
.game-showcase {
    margin: 4rem 0;
    text-align: center;
}

.game-frame {
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 2.5rem;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
}

.game-frame::before,
.game-frame::after {
    content: "◈";
    position: absolute;
    font-size: 2rem;
    color: var(--gold);
}

.game-frame::before {
    top: 10px;
    left: 10px;
}

.game-frame::after {
    bottom: 10px;
    right: 10px;
}

.game-frame iframe {
    border: none;
    border-radius: 4px;
    max-width: 100%;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 3rem 0;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(13, 6, 6, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-top: 3px solid var(--gold);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 0.7rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--cream);
    font-size: 1rem;
}

/* Age Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    border: 3px solid var(--gold);
    border-radius: 8px;
    padding: 3.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    position: relative;
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    position: relative;
}

.modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    position: relative;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    position: relative;
}

.btn {
    font-family: 'Playfair Display', serif;
    padding: 1.2rem 3.5rem;
    border: 2px solid var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-yes {
    background: var(--gold);
    color: var(--darker);
}

.btn-yes:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-no {
    background: transparent;
    color: var(--gold);
}

.btn-no:hover {
    background: rgba(212, 175, 55, 0.1);
}

.highlight {
    color: var(--gold-light);
    font-weight: 600;
    font-style: italic;
}

/* Mobile */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: rgba(13, 6, 6, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding-top: 5rem;
        border-left: 3px solid var(--gold);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    nav a::after {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .notice-banner {
        flex-direction: column;
    }

    .notice-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        width: 100%;
    }

    .notice-item:last-child {
        border-bottom: none;
    }

    .elegant-card {
        padding: 2rem 1.5rem;
    }

    .elegant-card h2 {
        font-size: 2.2rem;
    }

    .modal-content {
        margin: 1rem;
        padding: 2.5rem 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .game-frame iframe {
        width: 100%;
        height: auto;
    }
}
