* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fire-red: #D32F2F;
    --dark-red: #B71C1C;
    --flame-orange: #FF5722;
    --hot-orange: #FF6F00;
    --dark-bg: #1A1A1A;
    --darker-bg: #0F0F0F;
    --gray: #424242;
    --light-gray: #E0E0E0;
    --white: #FFFFFF;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--light-gray);
    line-height: 1.6;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.main-header {
    background: var(--darker-bg);
    border-bottom: 3px solid var(--fire-red);
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--flame-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Exo', sans-serif;
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--flame-orange);
    border: 2px solid var(--flame-orange);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: var(--flame-orange);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(211, 47, 47, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-family: 'Exo', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    font-family: 'Exo', sans-serif;
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--flame-orange) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-left h2 {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.intro-right {
    text-align: center;
}

.fire-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
}

/* Critical Info */
.critical-info {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    color: var(--flame-orange);
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-col {
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-col.red {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(183, 28, 28, 0.2) 100%);
    border-color: var(--fire-red);
}

.info-col.orange {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2) 0%, rgba(255, 111, 0, 0.2) 100%);
    border-color: var(--flame-orange);
}

.info-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.info-symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-col h3 {
    font-family: 'Exo', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Game Showcase */
.game-showcase {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.game-description {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.game-box {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid var(--fire-red);
    box-shadow: 0 4px 25px rgba(211, 47, 47, 0.3);
    margin-bottom: 2rem;
}

.game-player {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
}

.game-guide {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--flame-orange);
}

.game-guide h3 {
    font-family: 'Exo', sans-serif;
    color: var(--flame-orange);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: var(--flame-orange);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    transform: translateY(-3px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-num {
    font-family: 'Exo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--flame-orange);
}

.feature-box h3 {
    font-family: 'Exo', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
}

/* Metrics Section */
.metrics-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-family: 'Exo', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--fire-red);
    display: block;
}

.metric-label {
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--light-gray);
    margin-top: 0.5rem;
}

/* Responsible Section */
.responsible-section {
    padding: 4rem 0;
}

.responsible-box {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--fire-red);
}

.responsible-box > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.responsible-point {
    background: var(--darker-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--flame-orange);
}

.responsible-point strong {
    color: var(--flame-orange);
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-bg) 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--fire-red);
}

.play-header h1 {
    font-family: 'Exo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.play-area {
    padding: 4rem 0;
}

.play-game-box {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid var(--fire-red);
    box-shadow: 0 4px 25px rgba(211, 47, 47, 0.3);
    margin-bottom: 3rem;
}

.play-game-player {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.play-instructions h2 {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    color: var(--flame-orange);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instruction-item {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 87, 34, 0.3);
}

.instruction-item h3 {
    font-family: 'Exo', sans-serif;
    color: var(--flame-orange);
    margin-bottom: 1rem;
}

/* Legal Section */
.legal-section {
    padding: 4rem 0;
}

.legal-section h1 {
    font-family: 'Exo', sans-serif;
    font-size: 3rem;
    color: var(--flame-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.doc-date {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.legal-content {
    background: var(--gray);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid var(--fire-red);
}

.legal-content h2 {
    font-family: 'Exo', sans-serif;
    font-size: 1.8rem;
    color: var(--flame-orange);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin: 0.5rem 0;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    border-top: 3px solid var(--fire-red);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Exo', sans-serif;
    color: var(--flame-orange);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin: 0.75rem 0;
}

.footer-list a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--flame-orange);
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    font-size: 0.9rem;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-modal.hidden {
    display: none;
}

.age-box {
    background: var(--gray);
    max-width: 550px;
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--fire-red);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.5);
}

.age-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.age-header h2 {
    font-family: 'Exo', sans-serif;
    font-size: 2rem;
    color: var(--flame-orange);
    letter-spacing: 3px;
}

.age-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-question {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    font-family: 'Exo', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: linear-gradient(135deg, var(--fire-red) 0%, var(--flame-orange) 100%);
    color: var(--white);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.5);
}

.btn-reject {
    background: var(--dark-bg);
    color: var(--light-gray);
    border: 2px solid var(--gray);
}

.btn-reject:hover {
    background: var(--darker-bg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        border-bottom: 3px solid var(--fire-red);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border: none;
        border-bottom: 1px solid var(--gray);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .game-player {
        height: 400px;
    }

    .play-game-player {
        height: 500px;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .game-player {
        height: 300px;
    }

    .play-game-player {
        height: 400px;
    }
}
