/* styles.css */


/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

h1{
    color: #ffffff;
}

h2 {
    color: #000000;
}



main {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /*background-image: url(../img/FondoP.jpg);*/
    background-size: cover;
}

#imgFondo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

/* Estilos para la sección de héroe */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}


.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f4511e;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #000000;
}

/* Estilos para la sección de contenido destacado (puedes agregar imágenes y estilos específicos aquí) */
.featured-content {
    margin-top: 30px;
}

/* Estilos para el pie de página */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #000000;
    color: #fff;
}


/* ===== Sección de Películas Recomendadas ===== */
.recommended-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 193, 7, 0.1) 25%,
        rgba(0, 0, 0, 0.85) 50%, 
        rgba(218, 165, 32, 0.1) 75%,
        rgba(255, 215, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.recommended-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #FFD700, 
        #FFC107, 
        #DAA520, 
        #FFC107, 
        #FFD700);
    background-size: 200% 100%;
    border-radius: 20px 20px 0 0;
    animation: goldFlow 4s ease-in-out infinite;
}

@keyframes goldFlow {
    0% { 
        background-position: 0% 0%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 0%;
        filter: brightness(1.3);
    }
    100% { 
        background-position: 0% 0%;
        filter: brightness(1);
    }
}

.recommended-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #FFD700, #FFC107, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
}

.recommended-movies h3::before {
    content: '🏆';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: trophy 3s ease-in-out infinite;
    background: none;
    -webkit-text-fill-color: #FFD700;
    filter: drop-shadow(0 0 15px #FFD700);
}

/* ===== Carousel Premium ===== */
.carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* Efecto de resplandor dorado en los bordes */
.carousel::before,
.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.carousel::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(17, 17, 17, 1) 0%, 
        rgba(17, 17, 17, 0) 100%);
}

.carousel::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(17, 17, 17, 1) 0%, 
        rgba(17, 17, 17, 0) 100%);
}

/* ===== Tarjetas de Películas Premium ===== */
.movie {
    min-width: 280px;
    width: 280px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.movie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 193, 7, 0.05) 50%, 
        rgba(218, 165, 32, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.movie:hover::before {
    opacity: 1;
}

.movie::after {
    content: '👑';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 0 10px #FFD700);
}

.movie:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: crownGlow 2s ease-in-out infinite;
}

.movie img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.movie h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.movie p {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.movie p::before {
    content: '⭐';
    font-size: 1.1em;
    filter: drop-shadow(0 0 8px #FFD700);
    animation: starShine 2.5s ease-in-out infinite;
}

/* ===== Efectos Hover Premium ===== */
.movie:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

.movie:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
}

.movie:hover h4 {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: premiumGlow 1s ease-in-out;
}

.movie:hover p {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* ===== Animaciones Premium ===== */
@keyframes trophy {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 15px #FFD700);
    }
    25% { 
        transform: scale(1.1) rotate(-3deg);
        filter: drop-shadow(0 0 20px #FFC107);
    }
    50% { 
        transform: scale(1.2) rotate(0deg);
        filter: drop-shadow(0 0 25px #DAA520);
    }
    75% { 
        transform: scale(1.1) rotate(3deg);
        filter: drop-shadow(0 0 20px #FFD700);
    }
}

@keyframes crownGlow {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px #FFD700);
    }
    50% { 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 20px #FFC107);
    }
}

@keyframes starShine {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px #FFD700);
    }
    33% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px #FFD700);
    }
    66% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px #FFC107);
    }
}

@keyframes premiumGlow {
    0% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
    33% { text-shadow: 0 0 25px rgba(255, 193, 7, 1); }
    66% { text-shadow: 0 0 20px rgba(218, 165, 32, 0.9); }
    100% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); }
}

@keyframes slideInPremium {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-8deg) scale(0.9);
        filter: brightness(0.7);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: brightness(1);
    }
}

.movie {
    animation: slideInPremium 0.6s ease-out forwards;
}

.movie:nth-child(1) { animation-delay: 0.1s; }
.movie:nth-child(2) { animation-delay: 0.2s; }
.movie:nth-child(3) { animation-delay: 0.3s; }
.movie:nth-child(4) { animation-delay: 0.4s; }
.movie:nth-child(5) { animation-delay: 0.5s; }
.movie:nth-child(6) { animation-delay: 0.6s; }
.movie:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design Premium ===== */
@media screen and (max-width: 1200px) {
    .recommended-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .movie {
        min-width: 240px;
        width: 240px;
    }
    
    .movie img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .recommended-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .recommended-movies h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .movie {
        min-width: 200px;
        width: 200px;
        padding: 0.8rem;
    }
    
    .movie img {
        height: 280px;
    }
    
    .movie h4 {
        font-size: 0.9rem;
    }
    
    .movie p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .recommended-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .recommended-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .movie {
        min-width: 160px;
        width: 160px;
        padding: 0.6rem;
    }
    
    .movie img {
        height: 220px;
    }
    
    .movie h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .movie p {
        font-size: 0.75rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .carousel::before,
    .carousel::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes Premium ===== */
@media screen and (min-width: 1400px) {
    .recommended-movies {
        padding: 4rem 3rem;
    }
    
    .recommended-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .carousel {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .movie {
        min-width: 320px;
        width: 320px;
        padding: 1.2rem;
    }
    
    .movie img {
        height: 420px;
    }
    
    .movie h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .movie p {
        font-size: 1rem;
    }
}

/* ===== Efectos especiales para interacción Premium ===== */
.movie a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.carousel:hover .movie:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
    filter: grayscale(0.2);
}

/* ===== Indicador de scroll premium ===== */
.carousel {
    position: relative;
}

.carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #FFD700, 
        #FFC107, 
        #DAA520, 
        #FFC107, 
        #FFD700, 
        transparent);
    border-radius: 2px;
    animation: goldPulse 3s ease-in-out infinite;
}

