/* ================================
   MADISONALLEY.TV - DISEÑO CINEMATOGRÁFICO
   Inspirado en Netflix, HBO Max y YouTube Premium
================================= */

/* ================================
   HERO SECTION - STREAMING STYLE
================================= */
.matv-streaming-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

/* Video Background con overlay gradiente */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    z-index: 3;
}

/* Hero Content */
.hero-streaming-content {
    position: relative;
    z-index: 10;
}

/* Live Badge estilo streaming */
.streaming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.5);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #E50914;
    border-radius: 50%;
    animation: pulse-live 2s infinite;
    box-shadow: 0 0 10px #E50914;
}

@keyframes pulse-live {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.3); 
    }
}

.streaming-badge span {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Hero Title */
.matv-streaming-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-streaming-subtitle {
    font-size: 1.4rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero Stats - Glassmorphism */
.hero-streaming-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-item-hero {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-numberr,
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffea 0%, #0061f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Buttons - Netflix Style */
.hero-streaming-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-streaming-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #E50914;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.5);
    border: none;
}

.btn-streaming-primary:hover {
    background: #f40612;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.7);
    color: #ffffff;
}

.btn-streaming-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(109, 109, 110, 0.7);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: none;
}

.btn-streaming-secondary:hover {
    background: rgba(109, 109, 110, 0.9);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Floating Shapes Animation */
.floating-shapes-streaming {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape-streaming {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.08;
    filter: blur(30px);
    animation: float-cinema 25s infinite ease-in-out;
}

.shape-streaming.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
}

.shape-streaming.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation-delay: 8s;
}

.shape-streaming.shape-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 40%;
    animation-delay: 15s;
}

@keyframes float-cinema {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, -80px) scale(1.1); }
    66% { transform: translate(-60px, 60px) scale(0.9); }
}

