@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Exo+2:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-red: #ff3c00;
    --magma-orange: #ff6b00;
    --lava-yellow: #ffa500;
    --dark-bg: #1a0000;
    --darker-bg: #0d0000;
    --text-light: #fff5e6;
    --text-muted: #ffcca3;
    --border-glow: #ff6b00;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(180deg, var(--darker-bg) 0%, #2a0a00 50%, var(--dark-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: linear-gradient(90deg, rgba(255, 60, 0, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
    border-bottom: 3px solid var(--flame-red);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--flame-red) 0%, var(--lava-yellow) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 0, 0.8); }
}

.logo-container h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--flame-red), var(--lava-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    background: linear-gradient(90deg, var(--flame-red), var(--magma-orange));
    box-shadow: 0 0 15px rgba(255, 60, 0, 0.6);
}

.hamburger {
    display: none;
    background: var(--flame-red);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border: 2px solid var(--flame-red);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-banner h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, var(--flame-red), var(--lava-yellow), var(--flame-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-banner p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: var(--text-muted);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 60, 0, 0.1) 0%, rgba(42, 10, 0, 0.3) 100%);
    border: 2px solid var(--magma-orange);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 60, 0, 0.4);
    border-color: var(--lava-yellow);
}

.info-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
}

.info-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lava-yellow);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.content-block {
    background: rgba(42, 10, 0, 0.4);
    border: 1px solid var(--magma-orange);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--lava-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--magma-orange);
    margin: 2rem 0 1rem;
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.content-block ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.content-block ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.game-section {
    background: rgba(13, 0, 0, 0.6);
    border: 3px solid var(--flame-red);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 30px rgba(255, 60, 0, 0.3);
}

.game-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--lava-yellow);
    text-transform: uppercase;
}

.game-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: #000;
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(90deg, rgba(255, 60, 0, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-top: 3px solid var(--flame-red);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: var(--lava-yellow);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--lava-yellow);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--magma-orange);
    color: var(--text-muted);
}

/* Age Modal */
.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-verify-modal.show {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a0a00 100%);
    border: 3px solid var(--flame-red);
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 60, 0, 0.7);
}

.modal-box h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lava-yellow);
    margin-bottom: 1.5rem;
}

.modal-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-buttons button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-confirm {
    background: linear-gradient(90deg, var(--flame-red), var(--magma-orange));
    color: white;
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.5);
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 60, 0, 0.8);
}

.btn-decline {
    background: #444;
    color: white;
}

.btn-decline:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--flame-red);
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-banner h2 {
        font-size: 2rem;
    }

    .hero-banner {
        padding: 2.5rem 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 2rem 1rem;
    }

    .game-frame {
        height: 400px;
    }

    .modal-box {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 1.5rem;
    }

    .game-frame {
        height: 350px;
    }
}