@keyframes goldPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
        filter: brightness(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
        filter: brightness(1.3);
    }
}

/* ===== Efecto de lujo premium ===== */
.recommended-movies::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(255, 215, 0, 0.03) 50%,
        rgba(255, 193, 7, 0.05) 80%,
        transparent 100%
    );
    pointer-events: none;
    animation: luxuryAura 8s ease-in-out infinite;
}

@keyframes luxuryAura {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* ===== Sección de Películas de Marvel ===== */
.marvel-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(237, 29, 36, 0.15) 0%, 
        rgba(13, 126, 193, 0.1) 25%,
        rgba(0, 0, 0, 0.85) 50%, 
        rgba(255, 215, 0, 0.1) 75%,
        rgba(237, 29, 36, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(237, 29, 36, 0.3);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(237, 29, 36, 0.3);
}

.marvel-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #ED1D24, 
        #0D7EC1, 
        #FFD700, 
        #0D7EC1, 
        #ED1D24);
    background-size: 200% 100%;
    border-radius: 20px 20px 0 0;
    animation: heroicFlow 3s linear infinite;
}

@keyframes heroicFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.marvel-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #ED1D24, #FFD700, #0D7EC1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(237, 29, 36, 0.5);
    position: relative;
}

.marvel-movies h3::before {
    content: '⚡';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: lightning 2s ease-in-out infinite;
    background: none;
    -webkit-text-fill-color: #FFD700;
    filter: drop-shadow(0 0 10px #FFD700);
}

/* ===== Carousel Marvel ===== */
.carouselllmar {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.carouselllmar::-webkit-scrollbar {
    display: none;
}

/* Efecto de energía en los bordes */
.carouselllmar::before,
.carouselllmar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.carouselllmar::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

.carouselllmar::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

/* ===== Tarjetas de Películas Marvel ===== */
.moviemarvel {
    width: 280px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(237, 29, 36, 0.3);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(237, 29, 36, 0.3);
}

.moviemarvel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(237, 29, 36, 0.1) 0%, 
        rgba(13, 126, 193, 0.05) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.moviemarvel:hover::before {
    opacity: 1;
}

.moviemarvel::after {
    content: '💥';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 0 10px #FFD700);
}

.moviemarvel:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: heroicPulse 1.5s ease-in-out infinite;
}

.moviemarvel img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(237, 29, 36, 0.4);
    border: 2px solid transparent;
}

