@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-red: #ef4444;
    --flame-orange: #f97316;
    --flame-yellow: #fbbf24;
    --deep-red: #991b1b;
    --dark-bg: #1a0505;
    --darker-bg: #0a0202;
    --light-text: #fef2f2;
    --muted-text: #fecaca;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: radial-gradient(circle at top, #1a0505, #0a0202);
    background-attachment: fixed;
    color: var(--light-text);
    min-height: 100vh;
    line-height: 1.7;
}

/* Header and Navigation */
.main-header {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.95), rgba(26, 5, 5, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--flame-orange);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.branding {
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-image {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--flame-yellow), var(--flame-orange), var(--flame-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.navigation {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    display: block;
    padding: 0.8rem 1.8rem;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--flame-yellow), var(--flame-orange));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--flame-yellow);
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: var(--flame-orange);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    margin: 0 auto;
}

.nav-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-icon span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

/* Container */
.page-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--flame-red), var(--flame-orange), var(--flame-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(239, 68, 68, 0.8);
    }
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--muted-text);
    font-weight: 300;
}

/* Warning Cards */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.warning-card {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.4), rgba(26, 5, 5, 0.6));
    border: 3px solid var(--flame-orange);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.warning-card:hover::before {
    left: 100%;
}

.warning-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 50px rgba(239, 68, 68, 0.5);
    border-color: var(--flame-yellow);
}

.warning-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

.warning-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    color: var(--flame-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-card p {
    color: var(--muted-text);
    line-height: 1.6;
}

/* Content Block */
.content-block {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.3), rgba(10, 2, 2, 0.5));
    border: 2px solid rgba(249, 115, 22, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.content-block h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    color: var(--flame-orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 3px solid var(--flame-orange);
    padding-bottom: 0.75rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-block ul,
.content-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    margin-bottom: 0.8rem;
    color: var(--light-text);
    line-height: 1.7;
}

.content-block strong {
    color: var(--flame-yellow);
    font-weight: 700;
}

/* Game Area */
.game-area {
    background: radial-gradient(circle, rgba(153, 27, 27, 0.5), rgba(10, 2, 2, 0.8));
    border: 4px solid var(--flame-red);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.4);
}

.game-area h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    color: var(--flame-yellow);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.game-embed {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    display: block;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(153, 27, 27, 0.98), rgba(10, 2, 2, 0.98));
    border-top: 4px solid var(--flame-orange);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    color: var(--flame-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-resources a {
    color: var(--light-text);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--flame-orange);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-resources a:hover {
    background: var(--flame-orange);
    color: var(--darker-bg);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.footer-text {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--deep-red), var(--dark-bg));
    border: 5px solid var(--flame-orange);
    border-radius: 25px;
    padding: 3.5rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.8);
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-gate-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
}

.age-gate-box h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    color: var(--flame-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.age-gate-box p {
    color: var(--muted-text);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-accept {
    background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
    color: white;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.btn-accept:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.7);
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: var(--flame-red);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .navigation {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navigation.open {
        max-height: 500px;
        margin-top: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .warning-grid {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 2rem;
    }

    .game-embed {
        height: 450px;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .footer-resources {
        flex-direction: column;
        gap: 1rem;
    }
}
