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

:root {
    --fire-red: #dc2626;
    --fire-orange: #ea580c;
    --fire-yellow: #facc15;
    --emergency-blue: #2563eb;
    --smoke-gray: #374151;
    --ash-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --black: #111827;
    --success: #059669;
    --warning: #d97706;
    --error: #dc2626;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: linear-gradient(135deg, var(--light-gray) 0%, #e5e7eb 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--fire-red), var(--emergency-blue));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.age-gate-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.fire-badge {
    font-size: 2em;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 10px;
    border-radius: 50%;
    color: var(--white);
    line-height: 1;
}

.age-gate-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.title-fire {
    color: var(--fire-red);
}

.title-main {
    color: var(--emergency-blue);
}

.age-gate-message {
    margin: 30px 0;
}

.age-gate-text {
    font-size: 1.1em;
    color: var(--smoke-gray);
    margin-bottom: 10px;
}

.age-gate-subtext {
    color: var(--ash-gray);
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.age-gate-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1em;
}

.age-gate-yes {
    background: var(--fire-red);
    color: var(--white);
}

.age-gate-yes:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.age-gate-no {
    background: var(--ash-gray);
    color: var(--white);
}

.age-gate-no:hover {
    background: var(--smoke-gray);
}

.age-gate-disclaimer {
    font-size: 0.9em;
    color: var(--ash-gray);
    margin-top: 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--fire-red);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--black);
}

.brand-icon {
    font-size: 1.8em;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 8px;
    border-radius: 50%;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: var(--emergency-blue);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--smoke-gray);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--fire-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--fire-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4em;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--smoke-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-icon {
    font-size: 1.2em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    color: var(--emergency-blue);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    margin: 0 auto;
    border-radius: 2px;
}

/* Info Sections */
.info-sections {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--fire-red);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 1.5em;
    background: var(--emergency-blue);
    padding: 8px;
    border-radius: 50%;
    line-height: 1;
}

.info-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    color: var(--emergency-blue);
}

.info-text {
    color: var(--smoke-gray);
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--fire-red);
}

.about-text {
    font-size: 1.1em;
    color: var(--smoke-gray);
    line-height: 1.8;
    text-align: center;
}

/* Features Section */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--fire-red);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    line-height: 1;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    color: var(--emergency-blue);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--smoke-gray);
    line-height: 1.7;
}

/* Game Section */
.why-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 50px;
    align-items: center;
}

.why-text-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--fire-red);
}

.why-text {
    font-size: 1.1em;
    color: var(--smoke-gray);
    line-height: 1.8;
}

.game-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.game-header {
    background: linear-gradient(135deg, var(--emergency-blue), var(--fire-red));
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-status {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-title {
    color: var(--white);
    font-weight: 600;
}

.play-ground-area {
    padding: 20px;
}

/* About Us Section */
.about-us-section {
    background: var(--white);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.image-frame img {
    width: 80%;
    height: auto;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(37, 99, 235, 0.1));
}

.content-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.about-us-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6em;
    color: var(--emergency-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-icon {
    font-size: 1.2em;
}

.about-us-text {
    color: var(--smoke-gray);
    line-height: 1.8;
    font-size: 1.05em;
}

/* Footer */
.footer {
    background: var(--smoke-gray);
    color: var(--white);
    position: relative;
}

.footer-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow), var(--emergency-blue));
}

.footer-content {
    padding: 50px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ash-gray);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand .brand-icon {
    font-size: 2em;
    background: linear-gradient(135deg, var(--fire-red), var(--fire-orange));
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.footer-brand .brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--fire-orange);
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-gray);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--ash-gray);
}

.footer-copyright {
    color: var(--light-gray);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.badge:hover img {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .section-title {
        font-size: 2em;
    }

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

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

    .why-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-gate-container {
        margin: 20px;
        padding: 30px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hidden class for age gate */
.hidden {
    display: none !important;
}


        
.content {
    padding: 40px 10%;
   
}
.content-block {}

.content-block h2 {
    color: #dc540b;
    font-size: 2rem;
}

.content-block p,
ul {
    color: rgb(185, 135, 49);
    font-size: 1.2rem;
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}