@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

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

:root {
    --flame-red: #DC2626;
    --ember-orange: #F97316;
    --sun-yellow: #FCD34D;
    --coal-black: #1C1917;
    --ash-gray: #292524;
    --smoke: #A8A29E;
    --parchment: #FEF3C7;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--coal-black);
    color: var(--parchment);
    line-height: 1.8;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.98) 0%, rgba(28, 25, 23, 0.9) 100%);
    z-index: 1000;
    border-bottom: 2px solid var(--flame-red);
}

.navbar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--sun-yellow) 0%, var(--ember-orange) 50%, var(--flame-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--parchment);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--ember-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn div {
    width: 26px;
    height: 3px;
    background: var(--ember-orange);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.page-body {
    padding-top: 80px;
}

.hero-area {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 2rem;
    gap: 4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--parchment);
}

.hero-text h1 .highlight {
    color: var(--ember-orange);
}

.hero-text .intro {
    font-size: 1.25rem;
    color: var(--smoke);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--ember-orange) 100%);
    color: var(--coal-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.hero-visual {
    background: var(--ash-gray);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.hero-game {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.warnings-strip {
    background: linear-gradient(90deg, var(--flame-red) 0%, var(--ember-orange) 50%, var(--sun-yellow) 100%);
    padding: 1.5rem 2rem;
}

.warnings-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.warning-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--coal-black);
    font-weight: 700;
    font-size: 1rem;
}

.warning-tag .symbol {
    font-size: 1.4rem;
}

.content-section {
    padding: 5rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--ember-orange);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-tile {
    background: linear-gradient(145deg, var(--ash-gray) 0%, rgba(41, 37, 36, 0.7) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-bottom: 3px solid var(--flame-red);
    transition: transform 0.3s;
}

.feature-tile:hover {
    transform: translateY(-8px);
}

.feature-tile h3 {
    font-family: 'Cinzel', serif;
    color: var(--sun-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-tile p {
    color: var(--smoke);
    font-size: 0.95rem;
}

.about-area {
    background: linear-gradient(180deg, var(--ash-gray) 0%, var(--coal-black) 100%);
    padding: 5rem 2rem;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--ember-orange);
    margin-bottom: 2rem;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-box {
    background: rgba(28, 25, 23, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--ember-orange);
}

.about-box h3 {
    color: var(--sun-yellow);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.about-box p {
    color: var(--smoke);
}

.site-footer {
    background: #0F0D0C;
    padding: 3rem 2rem;
    border-top: 2px solid var(--flame-red);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-menu a {
    color: var(--smoke);
    text-decoration: none;
    transition: color 0.3s;
}

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

.support-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.support-section p {
    color: var(--smoke);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.support-links a {
    color: var(--sun-yellow);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.85rem;
}

.copyright-text {
    margin-top: 2rem;
    color: rgba(168, 162, 158, 0.6);
    font-size: 0.85rem;
}

.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 13, 12, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.verification-overlay.closed {
    display: none;
}

.verification-box {
    background: linear-gradient(145deg, var(--ash-gray) 0%, var(--coal-black) 100%);
    border: 2px solid var(--ember-orange);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    margin: 1rem;
}

.verification-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--ember-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.verification-box p {
    color: var(--smoke);
    margin-bottom: 2rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.verify-btn.accept {
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--ember-orange) 100%);
    color: var(--coal-black);
}

.verify-btn.decline {
    background: transparent;
    border: 2px solid var(--smoke);
    color: var(--parchment);
}

.verify-btn:hover {
    transform: scale(1.05);
}

.text-page-hero {
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--ember-orange) 100%);
    padding: 7rem 2rem 4rem;
    text-align: center;
}

.text-page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--coal-black);
}

.text-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-block {
    background: var(--ash-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--ember-orange);
}

.text-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--sun-yellow);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.text-block p {
    color: var(--smoke);
    margin-bottom: 1rem;
}

.text-block ul {
    margin-left: 1.5rem;
    color: var(--smoke);
}

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

.game-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.full-game-window {
    background: var(--ash-gray);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.full-game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
    background: #000;
}

@media (max-width: 1024px) {
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-area {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: rgba(28, 25, 23, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-links.visible {
        transform: translateX(0);
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-game {
        height: 350px;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

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

    .warnings-content {
        flex-direction: column;
        align-items: center;
    }

    .verify-btns {
        flex-direction: column;
    }

    .full-game-frame {
        height: 380px;
    }
}
