@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Open+Sans:wght@400;600;700&display=swap');

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

:root {
    --fire-orange: #ff6b35;
    --lava-red: #dc2f02;
    --molten-yellow: #ffb800;
    --deep-black: #0a0908;
    --charcoal: #22211f;
    --light-gray: #f5f3f4;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--deep-black) 100%);
    color: var(--light-gray);
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
}

/* Container */
.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.logo-box {
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-flame {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--molten-yellow), var(--fire-orange), var(--lava-red));
    border-radius: 50% 50% 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: flicker 2s infinite alternate;
}

@keyframes flicker {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 50px rgba(220, 47, 2, 0.8); }
}

.logo-flame span {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(180deg, white, var(--light-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title {
    font-size: 3rem;
    background: linear-gradient(90deg, var(--molten-yellow), var(--fire-orange), var(--lava-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 300;
}

/* Navigation */
nav {
    background: linear-gradient(90deg, var(--lava-red), var(--fire-orange), var(--lava-red));
    border-radius: 50px;
    padding: 0.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: linear-gradient(135deg, var(--fire-orange), var(--lava-red));
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    margin: 1rem auto;
    font-size: 1rem;
}

/* Content Sections */
.content-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(220, 47, 2, 0.1));
    border: 2px solid var(--fire-orange);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-block h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--molten-yellow), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 1.8rem;
    color: var(--fire-orange);
    margin-bottom: 1rem;
}

.content-block p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-block ul {
    text-align: left;
    max-width: 700px;
    margin: 1rem auto;
    list-style-position: inside;
}

.content-block ul li {
    color: #ccc;
    margin-bottom: 0.75rem;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, var(--lava-red), var(--fire-orange));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(220, 47, 2, 0.4);
}

.alert-box h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert-box p {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Game Container */
.game-zone {
    background: var(--charcoal);
    border: 3px solid var(--fire-orange);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.game-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--molten-yellow), var(--fire-orange), var(--lava-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.game-frame {
    text-align: center;
    background: var(--deep-black);
    padding: 1.5rem;
    border-radius: 15px;
}

.game-frame iframe {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: 2px solid var(--fire-orange);
    border-radius: 10px;
}

/* Footer */
footer {
    background: linear-gradient(90deg, var(--lava-red), var(--fire-orange), var(--lava-red));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

footer h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-resources a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-resources a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Age Modal */
.age-verify {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 9, 8, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-verify.visible {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, var(--charcoal), var(--deep-black));
    border: 4px solid var(--fire-orange);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(220, 47, 2, 0.5);
}

.age-box h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--molten-yellow), var(--fire-orange), var(--lava-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.age-box p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--fire-orange), var(--lava-red));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid var(--fire-orange);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .wrapper {
        padding: 1rem;
    }

    .site-title {
        font-size: 2rem;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    nav ul li a {
        display: block;
        width: 100%;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .content-block {
        padding: 1.5rem;
    }

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

    .game-frame iframe {
        height: 400px;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .footer-resources {
        flex-direction: column;
        gap: 1rem;
    }
}
