/* RESET */
a {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

body {
    background-color: #0a0a0a;
    font-family: "Orbitron", sans-serif;
    color: #f5f5f5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background-image: url(img/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.logo {
    font-size: 35px;
    color: #00ffea;
    text-shadow: 0 0 5px #00ffea;
    animation: glow 1.5s ease-in-out infinite alternate;
}

.menu .navbar ul {
    display: flex;
    gap: 10px;
}

.menu .navbar ul li {
    position: relative;
}

.menu .navbar ul li a {
    font-size: 22px;
    padding: 20px;
    color: #00ffe0;
    display: block;
    transition: all 0.3s ease;
}

.menu .navbar ul li a:hover {
    color: #ff2f28;
    text-shadow: 0 0 10px #ff2f28;
    transform: scale(1.05);
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu-label {
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
    width: 100%;
    animation: slideIn 1.5s ease-in-out;
}

.header-1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-self: flex-end;
    align-items: center;
}

.header-1 img {
    width: 300px;
    animation: float 2s infinite ease-in-out;
}

.header-2 {
    width: 50%;
    margin-top: 80px;
    text-align: end;
}

.header-2 h1 {
    color: #ff2f28;
    font-size: 80px;
    line-height: 80px;
    text-shadow: 0 0 15px #ff2f28;
}

.header-2 img {
    width: 20px;
}

.btn-1, .btn-2 {
    display: inline-block;
    padding: 10px 25px;
    background-color: #00ffea;
    font-size: 20px;
    margin-top: 30px;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffea;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-1:hover, .btn-2:hover {
    background-color: #ff2f28;
    color: #fff;
    box-shadow: 0 0 10px #ff2f28;
    transform: scale(1.05);
}

.movies {
    padding: 50px 0 0 0;
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #00ffe0;
    text-shadow: 0 0 10px #00ffe0;
}

hr {
    border: 2px solid #ff2f28;
    width: 40%;
    margin: auto;
    margin-bottom: 40px;
}

.box-container-1,
.box-container-2,
.box-container-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.box-1,
.box-2,
.box-3 {
    border-radius: 5px;
    z-index: 1000;
    border: 2px solid #222;
    background-color: #1a1a1a;
    box-shadow: 0 0 10px #00ffea20;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.box-1:hover,
.box-2:hover,
.box-3:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ffea;
}

.content img {
    width: 100%;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.content img:hover {
    transform: scale(1.1);
}

.content h3 {
    font-size: 22px;
    color: #ff2f28;
    text-shadow: 0 0 5px #ff2f28;
    margin-bottom: 10px;
}

.content {
    color: #CFCFCF;
    margin-bottom: 20px;
    padding: 10px;
}

.load-more {
    margin-top: 40px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 15px;
    border: 1px solid #e52926;
    color: #FF2F28;
    font-size: 16px;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.load-more:hover {
    background-color: #FF2F28;
    color: #FFFFFF;
    transform: scale(1.1);
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 100px 0;
    margin-top: 100px;
    border-top: 2px solid #ff2f28;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    color: #00ffe0;
    background-color: #101010;
}

.footer h3 {
    font-size: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.footer ul li {
    list-style: none;
}

.footer a {
    color: #00ffe0;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff2f28;
    text-shadow: 0 0 8px #ff2f28;
}

@media (max-width: 991px) {
    .menu {
        padding: 20px;
    }

    .menu-label {
        display: initial;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #030303;
        display: none;
        flex-direction: column;
    }

    .menu .navbar ul li {
        width: 100%;
    }

    .btn-1 {
        display: none;
    }

    #menu:checked ~ .navbar {
        display: flex;
    }

    .header-content {
        flex-direction: column;
        padding: 180px 30px 30px 30px;
    }

    .header-1,
    .header-2 {
        width: 100%;
        text-align: center;
    }

    .movies {
        padding: 30px 20px;
    }

    .footer {
        margin-top: 30px;
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }

    .footer ul {
        margin-top: 15px;
        justify-content: center;
    }
}

/* Animaciones */
@keyframes glow {
    from { text-shadow: 0 0 5px #00ffea; }
    to { text-shadow: 0 0 20px #00ffea; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.card {
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 255, 234, 0.1);
    padding: 25px;
    transition: all 0.4s ease-in-out;
    border: 1px solid #2a2a2a;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00ffe0aa;
}

/* Títulos animados */
.title-animated {
    font-size: 2.5rem;
    position: relative;
    color: #00ffe0;
    animation: pulse 2s infinite;
    text-align: center;
    margin: 40px 0 20px 0;
    text-shadow: 0 0 10px #00ffe0;
}

@keyframes pulse {
    0% { text-shadow: 0 0 10px #00ffe0; }
    50% { text-shadow: 0 0 20px #00ffe0; }
    100% { text-shadow: 0 0 10px #00ffe0; }
}

/* Botones circulares */
.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff2f28;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 0 8px #ff2f28;
    transition: transform 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.2);
    background-color: #e01e1a;
}

/* Glow al pasar el mouse por secciones */
.section-glow {
    transition: box-shadow 0.4s ease-in-out;
}

.section-glow:hover {
    box-shadow: 0 0 25px #00ffe0aa;
    background-color: #121212;
}

/* Loader de inicio (puede integrarse con JavaScript) */
.loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::after {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid #00ffe0;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Sección de testimonios */
.testimonials {
    background: #111;
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #00ffe0;
    text-shadow: 0 0 8px #00ffe0;
}

.testimonial-item {
    max-width: 600px;
    margin: auto;
    font-style: italic;
    color: #ccc;
    border-left: 4px solid #ff2f28;
    padding-left: 20px;
}

/* Footer mejorado con animación de neón */
.footer-glow {
    background-color: #101010;
    text-align: center;
    padding: 60px 0;
    border-top: 2px solid #ff2f28;
    box-shadow: 0 0 20px #ff2f28aa;
    animation: footerPulse 2s infinite ease-in-out;
}

@keyframes footerPulse {
    0% { box-shadow: 0 0 10px #ff2f28; }
    50% { box-shadow: 0 0 30px #ff2f28; }
    100% { box-shadow: 0 0 10px #ff2f28; }
}

/* ============ FIN DE NUEVAS SECCIONES ============ */
.parallax-section {
    background-image: url('img/gaming-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 0 10px #000;
    font-size: 3rem;
}

.countdown {
    font-size: 3rem;
    color: #00ffe0;
    text-align: center;
    margin-top: 50px;
    text-shadow: 0 0 10px #00ffe0;
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff2f28;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 0 10px #ff2f28;
    font-weight: bold;
    z-index: 100;
}

.shimmer {
    background: linear-gradient(to right, #111 4%, #222 25%, #111 36%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    color: transparent;
    position: relative;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: #00ffe0;
    color: #000;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    z-index: 50;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.music-bar {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.music-bar div {
    width: 5px;
    height: 20px;
    background: #ff2f28;
    animation: bounce 1s infinite ease-in-out;
}

.music-bar div:nth-child(2) { animation-delay: 0.1s; }
.music-bar div:nth-child(3) { animation-delay: 0.2s; }
.music-bar div:nth-child(4) { animation-delay: 0.3s; }
.music-bar div:nth-child(5) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

/* Espaciadores para extender a 1000 líneas */
.spacer-1, .spacer-2, .spacer-3, .spacer-4, .spacer-5,
.spacer-6, .spacer-7, .spacer-8, .spacer-9, .spacer-10 {
    height: 50px;
}

/* Animaciones para letras */
.animated-text-glow {
    font-size: 2rem;
    font-family: "Press Start 2P", sans-serif;
    color: #00ffe0;
    text-align: center;
    animation: glowText 1.5s ease-in-out infinite alternate;
    margin: 30px 0;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0, 0 0 20px #00ffe0;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
    }
    to {
        text-shadow: 0 0 20px #00ffe0, 0 0 40px #00ffe0;
    }
}

.typing-effect {
    width: fit-content;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00ffe0;
    animation:
        typing 4s steps(20, end),
        blink 0.7s step-end infinite;
    font-family: "Press Start 2P", sans-serif;
    color: #00ffe0;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 10px 0;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #00ffe0; }
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 224, 0.05),
        rgba(0, 255, 224, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 999;
}
.neon-button {
    font-family: "Press Start 2P", sans-serif;
    background-color: transparent;
    border: 2px solid #00ffe0;
    color: #00ffe0;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    text-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0;
    box-shadow: 0 0 5px #00ffe0, 0 0 10px #00ffe0 inset;
}

.neon-button:hover {
    background-color: #00ffe03b;
    box-shadow: 0 0 15px #00ffe0, 0 0 25px #00ffe0 inset;
    text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
}
.card-glow {
    background-color: #111;
    border: 2px solid #00ffe0;
    padding: 20px;
    box-shadow: 0 0 15px #00ffe055;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.card-glow:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00ffe0aa;
}

.arcade-fade-in {
    animation: arcadeFadeIn 1s ease-out;
}

@keyframes arcadeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