/* ================================
   FEATURED VIDEO SECTION
================================= */
.featured-video-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.featured-label i {
    color: #FFD700;
    font-size: 1.2rem;
    animation: star-pulse 2s infinite;
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.featured-label span {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Featured Video Player - Cinematográfico */
.featured-video-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-video-player:hover {
    transform: scale(1.02);
    box-shadow: 0 50px 120px rgba(0, 255, 234, 0.3);
}

.video-player-wrapper-streaming {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    background: #000000;
}

.video-player-wrapper-streaming iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Quality Badge - Estilo HBO */
.video-quality-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-quality-badge i {
    color: #00ffea;
    font-size: 1.2rem;
}

.video-quality-badge span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Access Info - Premium Style */
.access-info-streaming {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: rgba(0, 255, 234, 0.05);
    border: 1px solid rgba(0, 255, 234, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.access-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 234, 0.15);
    border-radius: 50%;
}

.access-icon i {
    color: #00ffea;
    font-size: 1.4rem;
}

.access-info-streaming p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================
   ALL EPISODES SECTION - GRID MODERNO
================================= */
.all-episodes-section {
    padding: 120px 0;
    background: #000000;
}

.section-header-streaming {
    margin-bottom: 4rem;
}

.section-title-streaming {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.section-subtitle-streaming {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

/* Episode Cards - YouTube/Netflix Hybrid */
.episode-card-streaming {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    border: 1px solid transparent;
}

.episode-card-streaming:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 255, 234, 0.4);
    border-color: rgba(0, 255, 234, 0.3);
    background: #222222;
}

.episode-link {
    text-decoration: none;
    display: block;
}

/* Episode Thumbnail - Con overlay gradiente */
.episode-thumbnail-streaming {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
}

.episode-thumbnail-streaming::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.episode-card-streaming:hover .episode-thumbnail-streaming::after {
    opacity: 1;
}

.episode-thumbnail-streaming img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.episode-card-streaming:hover .episode-thumbnail-streaming img {
    transform: scale(1.15);
}

/* Play Overlay - Efecto cinematográfico */
.episode-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.episode-card-streaming:hover .episode-play-overlay {
    opacity: 1;
}

.play-button-circle-streaming {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E50914;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(229, 9, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
    }
}

.episode-card-streaming:hover .play-button-circle-streaming {
    transform: scale(1.2);
    background: #f40612;
}

.play-button-circle-streaming i {
    font-size: 2rem;
    color: #ffffff;
    padding-left: 5px;
}

/* Episode Badges - Premium indicators */
.episode-badge-preview {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 234, 0.95);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 255, 234, 0.5);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.episode-badge-preview i {
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
}

.episode-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 700;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-duration i {
    font-size: 1rem;
}

/* Episode Info */
.episode-info-streaming {
    padding: 1.75rem;
}

.episode-title-streaming {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.episode-card-streaming:hover .episode-title-streaming {
    color: #00ffea;
}

.episode-meta-streaming {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.episode-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.episode-date i {
    color: #0061f6;
}

/* Feature Tags - Estilo pills */
.episode-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 14px;
    background: rgba(0, 255, 234, 0.15);
    border: 1px solid rgba(0, 255, 234, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #00ffea;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-tag i {
    font-size: 0.9rem;
}

/* No Content State */
.no-content-streaming {
    text-align: center;
    padding: 120px 40px;
    background: #1a1a1a;
    border-radius: 24px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.no-content-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.no-content-icon i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.no-content-streaming h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.no-content-streaming p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ================================
   NEWSLETTER CTA - PREMIUM STYLE
================================= */
.newsletter-streaming-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #000043 0%, #000864 50%, #000043 100%);
    overflow: hidden;
}

.newsletter-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.newsletter-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.newsletter-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: #00ffea;
    top: -300px;
    right: -300px;
    animation: orb-float 20s infinite ease-in-out;
}

.newsletter-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: #ff00ff;
    bottom: -250px;
    left: -250px;
    animation: orb-float 25s infinite ease-in-out reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.newsletter-content-streaming {
    position: relative;
    z-index: 10;
}

.newsletter-icon-streaming {
    width: 100px;
    height: 100px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 255, 234, 0.3);
}

.newsletter-icon-streaming i {
    font-size: 3rem;
    color: #00ffea;
}

.newsletter-content-streaming h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.newsletter-content-streaming > p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-newsletter-streaming {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 20px 50px;
    background: #ffffff;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-newsletter-streaming:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.newsletter-note {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ================================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 1200px) {
    .matv-streaming-hero h1 {
        font-size: 3.8rem;
    }
    
    .hero-streaming-stats {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 991px) {
    .matv-streaming-hero h1 {
        font-size: 3.2rem;
    }

    .hero-streaming-subtitle {
        font-size: 1.2rem;
    }

    .hero-streaming-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-streaming-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-streaming-primary,
    .btn-streaming-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title-streaming {
        font-size: 2.4rem;
    }

    .newsletter-content-streaming h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .matv-streaming-hero {
        min-height: 85vh;
    }

    .matv-streaming-hero h1 {
        font-size: 2.5rem;
    }

    .hero-streaming-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .featured-video-section,
    .all-episodes-section {
        padding: 80px 0;
    }

    .section-title-streaming {
        font-size: 2rem;
    }

    .episode-title-streaming {
        font-size: 1.1rem;
    }

    .newsletter-streaming-section {
        padding: 100px 0;
    }

    .newsletter-content-streaming h2 {
        font-size: 2.2rem;
    }

    .newsletter-content-streaming > p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .matv-streaming-hero h1 {
        font-size: 2rem;
    }

    .hero-streaming-stats {
        padding: 1.25rem;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-streaming-primary,
    .btn-streaming-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .section-title-streaming {
        font-size: 1.8rem;
    }

    .episode-info-streaming {
        padding: 1.5rem;
    }

    .newsletter-content-streaming h2 {
        font-size: 1.8rem;
    }

    .btn-newsletter-streaming {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* ================================
   ANIMACIONES ADICIONALES
================================= */

/* Smooth reveal para cards */
@keyframes reveal-card {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.episode-card-streaming {
    animation: reveal-card 0.6s ease forwards;
    opacity: 0;
}

.episode-card-streaming:nth-child(1) { animation-delay: 0.1s; }
.episode-card-streaming:nth-child(2) { animation-delay: 0.2s; }
.episode-card-streaming:nth-child(3) { animation-delay: 0.3s; }
.episode-card-streaming:nth-child(4) { animation-delay: 0.4s; }
.episode-card-streaming:nth-child(5) { animation-delay: 0.5s; }
.episode-card-streaming:nth-child(6) { animation-delay: 0.6s; }
.episode-card-streaming:nth-child(7) { animation-delay: 0.7s; }
.episode-card-streaming:nth-child(8) { animation-delay: 0.8s; }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Glow effect en hover para elementos interactivos */
.btn-streaming-primary:hover,
.play-button-circle-streaming:hover {
    filter: brightness(1.2);
}

/* Transition suave para todos los links */
a {
    transition: all 0.3s ease;
}

/* ================================
   EFECTOS ADICIONALES PREMIUM
================================= */

/* Efecto parallax sutil en hero */
.hero-streaming-content {
    will-change: transform;
}

/* Loading skeleton para thumbnails */
.episode-thumbnail-streaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Focus states para accesibilidad */
.btn-streaming-primary:focus,
.btn-streaming-secondary:focus,
.btn-newsletter-streaming:focus {
    outline: 3px solid rgba(0, 255, 234, 0.5);
    outline-offset: 3px;
}

/* Mejoras para modo reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================
   UTILIDADES ESPECÍFICAS MATV
================================= */

/* Text gradient effect */
.gradient-text-matv {
    background: linear-gradient(135deg, #00ffea 0%, #0061f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Separator line style */
.matv-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    margin: 4rem 0;
}

/* Container custom para MATV */
.matv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid responsive mejorado */
.matv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .matv-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .matv-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}