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

:root {
    --warm-orange: #FF6B35;
    --deep-burgundy: #8B1E3F;
    --soft-cream: #FFF8F0;
    --charcoal: #2D2D2A;
    --accent-gold: #C49A6C;
}

body {
    font-family: 'Lora', serif;
    background: var(--soft-cream);
    color: var(--charcoal);
    line-height: 1.8;
    min-height: 100vh;
}

.site-header {
    background: white;
    padding: 2rem 3rem;
    box-shadow: 0 2px 15px rgba(139, 30, 63, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--deep-burgundy);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--warm-orange);
    border-radius: 2px;
}

.menu-icon {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--deep-burgundy);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.primary-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.primary-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-orange);
    transition: width 0.3s;
}

.primary-nav a:hover {
    color: var(--warm-orange);
}

.primary-nav a:hover::before {
    width: 100%;
}

.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
}

.intro-banner {
    background: linear-gradient(135deg, var(--deep-burgundy), var(--warm-orange));
    color: white;
    padding: 4rem 3rem;
    border-radius: 25px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(139, 30, 63, 0.2);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--deep-burgundy);
    margin-bottom: 1.5rem;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.intro-description {
    font-size: 1.2rem;
    line-height: 2;
    max-width: 950px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.highlight-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 6px solid var(--warm-orange);
}

.highlight-card:nth-child(2) {
    border-top-color: var(--deep-burgundy);
}

.highlight-card:nth-child(3) {
    border-top-color: var(--accent-gold);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-card p {
    color: #555;
    line-height: 1.9;
}

.game-display {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    margin: 4rem 0;
    box-shadow: 0 8px 30px rgba(139, 30, 63, 0.12);
}

.game-display h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.game-window {
    width: 100%;
    max-width: 950px;
    height: 700px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    display: block;
    margin: 0 auto;
    background: #f5f5f5;
}

.text-block {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-left: 6px solid var(--warm-orange);
}

.text-block p {
    margin-bottom: 1.8rem;
    color: #555;
    font-size: 1.08rem;
}

.text-block ul {
    margin: 1.8rem 0 1.8rem 2.5rem;
    color: #555;
}

.text-block li {
    margin-bottom: 1.2rem;
}

.site-footer {
    background: var(--charcoal);
    color: var(--soft-cream);
    padding: 4rem 3rem;
    margin-top: 5rem;
    text-align: center;
}

.footer-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--warm-orange);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--accent-gold);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--warm-orange);
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 42, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-dialog {
    background: white;
    padding: 4rem 3.5rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.age-dialog h2 {
    color: var(--deep-burgundy);
    margin-bottom: 2rem;
}

.age-dialog p {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.age-choices {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-option {
    padding: 1.2rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.age-yes {
    background: var(--warm-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.age-no {
    background: #E0E0E0;
    color: var(--charcoal);
}

.age-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .menu-icon {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        transition: right 0.3s;
        padding-top: 5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .primary-nav.visible {
        right: 0;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    .primary-nav a {
        display: block;
        padding: 1.2rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .site-header {
        padding: 1.5rem;
    }

    .main-wrapper {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .intro-banner {
        padding: 3rem 2rem;
    }

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

    .game-window {
        height: 500px;
    }

    .text-block {
        padding: 2.5rem 2rem;
    }

    .site-footer {
        padding: 3rem 1.5rem;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-dialog {
        margin: 1.5rem;
        padding: 3rem 2.5rem;
    }

    .age-choices {
        flex-direction: column;
    }
}