.moviemarvel h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.moviemarvel p {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.moviemarvel p::before {
    content: '⭐';
    font-size: 1.1em;
    filter: drop-shadow(0 0 5px #FFD700);
    animation: starPower 2s ease-in-out infinite;
}

/* ===== Efectos Hover Marvel ===== */
.moviemarvel:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(237, 29, 36, 0.5);
    border-image: linear-gradient(135deg, #ED1D24, #0D7EC1, #FFD700) 1;
    border-style: solid;
}

.moviemarvel:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
    box-shadow: 0 15px 35px rgba(13, 126, 193, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.moviemarvel:hover h4 {
    background: linear-gradient(135deg, #ED1D24, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(237, 29, 36, 0.8);
    animation: heroicGlow 0.8s ease-in-out;
}

/* ===== Enlace "Ver Todas" Marvel ===== */
.marvel-movies h3 .ver-todas {
    font-size: 0.9rem;
    color: #ED1D24;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #ED1D24;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(237, 29, 36, 0.1), rgba(13, 126, 193, 0.05));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 5px rgba(237, 29, 36, 0.5);
}

.marvel-movies h3 .ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent);
    transition: left 0.5s;
}

.marvel-movies h3 .ver-todas:hover {
    background: linear-gradient(135deg, #ED1D24, #0D7EC1);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 29, 36, 0.4);
    border-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.marvel-movies h3 .ver-todas:hover::before {
    left: 100%;
}

/* ===== Animaciones Marvel ===== */
@keyframes lightning {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px #FFD700);
    }
    25% { 
        transform: scale(1.2) rotate(-10deg);
        filter: drop-shadow(0 0 20px #ED1D24);
    }
    50% { 
        transform: scale(1.3) rotate(0deg);
        filter: drop-shadow(0 0 25px #0D7EC1);
    }
    75% { 
        transform: scale(1.1) rotate(10deg);
        filter: drop-shadow(0 0 15px #FFD700);
    }
}

@keyframes heroicPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px #FFD700);
    }
    50% { 
        transform: scale(1.2); 
        filter: drop-shadow(0 0 20px #ED1D24);
    }
}

@keyframes starPower {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px #FFD700);
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px #FFD700);
    }
}

@keyframes heroicGlow {
    0% { text-shadow: 0 0 10px rgba(237, 29, 36, 0.8); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 1); }
    100% { text-shadow: 0 0 15px rgba(13, 126, 193, 0.8); }
}

@keyframes slideInHeroic {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-10deg) scale(0.8);
        filter: brightness(0.5);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: brightness(1);
    }
}

.moviemarvel {
    animation: slideInHeroic 0.6s ease-out forwards;
}

.moviemarvel:nth-child(1) { animation-delay: 0.1s; }
.moviemarvel:nth-child(2) { animation-delay: 0.2s; }
.moviemarvel:nth-child(3) { animation-delay: 0.3s; }
.moviemarvel:nth-child(4) { animation-delay: 0.4s; }
.moviemarvel:nth-child(5) { animation-delay: 0.5s; }
.moviemarvel:nth-child(6) { animation-delay: 0.6s; }
.moviemarvel:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design Marvel ===== */
@media screen and (max-width: 1200px) {
    .marvel-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .moviemarvel {
        width: 240px;
        min-width: 240px;
    }
    
    .moviemarvel img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .marvel-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .marvel-movies h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carouselllmar {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .moviemarvel {
        width: 200px;
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .moviemarvel img {
        height: 280px;
    }
    
    .moviemarvel h4 {
        font-size: 0.9rem;
    }
    
    .moviemarvel p {
        font-size: 0.8rem;
    }
    
    .marvel-movies h3 .ver-todas {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .marvel-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .marvel-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carouselllmar {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .moviemarvel {
        width: 160px;
        min-width: 160px;
        padding: 0.6rem;
    }
    
    .moviemarvel img {
        height: 220px;
    }
    
    .moviemarvel h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .moviemarvel p {
        font-size: 0.75rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .carouselllmar::before,
    .carouselllmar::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes Marvel ===== */
@media screen and (min-width: 1400px) {
    .marvel-movies {
        padding: 4rem 3rem;
    }
    
    .marvel-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .carouselllmar {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .moviemarvel {
        width: 320px;
        min-width: 320px;
        padding: 1.2rem;
    }
    
    .moviemarvel img {
        height: 420px;
    }
    
    .moviemarvel h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .moviemarvel p {
        font-size: 1rem;
    }
}

/* ===== Efectos especiales para interacción Marvel ===== */
.moviemarvel a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.carouselllmar:hover .moviemarvel:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
    filter: grayscale(0.3);
}

/* ===== Indicador de scroll heroico ===== */
.carouselllmar {
    position: relative;
}

.carouselllmar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #ED1D24, 
        #FFD700, 
        #0D7EC1, 
        #FFD700, 
        #ED1D24, 
        transparent);
    border-radius: 2px;
    animation: powerSurge 2s linear infinite;
}

@keyframes powerSurge {
    0% { 
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
    100% { 
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
}

/* ===== Efecto de energía cósmica ===== */
.marvel-movies::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(237, 29, 36, 0.05) 40%,
        rgba(13, 126, 193, 0.05) 70%,
        rgba(255, 215, 0, 0.03) 90%,
        transparent 100%
    );
    pointer-events: none;
    animation: cosmicEnergy 6s ease-in-out infinite;
}

@keyframes cosmicEnergy {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    33% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
    66% { 
        opacity: 0.6;
        transform: scale(0.98);
    }
}

/* ===== Sección de Películas de Terror ===== */
.terror-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.95) 30%,
        rgba(47, 47, 47, 0.8) 70%, 
        rgba(220, 20, 60, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.terror-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #8B0000, 
        #DC143C, 
        #FF4500, 
        #DC143C, 
        #8B0000);
    border-radius: 20px 20px 0 0;
    animation: bloodFlow 4s ease-in-out infinite;
}

@keyframes bloodFlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% { 
        filter: brightness(1.2);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(0.8);
    }
    75% { 
        filter: brightness(1.1);
    }
}

.terror-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    position: relative;
}

.terror-movies h3::before {
    content: '💀';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: skull 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #DC143C);
}

/* ===== Carousel Terror ===== */
.carouselllterror {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.carouselllterror::-webkit-scrollbar {
    display: none;
}

/* Efecto de fade siniestro en los bordes */
.carouselllterror::before,
.carouselllterror::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.carouselllterror::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

.carouselllterror::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0) 100%);
}

/* ===== Tarjetas de Películas Terror ===== */
.movieterror {
    width: 280px;
    min-width: 280px;
    background: rgba(47, 47, 47, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.4);
}

.movieterror::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.movieterror:hover::before {
    opacity: 1;
}

.movieterror::after {
    content: '🩸';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 0 5px #DC143C);
}

.movieterror:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: drip 2s ease-in-out infinite;
}

