@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Electrolize', sans-serif;
    background: #0d0221;
    background-image: 
        linear-gradient(45deg, rgba(255, 94, 0, 0.05) 0%, transparent 100%),
        linear-gradient(-45deg, rgba(138, 43, 226, 0.05) 0%, transparent 100%);
    color: #f0f0f0;
    min-height: 100vh;
    line-height: 1.7;
}

/* Header */
header {
    background: rgba(13, 2, 33, 0.95);
    padding: 1rem 2.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(255, 94, 0, 0.4);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #ff5e00, #8a2be2, #ff5e00) 1;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff5e00, #ff9500, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 3px solid #ff5e00;
    color: #ff5e00;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem 0.9rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 94, 0, 0.2);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.15rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.3), rgba(138, 43, 226, 0.3));
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
}

/* Main Content */
main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

.hero-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 94, 0, 0.15), rgba(138, 43, 226, 0.15));
    border-radius: 25px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #ff5e00, #8a2be2) 1;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-section h1 {
    font-size: 4.5rem;
    background: linear-gradient(45deg, #ff5e00, #ff9500, #8a2be2, #ff5e00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-section p {
    font-size: 1.5rem;
    color: #ffa500;
    position: relative;
    z-index: 1;
}

.content-section {
    background: rgba(255, 94, 0, 0.08);
    border-left: 5px solid #ff5e00;
    border-right: 5px solid #8a2be2;
    border-radius: 10px;
    padding: 3.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.content-section h2 {
    color: #ff5e00;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.content-section h3 {
    color: #8a2be2;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.content-section p, .content-section ul {
    margin-bottom: 1.5rem;
    color: #d8d8d8;
    font-size: 1.15rem;
}

.content-section ul {
    padding-left: 3rem;
}

.content-section ul li {
    margin-bottom: 1rem;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 94, 0, 0.15));
    border: 4px solid #ff3838;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(255, 56, 56, 0.3);
}

.warning-box h3 {
    color: #ff3838;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    margin-top: 0;
    text-transform: uppercase;
}

.warning-box ul {
    list-style: none;
    padding-left: 0;
}

.warning-box ul li {
    padding: 1rem 0;
    color: #ffb8b8;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 56, 56, 0.3);
}

.warning-box ul li:before {
    content: "⚡ ";
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffa500;
}

.warning-box ul li:last-child {
    border-bottom: none;
}

/* Game Container */
.game-container {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 94, 0, 0.2));
    border: 4px solid;
    border-image: linear-gradient(135deg, #8a2be2, #ff5e00) 1;
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 94, 0, 0.3);
}

.game-container h2 {
    background: linear-gradient(90deg, #ff5e00, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: 4px solid #8a2be2;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
}

/* Footer */
footer {
    background: rgba(13, 2, 33, 0.95);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #ff5e00, #8a2be2, #ff5e00) 1;
    padding: 4rem 2.5rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    background: linear-gradient(90deg, #ff5e00, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.responsible-links a {
    color: #ffa500;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    border: 2px solid transparent;
}

.responsible-links a:hover {
    color: #ff5e00;
    border-color: #ff5e00;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
}

.footer-nav {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 94, 0, 0.3);
}

.footer-nav a {
    color: #d8d8d8;
    text-decoration: none;
    margin: 0 2rem;
    transition: color 0.3s;
    font-size: 1.15rem;
}

.footer-nav a:hover {
    color: #8a2be2;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #0d0221, #1a0533);
    border: 5px solid;
    border-image: linear-gradient(135deg, #ff5e00, #8a2be2) 1;
    border-radius: 20px;
    padding: 4.5rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 80px rgba(255, 94, 0, 0.6);
}

.age-modal-content h2 {
    background: linear-gradient(90deg, #ff5e00, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.age-modal-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #d8d8d8;
}

.age-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-family: 'Electrolize', sans-serif;
    border: 4px solid;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-yes {
    background: linear-gradient(135deg, #ff5e00, #ff9500);
    color: #0d0221;
    border-color: #ffa500;
}

.btn-yes:hover {
    background: linear-gradient(135deg, #ff9500, #ffa500);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.8);
}

.btn-no {
    background: linear-gradient(135deg, #8a2be2, #6a1bb2);
    color: #fff;
    border-color: #8a2be2;
}

.btn-no:hover {
    background: linear-gradient(135deg, #6a1bb2, #5a0ba2);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 2, 33, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 700px;
        border-bottom: 4px solid #ff5e00;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1.5rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.3rem;
    }

    .content-section {
        padding: 2.5rem;
    }

    .game-frame {
        height: 500px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-nav a {
        display: block;
        margin: 1rem 0;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 3rem;
    }

    .age-modal-content h2 {
        font-size: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}