@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(circle at center, #1a0a00 0%, #331400 50%, #0d0500 100%);
    color: #fff4e6;
    min-height: 100vh;
    line-height: 1.8;
}

/* Header */
header {
    background: linear-gradient(to right, #ff4500, #ff6347, #ff7f50, #ff6347, #ff4500);
    padding: 1.3rem 2.8rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.6);
    border-bottom: 4px solid #ffa500;
}

.header-container {
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffff00, #ffa500, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.menu-toggle {
    display: none;
    background: linear-gradient(135deg, #ff4500, #ffa500);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

nav ul li a {
    color: #fff4e6;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover {
    background: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    transform: translateY(-3px);
}

/* Main Content */
main {
    max-width: 1550px;
    margin: 0 auto;
    padding: 4.5rem 2.8rem;
}

.hero-section {
    text-align: center;
    padding: 5.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.25), rgba(255, 127, 80, 0.25));
    border-radius: 28px;
    border: 4px solid;
    border-image: linear-gradient(45deg, #ff4500, #ffa500, #ffff00, #ffa500, #ff4500) 1;
    margin-bottom: 4.5rem;
    box-shadow: 0 12px 45px rgba(255, 69, 0, 0.4);
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: linear-gradient(to right, transparent, #ff4500, transparent);
    border-radius: 50%;
    filter: blur(10px);
}

.hero-section h1 {
    font-size: 5.5rem;
    background: linear-gradient(90deg, #ffff00, #ffa500, #ff4500, #ffa500, #ffff00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 7px;
    animation: fireGlow 3s linear infinite;
}

@keyframes fireGlow {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-section p {
    font-size: 1.9rem;
    color: #ffcc99;
    font-weight: 600;
}

.content-section {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(255, 127, 80, 0.12));
    border-left: 6px solid #ff4500;
    border-right: 6px solid #ffa500;
    border-radius: 18px;
    padding: 4.2rem;
    margin-bottom: 3.8rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.content-section h2 {
    color: #ffa500;
    font-size: 3.4rem;
    margin-bottom: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 3px solid #ff4500;
    padding-bottom: 1.2rem;
}

.content-section h3 {
    color: #ffcc00;
    font-size: 2.4rem;
    margin-top: 2.8rem;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
}

.content-section p, .content-section ul {
    margin-bottom: 1.7rem;
    color: #ffe4b3;
    font-size: 1.25rem;
}

.content-section ul {
    padding-left: 3.2rem;
}

.content-section ul li {
    margin-bottom: 1.1rem;
}

.alert-section {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 69, 0, 0.2));
    border: 5px solid #ff0000;
    border-radius: 18px;
    padding: 4rem;
    margin: 4rem 0;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
}

.alert-section h3 {
    color: #ff6347;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    margin-top: 0;
    text-transform: uppercase;
    text-align: center;
}

.alert-section ul {
    list-style: none;
    padding-left: 0;
}

.alert-section ul li {
    padding: 1.4rem;
    color: #ffb380;
    font-size: 1.35rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 1.3rem;
    border-radius: 12px;
    border-left: 6px solid #ff4500;
}

.alert-section ul li:before {
    content: "🔥 ";
    margin-right: 1.2rem;
    font-size: 1.6rem;
}

/* Game Container */
.game-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(255, 69, 0, 0.2));
    border: 5px solid;
    border-image: linear-gradient(135deg, #ff4500, #ffa500, #ff4500) 1;
    border-radius: 22px;
    padding: 4.5rem;
    margin: 4.5rem 0;
    text-align: center;
    box-shadow: 0 18px 55px rgba(255, 69, 0, 0.35);
}

.game-container h2 {
    background: linear-gradient(90deg, #ffff00, #ffa500, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    font-size: 3.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.game-frame {
    width: 100%;
    max-width: 1150px;
    height: 800px;
    border: 5px solid #ff4500;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(to right, #ff4500, #ff6347, #ff7f50, #ff6347, #ff4500);
    border-top: 4px solid #ffa500;
    padding: 4.5rem 2.8rem;
    margin-top: 6.5rem;
}

.footer-container {
    max-width: 1550px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: #ffff00;
    margin-bottom: 3rem;
    font-size: 2.6rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.responsible-links a {
    color: #fff4e6;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid transparent;
    font-weight: 700;
}

.responsible-links a:hover {
    color: #ffff00;
    border-color: #ffff00;
    background: rgba(255, 255, 0, 0.15);
}

.footer-nav {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 3px solid rgba(255, 255, 0, 0.4);
}

.footer-nav a {
    color: #fff4e6;
    text-decoration: none;
    margin: 0 2.3rem;
    transition: color 0.3s;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-nav a:hover {
    color: #ffff00;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 5, 0, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a0a00, #331400);
    border: 6px solid;
    border-image: linear-gradient(135deg, #ff4500, #ffa500, #ff4500) 1;
    border-radius: 25px;
    padding: 5.5rem;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 0 90px rgba(255, 69, 0, 0.7);
}

.age-modal-content h2 {
    background: linear-gradient(90deg, #ffff00, #ffa500, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.age-modal-content p {
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    color: #ffcc99;
    font-weight: 600;
}

.age-buttons {
    display: flex;
    gap: 3.2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 2rem 5.5rem;
    font-size: 1.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: 5px solid;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.btn-yes {
    background: linear-gradient(135deg, #ff4500, #ffa500);
    color: #fff;
    border-color: #ffff00;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #ffa500, #ffff00);
    transform: scale(1.15);
    box-shadow: 0 0 45px rgba(255, 165, 0, 0.9);
}

.btn-no {
    background: linear-gradient(135deg, #8b0000, #b22222);
    color: #fff;
    border-color: #ff0000;
}

.btn-no:hover {
    background: linear-gradient(135deg, #b22222, #ff0000);
    transform: scale(1.15);
    box-shadow: 0 0 45px rgba(255, 0, 0, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, #ff4500, #ff6347);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 850px;
        border-bottom: 4px solid #ffa500;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1.6rem;
    }

    .hero-section h1 {
        font-size: 3.8rem;
    }

    .hero-section p {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 3.2rem;
    }

    .game-frame {
        height: 600px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav a {
        display: block;
        margin: 1.6rem 0;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 4rem;
    }

    .age-modal-content h2 {
        font-size: 3.2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}