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

:root {
    --desert-gold: #D4AF37;
    --royal-purple: #4A148C;
    --sand-beige: #F4E4C1;
    --deep-brown: #3E2723;
    --pearl-white: #FFF9E6;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(180deg, #FFF9E6 0%, #F4E4C1 100%);
    color: var(--deep-brown);
    line-height: 1.75;
    min-height: 100vh;
}

.top-navigation {
    background: var(--royal-purple);
    padding: 1.8rem 2.5rem;
    box-shadow: 0 4px 20px rgba(74, 20, 140, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--desert-gold);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.burger-menu {
    display: none;
    background: var(--desert-gold);
    border: none;
    padding: 0.6rem;
    cursor: pointer;
    border-radius: 6px;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--royal-purple);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.nav-menu a {
    color: var(--pearl-white);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}

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

.content-area {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
}

.welcome-section {
    text-align: center;
    padding: 4.5rem 3rem;
    background: white;
    border: 3px solid var(--desert-gold);
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    position: relative;
}

.welcome-section::before,
.welcome-section::after {
    content: '✦';
    position: absolute;
    color: var(--desert-gold);
    font-size: 2rem;
}

.welcome-section::before {
    top: 20px;
    left: 20px;
}

.welcome-section::after {
    bottom: 20px;
    right: 20px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--royal-purple);
    margin-bottom: 1.8rem;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--royal-purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--desert-gold);
    margin-bottom: 1.2rem;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #5D4037;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.benefit-box {
    background: white;
    padding: 3rem;
    border: 2px solid var(--desert-gold);
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--royal-purple);
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.benefit-box p {
    color: #5D4037;
    line-height: 1.9;
}

.game-area {
    background: white;
    padding: 4rem 3rem;
    border: 3px solid var(--desert-gold);
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.game-viewer {
    width: 100%;
    max-width: 900px;
    height: 750px;
    border: 4px solid var(--royal-purple);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(74, 20, 140, 0.2);
    display: block;
    margin: 0 auto;
    background: #000;
}

.info-section {
    background: white;
    padding: 3.5rem;
    border: 2px solid var(--desert-gold);
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.info-section p {
    margin-bottom: 1.8rem;
    color: #5D4037;
    font-size: 1.1rem;
}

.info-section ul {
    margin: 1.8rem 0 1.8rem 2.5rem;
    color: #5D4037;
}

.info-section li {
    margin-bottom: 1.2rem;
}

.bottom-footer {
    background: var(--royal-purple);
    color: var(--pearl-white);
    padding: 4rem 2.5rem;
    margin-top: 5rem;
    text-align: center;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    color: var(--desert-gold);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.footer-links a {
    color: var(--desert-gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pearl-white);
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 39, 35, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.show {
    display: flex;
}

.age-panel {
    background: var(--pearl-white);
    padding: 4rem 3.5rem;
    border: 4px solid var(--desert-gold);
    border-radius: 15px;
    max-width: 580px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.age-panel::before,
.age-panel::after {
    content: '✦';
    position: absolute;
    color: var(--desert-gold);
    font-size: 2.5rem;
}

.age-panel::before {
    top: 15px;
    left: 15px;
}

.age-panel::after {
    bottom: 15px;
    right: 15px;
}

.age-panel h2 {
    color: var(--royal-purple);
    margin-bottom: 2rem;
}

.age-panel p {
    color: #5D4037;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

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

.age-btn {
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.age-confirm {
    background: var(--desert-gold);
    color: var(--royal-purple);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.age-decline {
    background: transparent;
    border: 2px solid var(--royal-purple);
    color: var(--royal-purple);
}

.age-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--royal-purple);
        transition: right 0.3s;
        padding-top: 5rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

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

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

    .nav-menu a {
        display: block;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .top-navigation {
        padding: 1.5rem;
    }

    .content-area {
        padding: 2.5rem 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .welcome-section {
        padding: 3rem 2rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .game-viewer {
        height: 550px;
    }

    .info-section {
        padding: 2.5rem 2rem;
    }

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

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

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

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