@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --burgundy: #722f37;
    --cream: #faf8f5;
    --charcoal: #1a1a1a;
    --brown: #3d2914;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.8;
}

.wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    background: var(--charcoal);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, var(--brown) 0%, var(--charcoal) 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner p {
    font-size: 1.3rem;
    color: var(--gold-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.elegant-btn {
    display: inline-block;
    padding: 18px 60px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s;
}

.elegant-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* Cards Section */
.card-row {
    display: flex;
    gap: 30px;
    padding: 80px 0;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--gold);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    font-size: 1rem;
}

/* Game Area */
.game-zone {
    background: var(--charcoal);
    padding: 100px 0;
}

.game-zone h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
}

.game-frame {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--brown);
    padding: 20px;
    border: 4px solid var(--gold);
}

.game-frame iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* About Section */
.about-block {
    padding: 100px 0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.about-visual {
    flex: 0 0 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--gold) 0%, var(--burgundy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 70px 0 40px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-col a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212,175,55,0.3);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-box {
    background: var(--charcoal);
    border: 3px solid var(--gold);
    padding: 60px 50px;
    text-align: center;
    max-width: 480px;
}

.age-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.age-box p {
    color: var(--cream);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-actions button {
    padding: 14px 40px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: 2px solid var(--gold);
    transition: all 0.3s;
}

.btn-confirm {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-deny {
    background: transparent;
    color: var(--gold);
}

.btn-confirm:hover {
    background: var(--gold-light);
}

.btn-deny:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
}

.hidden {
    display: none !important;
}

/* Page Styles */
.page-banner {
    background: linear-gradient(135deg, var(--brown) 0%, var(--charcoal) 100%);
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--gold);
}

.content-section {
    padding: 80px 0;
    background: var(--cream);
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    color: var(--burgundy);
    margin: 45px 0 20px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 18px;
}

.content-section ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        padding: 100px 40px;
        transition: right 0.4s;
        border-left: 2px solid var(--gold);
    }

    .main-nav.open {
        right: 0;
    }

    .about-block {
        flex-direction: column;
    }

    .about-visual {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .banner h1 {
        font-size: 2.4rem;
    }
}