.movieterror img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.5);
    border: 2px solid transparent;
    filter: contrast(1.1) brightness(0.9);
}

.movieterror h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.movieterror p {
    color: #FF6347;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
}

.movieterror p::before {
    content: '⭐';
    font-size: 1.1em;
    filter: drop-shadow(0 0 5px #FF6347);
    animation: flicker 3s ease-in-out infinite;
}

/* ===== Efectos Hover Terror ===== */
.movieterror:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(139, 0, 0, 0.6);
    border-color: rgba(220, 20, 60, 0.8);
}

.movieterror:hover img {
    transform: scale(1.05);
    filter: contrast(1.3) brightness(1.1) saturate(1.2);
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4);
}

.movieterror:hover h4 {
    color: #DC143C;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
    animation: glitch 0.5s ease-in-out;
}

/* ===== Enlace "Ver Todas" Terror ===== */
.terror-movies h3 .ver-todas {
    font-size: 0.9rem;
    color: #DC143C;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #DC143C;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 5px rgba(220, 20, 60, 0.5);
}

.terror-movies h3 .ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(220, 20, 60, 0.3), 
        transparent);
    transition: left 0.5s;
}

.terror-movies h3 .ver-todas:hover {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5);
    border-color: #FF4500;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.terror-movies h3 .ver-todas:hover::before {
    left: 100%;
}

/* ===== Animaciones Terror ===== */
@keyframes skull {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px #DC143C);
    }
    25% { 
        transform: scale(1.1) rotate(-5deg);
        filter: drop-shadow(0 0 15px #FF4500);
    }
    50% { 
        transform: scale(1.2) rotate(0deg);
        filter: drop-shadow(0 0 20px #8B0000);
    }
    75% { 
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 15px #DC143C);
    }
}

@keyframes drip {
    0% { transform: translateY(0px); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0px); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
    75% { opacity: 1; }
    85% { opacity: 0.8; }
}

@keyframes glitch {
    0% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

@keyframes slideInDark {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(-15deg);
        filter: brightness(0);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
        filter: brightness(1);
    }
}

.movieterror {
    animation: slideInDark 0.6s ease-out forwards;
}

.movieterror:nth-child(1) { animation-delay: 0.1s; }
.movieterror:nth-child(2) { animation-delay: 0.2s; }
.movieterror:nth-child(3) { animation-delay: 0.3s; }
.movieterror:nth-child(4) { animation-delay: 0.4s; }
.movieterror:nth-child(5) { animation-delay: 0.5s; }
.movieterror:nth-child(6) { animation-delay: 0.6s; }
.movieterror:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design Terror ===== */
@media screen and (max-width: 1200px) {
    .terror-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .movieterror {
        width: 240px;
        min-width: 240px;
    }
    
    .movieterror img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .terror-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .terror-movies h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carouselllterror {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .movieterror {
        width: 200px;
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .movieterror img {
        height: 280px;
    }
    
    .movieterror h4 {
        font-size: 0.9rem;
    }
    
    .movieterror p {
        font-size: 0.8rem;
    }
    
    .terror-movies h3 .ver-todas {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .terror-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .terror-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carouselllterror {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .movieterror {
        width: 160px;
        min-width: 160px;
        padding: 0.6rem;
    }
    
    .movieterror img {
        height: 220px;
    }
    
    .movieterror h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .movieterror p {
        font-size: 0.75rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .carouselllterror::before,
    .carouselllterror::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes Terror ===== */
@media screen and (min-width: 1400px) {
    .terror-movies {
        padding: 4rem 3rem;
    }
    
    .terror-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .carouselllterror {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .movieterror {
        width: 320px;
        min-width: 320px;
        padding: 1.2rem;
    }
    
    .movieterror img {
        height: 420px;
    }
    
    .movieterror h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .movieterror p {
        font-size: 1rem;
    }
}

/* ===== Efectos especiales para interacción Terror ===== */
.movieterror a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.carouselllterror:hover .movieterror:not(:hover) {
    opacity: 0.6;
    transform: scale(0.95);
    filter: grayscale(0.5);
}

/* ===== Indicador de scroll siniestro ===== */
.carouselllterror {
    position: relative;
}

.carouselllterror::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #8B0000, 
        #DC143C, 
        #FF4500, 
        #DC143C, 
        #8B0000, 
        transparent);
    border-radius: 2px;
    animation: bloodPulse 2s ease-in-out infinite;
}

@keyframes bloodPulse {
    0%, 100% { 
        opacity: 0.7;
        filter: brightness(1);
    }
    50% { 
        opacity: 1;
        filter: brightness(1.5);
    }
}

/* ===== Efecto de ambiente siniestro ===== */
.terror-movies::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(139, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    animation: ambientGlow 8s ease-in-out infinite;
}

@keyframes ambientGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* seccion de peliculas de prime video*/

/* ===== Sección de Películas de Prime Video ===== */
.prime-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 168, 225, 0.1) 0%, 
        rgba(35, 47, 62, 0.8) 50%, 
        rgba(20, 110, 180, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 225, 0.2);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.prime-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00A8E1, #146EB4, #00A8E1);
    border-radius: 20px 20px 0 0;
}

.prime-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
}

.prime-movies h3::before {
    content: '🔥';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

/* ===== Contenedor del Carousel con Navegación ===== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== Botones de Navegación ===== */
.nav-btn {
    background: rgba(0, 168, 225, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 168, 225, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #00A8E1;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 3;
    flex-shrink: 0;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.3), rgba(20, 110, 180, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.nav-btn:hover {
    background: rgba(0, 168, 225, 0.4);
    border-color: #00A8E1;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 168, 225, 0.4);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:active {
    transform: scale(0.95);
}

.prev-btn {
    margin-right: 0.5rem;
}

.next-btn {
    margin-left: 0.5rem;
}

/* ===== Carousel Moderno ===== */
.carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
    flex: 1;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* Efecto de fade en los bordes del carousel */
.carousel::before,
.carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.carousel::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(35, 47, 62, 1) 0%, 
        rgba(35, 47, 62, 0) 100%);
}

.carousel::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(35, 47, 62, 1) 0%, 
        rgba(35, 47, 62, 0) 100%);
}

/* ===== Tarjetas de Películas ===== */
.moviee {
    width: 280px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.moviee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 168, 225, 0.1) 0%, 
        transparent 50%, 
        rgba(20, 110, 180, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.moviee:hover::before {
    opacity: 1;
}

.moviee img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.moviee h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
}

.moviee p {
    color: #FF9900;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.moviee p::before {
    content: '⭐';
    font-size: 1.1em;
}

/* ===== Efectos Hover ===== */
.moviee:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 168, 225, 0.3);
    border-color: rgba(0, 168, 225, 0.4);
}

