* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-red: #E74C3C;
    --lava-orange: #E67E22;
    --sun-yellow: #F39C12;
    --ember-dark: #2C1810;
    --ash-gray: #34495E;
    --smoke-light: #ECF0F1;
    --coal-black: #1C1C1C;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #2C1810 0%, #1C1C1C 100%);
    color: var(--smoke-light);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
}

.content-wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.gate-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95) 0%, rgba(44, 24, 16, 0.95) 100%);
    backdrop-filter: blur(8px);
}

.gate-box {
    background: linear-gradient(135deg, #2C1810 0%, #1C1C1C 100%);
    margin: 7% auto;
    padding: 42px;
    border-radius: 20px;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.5);
    border: 3px solid var(--flame-red);
}

.flame-icon {
    font-size: 65px;
    margin-bottom: 18px;
    animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.gate-box h2 {
    color: var(--flame-red);
    margin-bottom: 16px;
    font-size: 30px;
}

.gate-box p {
    color: var(--smoke-light);
    margin-bottom: 12px;
    font-size: 15px;
}

.confirm-text {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: var(--sun-yellow) !important;
    margin-top: 18px !important;
}

.gate-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-top: 28px;
}

.enter-btn, .exit-btn {
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Russo One', sans-serif;
}

.enter-btn {
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--lava-orange) 100%);
    color: white;
}

.enter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.5);
}

.exit-btn {
    background: transparent;
    color: var(--smoke-light);
    border: 2px solid var(--ash-gray);
}

.exit-btn:hover {
    background: var(--ash-gray);
}

/* Header */
.site-header {
    background: rgba(28, 28, 28, 0.98);
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--flame-red);
}

.main-navigation {
    max-width: 1150px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--flame-red);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Russo One', sans-serif;
}

.logo-flame {
    font-size: 30px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.toggle-line {
    width: 25px;
    height: 3px;
    background: var(--flame-red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    color: var(--smoke-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flame-red);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--flame-red);
}

/* Hero Zone */
.hero-zone {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #E74C3C 0%, #2C1810 100%);
    overflow: hidden;
}

.heat-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    animation: wave 15s linear infinite;
}

@keyframes wave {
    from { transform: translateY(0); }
    to { transform: translateY(20px); }
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 38px 24px;
}

.hero-heading {
    font-size: 50px;
    color: white;
    margin-bottom: 18px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
}

.ignite-btn {
    display: inline-block;
    padding: 17px 42px;
    background: linear-gradient(135deg, var(--sun-yellow) 0%, var(--lava-orange) 100%);
    color: var(--coal-black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(243, 156, 18, 0.4);
    font-family: 'Russo One', sans-serif;
}

.ignite-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

/* About Section */
.about-section {
    padding: 75px 0;
    background: var(--coal-black);
}

.about-card {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(28, 28, 28, 0.8) 100%);
    padding: 38px;
    border-radius: 18px;
    margin-bottom: 42px;
    border-left: 5px solid var(--flame-red);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.about-card h2 {
    color: var(--flame-red);
    margin-bottom: 18px;
    font-size: 32px;
}

.about-card p {
    color: var(--smoke-light);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.75;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
    gap: 28px;
}

.alert-box {
    background: rgba(28, 28, 28, 0.9);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.alert-box.red-alert { border-color: var(--flame-red); }
.alert-box.orange-alert { border-color: var(--lava-orange); }
.alert-box.yellow-alert { border-color: var(--sun-yellow); }

.alert-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.alert-symbol {
    font-size: 48px;
    margin-bottom: 15px;
}

.alert-box h3 {
    margin-bottom: 14px;
    font-size: 21px;
    color: var(--smoke-light);
}

.alert-box p {
    color: #BDC3C7;
    font-size: 14px;
    line-height: 1.7;
}

/* Featured Section */
.featured-section {
    padding: 75px 0;
    background: linear-gradient(180deg, #2C1810 0%, #1C1C1C 100%);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--flame-red);
}

.game-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 38px;
    align-items: start;
}

.game-display {
    background: rgba(28, 28, 28, 0.9);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--flame-red);
}

.display-frame iframe {
    width: 100%;
    height: 580px;
    border-radius: 12px;
}

.game-sidebar {
    background: rgba(28, 28, 28, 0.9);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.game-sidebar h3 {
    color: var(--lava-orange);
    margin-bottom: 15px;
    font-size: 23px;
}

.game-sidebar p {
    color: #BDC3C7;
    margin-bottom: 18px;
    line-height: 1.7;
}

.game-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.game-features li {
    color: #BDC3C7;
    font-size: 14px;
    padding: 6px 0;
    border-left: 3px solid var(--sun-yellow);
    padding-left: 12px;
}

/* Benefits Section */
.benefits-section {
    padding: 75px 0;
    background: var(--coal-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 38px;
}

.benefit-card {
    background: rgba(28, 28, 28, 0.9);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--flame-red);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: var(--flame-red);
    margin-bottom: 13px;
    font-size: 19px;
}

.benefit-card p {
    color: #BDC3C7;
    font-size: 14px;
}

/* Responsible Section */
.responsible-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--lava-orange) 100%);
    text-align: center;
}

