* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --solar-orange: #ffa500;
    --bright-yellow: #ffdd00;
    --warm-amber: #ff8c00;
    --light-cream: #fff8e7;
    --soft-peach: #ffe4b5;
    --deep-orange: #ff6347;
    --text-dark: #333333;
    --text-medium: #666666;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: radial-gradient(circle at top center, var(--bright-yellow), var(--solar-orange), var(--warm-amber));
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.8;
    min-height: 100vh;
}

.top-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 5px 25px rgba(255, 165, 0, 0.3);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-graphic {
    width: 50px;
    height: 50px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--solar-orange);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: var(--solar-orange);
    color: white;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-line {
    width: 28px;
    height: 3px;
    background: var(--solar-orange);
    border-radius: 5px;
    transition: all 0.3s;
}

.hero-banner {
    padding: 6rem 4%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 232, 181, 0.9));
    margin: 3rem 4%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
}

.hero-banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    color: var(--warm-amber);
    text-shadow: 2px 2px 4px rgba(255, 165, 0, 0.3);
    line-height: 1.1;
}

.hero-text {
    font-size: 1.5rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.primary-button {
    display: inline-block;
    padding: 1.3rem 4rem;
    background: linear-gradient(90deg, var(--solar-orange), var(--deep-orange));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
    transition: all 0.4s ease;
}

.primary-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.6);
}

.main-section {
    padding: 5rem 4%;
    margin: 3rem 4%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 228, 181, 0.9));
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
}

.section-heading {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--solar-orange);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-box {
    padding: 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
    transition: all 0.4s ease;
    border: 3px solid var(--soft-peach);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.35);
    border-color: var(--solar-orange);
}

.feature-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--warm-amber);
}

.feature-box p {
    color: var(--text-medium);
    font-size: 1.2rem;
}

.game-display {
    width: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
    border: 4px solid var(--solar-orange);
}

.game-display iframe {
    width: 100%;
    height: 780px;
    border: none;
    display: block;
}

.bottom-footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    padding: 3.5rem 4%;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--solar-orange);
}

.legal-page {
    padding: 4rem 4%;
    max-width: 1400px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 228, 181, 0.95));
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.4);
}

.legal-page h2 {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    color: var(--solar-orange);
}

.legal-page h3 {
    font-size: 2.3rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--warm-amber);
}

.legal-page p, .legal-page ul {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.legal-page ul {
    margin-left: 3rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-check.visible {
    display: flex;
}

.check-content {
    background: linear-gradient(135deg, white, var(--light-cream));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--solar-orange);
}

.check-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--solar-orange);
}

.check-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.check-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.check-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-btn.confirm {
    background: linear-gradient(90deg, var(--solar-orange), var(--deep-orange));
    color: white;
}

.check-btn.confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 99, 71, 0.5);
}

.check-btn.deny {
    background: #e0e0e0;
    color: var(--text-dark);
}

.check-btn.deny:hover {
    background: #cccccc;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 231, 0.98));
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: -5px 0 25px rgba(255, 165, 0, 0.3);
        transition: right 0.4s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-banner h1 {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1.3rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .game-display iframe {
        height: 500px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}
