@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941C;
    --light-gold: #FFE5A5;
    --cream: #FFF8E7;
    --ivory: #FFFFF0;
    --charcoal: #2C2C2C;
    --off-white: #FAF9F6;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #FAF9F6 0%, #FFF8E7 100%);
    color: var(--charcoal);
    line-height: 1.9;
    min-height: 100vh;
}

/* Decorative Elements */
.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem 0;
}

/* Header Bar */
.header-bar {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-branding img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.site-branding h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav li a {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Hamburger Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 35px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    transition: 0.3s;
}

/* Main Container */
.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
}

/* Hero Banner */
.hero-banner {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 231, 0.9) 100%);
    border-radius: 30px;
    margin-bottom: 4rem;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.5rem;
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Asymmetric Content Layout */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.content-main {
    background: rgba(255, 255, 255, 0.8);
    padding: 3.5rem;
    border-radius: 25px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark-gold);
    margin-bottom: 2rem;
    font-weight: 800;
    font-style: italic;
}

.content-main p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

.content-main strong {
    color: var(--gold);
    font-weight: 700;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 229, 165, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: transform 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.sidebar-card p {
    color: var(--charcoal);
    font-size: 1.05rem;
}

/* Full Width Section */
.full-section {
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    border-top: 5px solid var(--gold);
    border-bottom: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.full-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-gold);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
    font-style: italic;
}

.full-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

/* Game Showcase */
.game-display {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    padding: 5rem 4rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem 0;
    border: 5px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.game-display h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
}

.game-frame-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 20px;
    display: inline-block;
    border: 3px solid var(--light-gold);
}

.game-frame-wrapper iframe {
    border: none;
    border-radius: 15px;
    width: 100%;
    max-width: 900px;
    height: 680px;
    box-shadow: 0 15px 70px rgba(212, 175, 55, 0.5);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
    padding: 4rem 3rem;
    margin-top: 5rem;
    border-top: 5px solid var(--gold);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.responsible-section {
    margin-top: 3rem;
}

.responsible-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 800;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--dark-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 248, 231, 0.5);
}

.footer-links a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.show {
    display: flex;
}

.age-modal-inner {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
    padding: 5rem 4.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 650px;
    border: 6px solid var(--gold);
    box-shadow: 0 25px 100px rgba(212, 175, 55, 0.6);
}

.age-modal-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
}

.age-modal-inner p {
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.age-button-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.age-btn-accept {
    background: var(--gold);
    color: white;
}

.age-btn-accept:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.age-btn-reject {
    background: #8B0000;
    color: white;
}

.age-btn-reject:hover {
    background: #660000;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner h1 {
        font-size: 3rem;
    }

    .site-branding h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .main-nav {
        position: fixed;
        top: 140px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        border-bottom: 4px solid var(--gold);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.open {
        left: 0;
    }

    .main-nav li {
        width: 100%;
        padding: 1.5rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-banner {
        padding: 3rem 2rem;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .game-frame-wrapper iframe {
        height: 450px;
    }

    .age-modal-inner {
        margin: 1.5rem;
        padding: 3rem 2rem;
    }

    .age-button-group {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }

    .content-main,
    .full-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1.5rem;
    }

    .game-display {
        padding: 2.5rem 1.5rem;
    }

    .game-frame-wrapper iframe {
        height: 350px;
    }
}