.responsible-section h2 {
    color: white;
    margin-bottom: 18px;
    font-size: 32px;
}

.responsible-section p {
    color: rgba(255, 255, 255, 0.95);
    max-width: 780px;
    margin: 0 auto 16px;
    font-size: 16px;
    line-height: 1.75;
}

/* Play Zone */
.play-zone {
    padding: 60px 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #2C1810 0%, #1C1C1C 100%);
}

.zone-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 14px;
    color: var(--flame-red);
}

.zone-subtitle {
    text-align: center;
    color: var(--smoke-light);
    font-size: 17px;
    margin-bottom: 38px;
}

.main-player {
    background: rgba(28, 28, 28, 0.9);
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 48px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--flame-red);
}

.main-player iframe {
    width: 100%;
    height: 680px;
    border-radius: 12px;
}

.player-guide h2 {
    color: var(--flame-red);
    margin-bottom: 28px;
    font-size: 30px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.guide-card {
    background: rgba(28, 28, 28, 0.9);
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--lava-orange);
}

.guide-card h3 {
    color: var(--lava-orange);
    margin-bottom: 13px;
    font-size: 19px;
}

.guide-card p {
    color: #BDC3C7;
    font-size: 14px;
    line-height: 1.7;
}

/* Policy Zone */
.policy-zone {
    padding: 60px 0;
    min-height: 100vh;
    background: var(--coal-black);
}

.policy-date {
    text-align: center;
    color: #95A5A6;
    font-style: italic;
    margin-bottom: 38px;
    font-size: 14px;
}

.policy-content {
    background: rgba(28, 28, 28, 0.9);
    padding: 48px;
    border-radius: 18px;
    max-width: 880px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.policy-content h2 {
    color: var(--flame-red);
    margin-top: 28px;
    margin-bottom: 15px;
    font-size: 25px;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    color: #BDC3C7;
    margin-bottom: 15px;
    line-height: 1.75;
}

.policy-content ul {
    color: #BDC3C7;
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-note {
    background: rgba(231, 76, 60, 0.1);
    border-left: 5px solid var(--flame-red);
    padding: 20px;
    margin-top: 28px;
    border-radius: 8px;
}

.policy-note p {
    color: var(--smoke-light);
    font-weight: 700;
    margin-bottom: 0;
}

.warning-panel {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(230, 126, 34, 0.15) 100%);
    border: 3px solid var(--flame-red);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 28px;
}

.warning-panel h2 {
    color: var(--flame-red);
    margin-top: 0;
}

.fact-list {
    list-style: none;
    margin: 18px 0;
}

.fact-list li {
    padding: 9px 0;
    font-size: 15px;
    color: var(--smoke-light);
    font-weight: 600;
}

.exit-message {
    margin-top: 18px;
    font-weight: 700;
    color: var(--flame-red);
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: var(--ember-dark);
    padding: 48px 0 18px;
    color: var(--smoke-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 38px;
    margin-bottom: 28px;
}

.footer-section h4 {
    color: var(--lava-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: #95A5A6;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #95A5A6;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--lava-orange);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(149, 165, 166, 0.3);
    color: #95A5A6;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 68px;
        flex-direction: column;
        background: rgba(28, 28, 28, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 28px 0;
        gap: 0;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        margin: 14px 0;
    }

    .hero-heading {
        font-size: 34px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .display-frame iframe {
        height: 400px;
    }

    .main-player iframe {
        height: 480px;
    }

    .gate-box {
        margin: 11% auto;
        padding: 30px 18px;
    }

    .policy-content {
        padding: 30px 18px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 27px;
    }

    .section-title {
        font-size: 27px;
    }

    .zone-title {
        font-size: 32px;
    }
}