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

:root {
    --fire: #ea580c;
    --crimson: #dc2626;
    --gold: #fbbf24;
    --amber: #f59e0b;
    --warm-bg: #fff7ed;
    --cream: #fffbeb;
    --dark-text: #292524;
    --medium-text: #78716c;
    --border-warm: #fed7aa;
    --shadow-warm: rgba(234, 88, 12, 0.2);
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--warm-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
}

.page-header {
    background: linear-gradient(to right, var(--fire), var(--crimson));
    box-shadow: 0 4px 16px var(--shadow-warm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
}

.brand-text {
    font-family: 'Merriweather', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.primary-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nav-item.active {
    background: var(--gold);
    color: var(--dark-text);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--gold);
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-area {
    background: linear-gradient(135deg, var(--fire), var(--amber));
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 12px 40px var(--shadow-warm);
    border: 4px solid var(--gold);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    color: var(--fire);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.content-heading {
    font-size: 3rem;
    font-weight: 900;
    color: var(--fire);
    text-align: center;
    margin-bottom: 2rem;
}

.alert-cards {
    margin-bottom: 4rem;
}

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

.alert-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px var(--shadow-warm);
    border-left: 8px solid;
}

.fire-theme {
    border-left-color: var(--fire);
}

.gold-theme {
    border-left-color: var(--gold);
}

.crimson-theme {
    border-left-color: var(--crimson);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-emoji {
    font-size: 3rem;
}

.card-header h3 {
    font-size: 1.7rem;
    color: var(--dark-text);
}

.card-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-text);
}

.gameplay-section {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 8px 24px var(--shadow-warm);
    border: 3px solid var(--border-warm);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--medium-text);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.game-frame-wrapper {
    background: #f5f5f4;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border: 4px solid var(--fire);
    box-shadow: 0 8px 24px var(--shadow-warm);
}

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

.game-specs {
    background: linear-gradient(135deg, var(--cream), var(--warm-bg));
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--border-warm);
}

.specs-title {
    font-size: 1.8rem;
    color: var(--fire);
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.spec-box {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--dark-text);
    border-left: 5px solid var(--amber);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.spec-box strong {
    color: var(--fire);
}

.advantages-area {
    margin-bottom: 4rem;
}

.advantages-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px var(--shadow-warm);
    border-top: 5px solid var(--fire);
    transition: all 0.3s ease;
}

.advantage-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px var(--shadow-warm);
}

.adv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.advantage-box h3 {
    font-size: 1.7rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.advantage-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--medium-text);
}

.about-area {
    background: linear-gradient(135deg, white, var(--cream));
    border-radius: 24px;
    padding: 4rem;
    margin-bottom: 4rem;
    border: 4px solid var(--gold);
    box-shadow: 0 12px 40px var(--shadow-warm);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.page-footer {
    background: linear-gradient(to right, var(--crimson), var(--fire));
    color: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 24px var(--shadow-warm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-col p {
    line-height: 1.8;
    font-size: 1.05rem;
}

.support-list {
    list-style: none;
}

.support-list li {
    margin-bottom: 1rem;
}

.support-list a {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-list a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 37, 36, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.age-modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, white, var(--cream));
    border-radius: 24px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 5px solid var(--fire);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(to right, var(--fire), var(--crimson));
    padding: 2.5rem;
    text-align: center;
}

.modal-emoji {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 2.3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 2.5rem;
}

.modal-body > p {
    font-size: 1.2rem;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 2rem;
}

.info-box {
    background: var(--warm-bg);
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 2rem;
}

.info-row {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(to right, var(--fire), var(--amber));
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--shadow-warm);
}

.btn-decline {
    background: var(--medium-text);
    color: white;
}

.btn-decline:hover {
    background: #991b1b;
}

@media (max-width: 768px) {
    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--crimson);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .primary-nav.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .content-heading {
        font-size: 2rem;
    }

    .game-iframe {
        height: 450px;
    }

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

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

    .modal-content {
        margin: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }

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