.moviee:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.moviee:hover h4 {
    color: #00A8E1;
}

/* ===== Enlace "Ver Todas" ===== */
.prime-movies h3 .ver-todas {
    font-size: 0.9rem;
    color: #00A8E1;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #00A8E1;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: rgba(0, 168, 225, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

.prime-movies h3 .ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.prime-movies h3 .ver-todas:hover {
    background: #00A8E1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 225, 0.4);
}

.prime-movies h3 .ver-todas:hover::before {
    left: 100%;
}

/* ===== Animaciones ===== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.moviee {
    animation: slideInLeft 0.6s ease-out forwards;
}

.moviee:nth-child(1) { animation-delay: 0.1s; }
.moviee:nth-child(2) { animation-delay: 0.2s; }
.moviee:nth-child(3) { animation-delay: 0.3s; }
.moviee:nth-child(4) { animation-delay: 0.4s; }
.moviee:nth-child(5) { animation-delay: 0.5s; }
.moviee:nth-child(6) { animation-delay: 0.6s; }
.moviee:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design ===== */
@media screen and (max-width: 1200px) {
    .prime-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .moviee {
        width: 240px;
        min-width: 240px;
    }
    
    .moviee img {
        height: 320px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .prime-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .prime-movies h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carousel-container {
        gap: 0.5rem;
    }
    
    .carousel {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .moviee {
        width: 200px;
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .moviee img {
        height: 280px;
    }
    
    .moviee h4 {
        font-size: 0.9rem;
    }
    
    .moviee p {
        font-size: 0.8rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prime-movies h3 .ver-todas {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .prime-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .prime-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-container {
        gap: 0.3rem;
    }
    
    .carousel {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .moviee {
        width: 160px;
        min-width: 160px;
        padding: 0.6rem;
    }
    
    .moviee img {
        height: 220px;
    }
    
    .moviee h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .moviee p {
        font-size: 0.75rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .carousel::before,
    .carousel::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes ===== */
@media screen and (min-width: 1400px) {
    .prime-movies {
        padding: 4rem 3rem;
    }
    
    .prime-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .carousel {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .moviee {
        width: 320px;
        min-width: 320px;
        padding: 1.2rem;
    }
    
    .moviee img {
        height: 420px;
    }
    
    .moviee h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .moviee p {
        font-size: 1rem;
    }
    
    .nav-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* ===== Efectos especiales para interacción ===== */
.moviee a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.carousel:hover .moviee:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
}

/* ===== Indicador de scroll para el carousel ===== */
.carousel {
    position: relative;
}

.carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00A8E1, transparent);
    border-radius: 2px;
}

/* ===== Funcionalidad JavaScript para los botones ===== */
.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(0.9);
}

.nav-btn:disabled:hover {
    background: rgba(0, 168, 225, 0.2);
    border-color: rgba(0, 168, 225, 0.3);
    transform: scale(0.9);
    box-shadow: none;
}

/* ===== Sección de Películas de Netflix ===== */
.netflix-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.1) 0%, 
        rgba(0, 0, 0, 0.8) 50%, 
        rgba(229, 9, 20, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.netflix-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #ff6b6b, #e50914);
    border-radius: 20px 20px 0 0;
}

.netflix-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
}

.netflix-movies h3::before {
    content: '🔥';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

/* ===== Carousel Moderno ===== */
.carouselll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.carouselll::-webkit-scrollbar {
    display: none;
}

/* Efecto de fade en los bordes del carousel */
.carouselll::before,
.carouselll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.carouselll::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(17, 17, 34, 1) 0%, 
        rgba(17, 17, 34, 0) 100%);
}

.carouselll::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(17, 17, 34, 1) 0%, 
        rgba(17, 17, 34, 0) 100%);
}

/* ===== Tarjetas de Películas ===== */
.movieee {
    width: 280px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.movieee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(229, 9, 20, 0.1) 0%, 
        transparent 50%, 
        rgba(229, 9, 20, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.movieee:hover::before {
    opacity: 1;
}

.movieee img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.movieee h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
}

.movieee p {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.movieee p::before {
    content: '⭐';
    font-size: 1.1em;
}

/* ===== Efectos Hover ===== */
.movieee:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.3);
    border-color: rgba(229, 9, 20, 0.4);
}

.movieee:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.movieee:hover h4 {
    color: #ff6b6b;
}

/* ===== Enlace "Ver Todas" ===== */
.netflix-movies h3 .ver-todas {
    font-size: 0.9rem;
    color: #e50914;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #e50914;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: rgba(229, 9, 20, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

.netflix-movies h3 .ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.netflix-movies h3 .ver-todas:hover {
    background: #e50914;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.netflix-movies h3 .ver-todas:hover::before {
    left: 100%;
}

/* ===== Animaciones ===== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.movieee {
    animation: slideInLeft 0.6s ease-out forwards;
}

.movieee:nth-child(1) { animation-delay: 0.1s; }
.movieee:nth-child(2) { animation-delay: 0.2s; }
.movieee:nth-child(3) { animation-delay: 0.3s; }
.movieee:nth-child(4) { animation-delay: 0.4s; }
.movieee:nth-child(5) { animation-delay: 0.5s; }
.movieee:nth-child(6) { animation-delay: 0.6s; }
.movieee:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design ===== */
@media screen and (max-width: 1200px) {
    .netflix-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .movieee {
        width: 240px;
        min-width: 240px;
    }
    
    .movieee img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .netflix-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .netflix-movies h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carouselll {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .movieee {
        width: 200px;
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .movieee img {
        height: 280px;
    }
    
    .movieee h4 {
        font-size: 0.9rem;
    }
    
    .movieee p {
        font-size: 0.8rem;
    }
    
    .netflix-movies h3 .ver-todas {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .netflix-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .netflix-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carouselll {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .movieee {
        width: 160px;
        min-width: 160px;
        padding: 0.6rem;
    }
    
    .movieee img {
        height: 220px;
    }
    
    .movieee h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .movieee p {
        font-size: 0.75rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .carouselll::before,
    .carouselll::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes ===== */
@media screen and (min-width: 1400px) {
    .netflix-movies {
        padding: 4rem 3rem;
    }
    
    .netflix-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .carouselll {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .movieee {
        width: 320px;
        min-width: 320px;
        padding: 1.2rem;
    }
    
    .movieee img {
        height: 420px;
    }
    
    .movieee h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .movieee p {
        font-size: 1rem;
    }
}

/* ===== Efectos especiales para interacción ===== */
.movieee a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.carouselll:hover .movieee:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
}

/* ===== Indicador de scroll para el carousel ===== */
.carouselll {
    position: relative;
}

.carouselll::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e50914, transparent);
    border-radius: 2px;
}

/* ===== Sección de Películas de Disney ===== */
.disney-movies {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 107, 179, 0.15) 0%, 
        rgba(102, 51, 153, 0.1) 30%,
        rgba(0, 0, 0, 0.8) 60%, 
        rgba(255, 215, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 153, 212, 0.3);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1400px;
    overflow: hidden;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 107, 179, 0.2);
}

.disney-movies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006bb3, #ffd700, #663399, #006bb3);
    border-radius: 20px 20px 0 0;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.disney-movies h3 {
    color: #ffffff;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, #006bb3, #ffd700, #663399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disney-movies h3::before {
    content: '✨';
    font-size: 1.2em;
    margin-right: 0.5rem;
    animation: sparkle 2s infinite;
    background: none;
    -webkit-text-fill-color: initial;
}

/* ===== Carousel Moderno Disney ===== */
.disney-movies .carouselll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}

.disney-movies .carouselll::-webkit-scrollbar {
    display: none;
}

/* Efecto de fade en los bordes del carousel */
.disney-movies .carouselll::before,
.disney-movies .carouselll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 2;
}

.disney-movies .carouselll::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(17, 17, 34, 1) 0%, 
        rgba(17, 17, 34, 0) 100%);
}

.disney-movies .carouselll::after {
    right: 0;
    background: linear-gradient(270deg, 
        rgba(17, 17, 34, 1) 0%, 
        rgba(17, 17, 34, 0) 100%);
}

/* ===== Tarjetas de Películas Disney ===== */
.movieeeee {
    width: 280px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 153, 212, 0.2);
    border-radius: 15px;
    text-align: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 107, 179, 0.2);
}

.movieeeee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 107, 179, 0.1) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        rgba(102, 51, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.movieeeee:hover::before {
    opacity: 1;
}

.movieeeee::after {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0) rotate(180deg);
    transition: all 0.3s ease;
    z-index: 3;
}

.movieeeee:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.movieeeee img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 107, 179, 0.3);
    border: 2px solid transparent;
}

.movieeeee h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #e8e8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.movieeeee p {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', system-ui, sans-serif;
}

.movieeeee p::before {
    content: '⭐';
    font-size: 1.1em;
    filter: drop-shadow(0 0 5px #ffd700);
}

/* ===== Efectos Hover Disney ===== */
.movieeeee:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 107, 179, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.movieeeee:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.1) saturate(1.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.movieeeee:hover h4 {
    background: linear-gradient(135deg, #006bb3, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Enlace "Ver Todas" Disney ===== */
.disney-movies h3 .ver-todas {
    font-size: 0.9rem;
    color: #006bb3;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #006bb3;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 107, 179, 0.1), rgba(255, 215, 0, 0.05));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

.disney-movies h3 .ver-todas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.3), 
        transparent);
    transition: left 0.5s;
}

.disney-movies h3 .ver-todas:hover {
    background: linear-gradient(135deg, #006bb3, #ffd700);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 107, 179, 0.4);
    border-color: #ffd700;
}

.disney-movies h3 .ver-todas:hover::before {
    left: 100%;
}

/* ===== Animaciones Disney ===== */
@keyframes sparkle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        filter: brightness(1.3);
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.5);
    }
    75% { 
        transform: scale(1.1) rotate(270deg);
        filter: brightness(1.3);
    }
}

@keyframes slideInMagic {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.movieeeee {
    animation: slideInMagic 0.6s ease-out forwards;
}

.movieeeee:nth-child(1) { animation-delay: 0.1s; }
.movieeeee:nth-child(2) { animation-delay: 0.2s; }
.movieeeee:nth-child(3) { animation-delay: 0.3s; }
.movieeeee:nth-child(4) { animation-delay: 0.4s; }
.movieeeee:nth-child(5) { animation-delay: 0.5s; }
.movieeeee:nth-child(6) { animation-delay: 0.6s; }
.movieeeee:nth-child(7) { animation-delay: 0.7s; }

/* ===== Responsive Design Disney ===== */
@media screen and (max-width: 1200px) {
    .disney-movies {
        padding: 2.5rem 1.5rem;
        margin: 1.5rem;
    }
    
    .movieeeee {
        width: 240px;
        min-width: 240px;
    }
    
    .movieeeee img {
        height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .disney-movies {
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 15px;
    }
    
    .disney-movies h3 {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .disney-movies .carouselll {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .movieeeee {
        width: 200px;
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .movieeeee img {
        height: 280px;
    }
    
    .movieeeee h4 {
        font-size: 0.9rem;
    }
    
    .movieeeee p {
        font-size: 0.8rem;
    }
    
    .disney-movies h3 .ver-todas {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .disney-movies {
        padding: 1.5rem 0.75rem;
        margin: 0.5rem;
    }
    
    .disney-movies h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .disney-movies .carouselll {
        gap: 0.8rem;
        padding: 0.5rem 0 1.5rem 0;
    }
    
    .movieeeee {
        width: 160px;
        min-width: 160px;
        padding: 0.6rem;
    }
    
    .movieeeee img {
        height: 220px;
    }
    
    .movieeeee h4 {
        font-size: 0.8rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .movieeeee p {
        font-size: 0.75rem;
    }
    
    /* Fade edges más pequeños en móvil */
    .disney-movies .carouselll::before,
    .disney-movies .carouselll::after {
        width: 30px;
    }
}

/* ===== Mejoras para TV y pantallas grandes Disney ===== */
@media screen and (min-width: 1400px) {
    .disney-movies {
        padding: 4rem 3rem;
    }
    
    .disney-movies h3 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .disney-movies .carouselll {
        gap: 2rem;
        padding: 1.5rem 0 2.5rem 0;
    }
    
    .movieeeee {
        width: 320px;
        min-width: 320px;
        padding: 1.2rem;
    }
    
    .movieeeee img {
        height: 420px;
    }
    
    .movieeeee h4 {
        font-size: 1.1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .movieeeee p {
        font-size: 1rem;
    }
}

/* ===== Efectos especiales para interacción Disney ===== */
.movieeeee a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.disney-movies .carouselll:hover .movieeeee:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
}

/* ===== Indicador de scroll para el carousel Disney ===== */
.disney-movies .carouselll {
    position: relative;
}

.disney-movies .carouselll::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #006bb3, #ffd700, #006bb3, transparent);
    border-radius: 2px;
}

/* ===== Efecto mágico de partículas (opcional) ===== */
.disney-movies::after {
    content: '✨ ⭐ ✨ 🌟 ✨ ⭐ ✨';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== ESTILOS ADICIONALES PARA MODO TV ===== */
/* Agregar estos estilos a tu stylus.css */

/* Desactivar efectos hover del mouse en modo TV */
.tv-mode .movie:hover,
.tv-mode .moviemarvel:hover,
.tv-mode .movieterror:hover,
.tv-mode .movieee:hover,
.tv-mode .movieeee:hover,
.tv-mode .movieeeee:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Solo aplicar efectos cuando está enfocado con el control */
.tv-mode .tv-focused.movie,
.tv-mode .tv-focused.moviemarvel,
.tv-mode .tv-focused.movieterror,
.tv-mode .tv-focused.movieee,
.tv-mode .tv-focused.movieeee,
.tv-mode .tv-focused.movieeeee {
    transform: scale(1.15) translateY(-20px) !important;
    z-index: 1000 !important;
    box-shadow: 
        0 0 0 4px #fff,
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(255, 255, 255, 0.5) !important;
}

/* Animación más suave para transiciones */
.tv-mode .movie,
.tv-mode .moviemarvel,
.tv-mode .movieterror,
.tv-mode .movieee,
.tv-mode .movieeee,
.tv-mode .movieeeee {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Focus específico por tipo de sección */
.recommended-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #FFD700,
        0 20px 40px rgba(255, 215, 0, 0.6),
        0 0 80px rgba(255, 215, 0, 0.3) !important;
}

.marvel-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #ED1D24,
        0 20px 40px rgba(237, 29, 36, 0.6),
        0 0 80px rgba(237, 29, 36, 0.3) !important;
}

.terror-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #8B0000,
        0 20px 40px rgba(139, 0, 0, 0.6),
        0 0 80px rgba(139, 0, 0, 0.3) !important;
}

.netflix-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #E50914,
        0 20px 40px rgba(229, 9, 20, 0.6),
        0 0 80px rgba(229, 9, 20, 0.3) !important;
}

.disney-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #006BB3,
        0 20px 40px rgba(0, 107, 179, 0.6),
        0 0 80px rgba(0, 107, 179, 0.3) !important;
}

.prime-movies .tv-focused {
    box-shadow: 
        0 0 0 4px #00A8E1,
        0 20px 40px rgba(0, 168, 225, 0.6),
        0 0 80px rgba(0, 168, 225, 0.3) !important;
}

/* Indicador de sección activa mejorado */
.tv-active-section {
    position: relative;
    transition: all 0.3s ease;
}

.tv-active-section > h3 {
    padding-left: 40px;
    transition: all 0.3s ease;
}

.tv-active-section > h3::before {
    content: '▶';
    position: absolute;
    left: 10px;
    color: #fff;
    font-size: 1.2em;
    animation: pulseArrow 1.5s ease-in-out infinite;
}

@keyframes pulseArrow {
    0%, 100% { 
        transform: translateX(0);
        opacity: 1;
    }
    50% { 
        transform: translateX(10px);
        opacity: 0.7;
    }
}

/* Mejorar visibilidad del contenido enfocado */
.tv-focused img {
    filter: brightness(1.1) contrast(1.1) saturate(1.2) !important;
}

.tv-focused h4 {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.tv-focused p {
    transform: scale(1.1) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* Navegación rápida estilizada */
.tv-quick-nav {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.95) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.tv-quick-nav h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.tv-quick-nav-item {
    font-size: 1.2rem;
    padding: 15px 30px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tv-quick-nav-item.tv-focused {
    background: linear-gradient(90deg, #e50914 0%, #ff6b6b 100%);
    border-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.5);
}

/* Mejoras para dispositivos de TV específicos */
@media screen and (min-width: 1920px) {
    .tv-mode .tv-focused {
        transform: scale(1.2) translateY(-30px) !important;
    }
    
    .tv-help {
        font-size: 18px;
        padding: 20px 30px;
    }
    
    .tv-quick-nav-item {
        font-size: 1.4rem;
        padding: 20px 40px;
    }
}

/* Animación de entrada para modo TV */
.tv-mode .movie,
.tv-mode .moviemarvel,
.tv-mode .movieterror,
.tv-mode .movieee,
.tv-mode .movieeee,
.tv-mode .movieeeee {
    animation: none !important; /* Desactivar animaciones automáticas */
}

/* Asegurar que los carousels no muestren scrollbar */
.tv-mode .carousel::-webkit-scrollbar,
.tv-mode .carouselll::-webkit-scrollbar,
.tv-mode .carouselllmar::-webkit-scrollbar,
.tv-mode .carouselllterror::-webkit-scrollbar {
    display: none !important;
}

/* Mejorar contraste para TV */
.tv-mode {
    filter: contrast(1.1);
}

/* Focus para botones de navegación del carousel */
.tv-mode .nav-btn.tv-focused {
    background: linear-gradient(135deg, #00A8E1 0%, #146EB4 100%) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 30px rgba(0, 168, 225, 0.8) !important;
    border: 3px solid #fff !important;
}

/* Focus para enlaces "Ver todas" */
.tv-mode .ver-todas.tv-focused {
    transform: scale(1.15) !important;
    box-shadow: 0 0 30px currentColor !important;
    animation: pulseButton 1.5s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% { 
        box-shadow: 0 0 30px currentColor;
    }
    50% { 
        box-shadow: 0 0 50px currentColor, 0 0 80px currentColor;
    }
}