/**
 * Streametx - Estilos para Películas y Series
 */

:root {
    --rojo-glow: rgba(229, 9, 20, 0.4);
}

.contenido-container {
    padding-bottom: 72px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Buscador Principal */
.search-section {
    padding: 12px 16px;
    margin-top: 4px;
}

.search-box {
    background: var(--bg-card);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-box:focus-within {
    border-color: var(--rojo);
    box-shadow: 0 0 15px var(--rojo-glow);
}

.search-box i {
    color: var(--texto-dim);
    width: 20px;
    height: 20px;
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--texto);
    font-size: 15px;
    width: 100%;
    outline: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 62vw;
    max-height: 420px;
    min-height: 280px;
    overflow: hidden;
    margin-bottom: 0;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: flex-end;
    padding: 28px 20px 24px;
}

.slider-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.slider-item.active .slider-content {
    opacity: 1;
}

.slider-title {
    font-size: 24px;
    font-weight: 900;
    margin: 6px 0 4px;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    letter-spacing: 0.3px;
}

.slider-desc {
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.slider-actions {
    display: flex;
    gap: 10px;
}

.slider-actions .btn {
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.slider-actions .btn-primary {
    background: var(--rojo);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(229,9,20,0.4);
}

.slider-actions .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 18px;
    border-radius: 3px;
}

/* ── Sport Event Slider (Strario-style) ── */
.slider-item-sport {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 28px;
}

.slider-sport-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.slider-sport-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.slider-sport-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.slider-team-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.slider-item-sport.is-live .slider-team-logo {
    border-color: rgba(229,9,20,0.5);
    box-shadow: 0 0 20px rgba(229,9,20,0.2), 0 4px 20px rgba(0,0,0,0.4);
}

.slider-team-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.slider-team-fallback {
    font-size: 14px;
    font-weight: 900;
    color: var(--texto-secondary);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slider-sport-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.slider-vs-text {
    font-size: 18px;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

.slider-score-live {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(229,9,20,0.5);
    letter-spacing: 1px;
    animation: scoreGlow 2s ease-in-out infinite;
}

@keyframes scoreGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(229,9,20,0.3); }
    50% { text-shadow: 0 0 30px rgba(229,9,20,0.6); }
}

.slider-sport-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.slider-sport-status.is-live {
    background: rgba(229,9,20,0.15);
    border-color: rgba(229,9,20,0.3);
    color: #ff6b6b;
}

.slider-item-sport .slider-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 6px;
}

.slider-item-sport .slider-desc {
    text-align: center;
    margin-bottom: 8px;
}

.slider-sport-channels {
    font-size: 11px;
    color: var(--verde);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slider-sport-channels::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--verde);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--verde);
}

.slider-cta {
    width: 100%;
    max-width: 320px;
    padding: 14px 28px !important;
    border-radius: 28px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 24px rgba(229,9,20,0.35);
    transition: all 0.25s ease;
}

.slider-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229,9,20,0.5);
}

.slider-item-sport .slider-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Content Sections */
.content-section {
    padding: 0 14px;
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 14px;
    font-weight: 800;
    border-left: 3px solid var(--rojo);
    padding-left: 10px;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.btn-ver-mas {
    background: transparent;
    border: none;
    color: var(--texto-dim);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: var(--font);
    transition: color 0.2s;
}
.btn-ver-mas:hover { color: var(--accent); }

.content-grid-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.content-grid-scroll::-webkit-scrollbar {
    display: none;
}

/* Catalog Grid - proper responsive grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 2px;
}

@media (min-width: 400px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (min-width: 600px) {
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (min-width: 769px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

.content-card {
    min-width: 0;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.content-grid-scroll .content-card {
    min-width: 115px;
    width: 115px;
    flex-shrink: 0;
}

.content-card:hover {
    transform: translateY(-4px);
}

.card-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    transition: box-shadow 0.3s ease;
}

.content-card:hover .card-poster {
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover .card-overlay {
    opacity: 1;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: var(--rojo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px var(--rojo-glow);
}

.card-info {
    margin-top: 6px;
}

.card-title {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    letter-spacing: -0.1px;
}

.card-meta {
    font-size: 10px;
    color: var(--texto-dim);
    display: flex;
    justify-content: space-between;
    margin-top: 3px;
}

.card-rating {
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* ── Netflix-style Top 10 ── */
.top10-section {
    overflow: visible;
}

.top10-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
    background: var(--rojo);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.top10-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.top10-scroll::-webkit-scrollbar { display: none; }

.top10-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.top10-item:hover {
    transform: scale(1.08);
    z-index: 5;
}

.top10-rank-container {
    position: relative;
    width: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-right: -18px;
    z-index: 2;
}

.top10-rank {
    font-family: 'Outfit', sans-serif;
    font-size: 120px;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 3px rgba(229, 9, 20, 0.7);
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.2);
    user-select: none;
    transition: all 0.35s ease;
    filter: drop-shadow(0 4px 20px rgba(229, 9, 20, 0.15));
}

.top10-item:hover .top10-rank {
    -webkit-text-stroke: 3px rgba(229, 9, 20, 1);
    text-shadow: 0 0 40px rgba(229, 9, 20, 0.5);
    filter: drop-shadow(0 4px 30px rgba(229, 9, 20, 0.4));
    transform: scale(1.05);
}

.top10-poster {
    position: relative;
    width: 120px;
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    z-index: 1;
    transition: box-shadow 0.35s ease;
}

.top10-item:hover .top10-poster {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(229, 9, 20, 0.3), 0 0 30px rgba(229, 9, 20, 0.15);
}

.top10-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.top10-item:hover .top10-poster img {
    transform: scale(1.05);
}

.top10-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.top10-item:hover .top10-overlay {
    opacity: 1;
}

.top10-play {
    width: 44px;
    height: 44px;
    background: var(--rojo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.6);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.top10-item:hover .top10-play {
    transform: scale(1);
}

.top10-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.top10-title {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.top10-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* Responsive top 10 */
@media (max-width: 480px) {
    .top10-rank {
        font-size: 72px;
    }
    .top10-rank-container {
        width: 35px;
        margin-right: -12px;
    }
    .top10-poster {
        width: 100px;
    }
}

@media (min-width: 769px) {
    .top10-poster {
        width: 160px;
    }
    .top10-rank {
        font-size: 140px;
    }
    .top10-rank-container {
        width: 60px;
        margin-right: -22px;
    }
}

/* Legacy top classes (kept for compat) */
.top-10-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 40px;
    scrollbar-width: none;
}
.top-10-scroll::-webkit-scrollbar { display: none; }
.top-item { display: none; }
.top-rank { display: none; }

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--rojo);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 10px var(--rojo);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.h-scroll {
    scrollbar-width: none;
}
.h-scroll::-webkit-scrollbar { display: none; }

/* Detail View */
.detail-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg);
    z-index: 2000;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease;
}

.detail-overlay.active {
    opacity: 1;
    transform: translateY(0);
}

.detail-header {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.detail-back {
    position: absolute;
    top: 20px; left: 20px;
    width: 40px; height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.detail-body {
    padding: 0 20px 40px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.detail-main {
    display: flex;
    gap: 30px;
}

.detail-poster {
    width: 250px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.detail-poster img {
    width: 100%;
    display: block;
}

.detail-info {
    flex: 1;
    padding-top: 100px;
}

.detail-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--texto-dim);
    margin-bottom: 30px;
}

/* Links Section */
.links-section, .seasons-section {
    margin-top: 40px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.btn-link {
    background: var(--bg-card);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--texto);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-link:hover {
    border-color: var(--rojo);
    background: rgba(229, 9, 20, 0.05);
    transform: scale(1.02);
}

.btn-link i {
    color: var(--rojo);
}

.link-text {
    text-align: left;
}

.link-text span {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.link-text small {
    color: var(--texto-dim);
    font-size: 11px;
}

/* Seasons Tabs */
.seasons-tabs {
    display: flex;
    gap: 10px;
    margin: 15px 0 25px;
    overflow-x: auto;
}

.btn-tab {
    padding: 10px 25px;
    background: var(--bg-card);
    border: 1px solid var(--borde);
    border-radius: 8px;
    color: var(--texto);
    font-weight: 700;
    cursor: pointer;
}

.btn-tab.active {
    background: var(--rojo);
    border-color: var(--rojo);
    box-shadow: 0 0 15px var(--rojo-glow);
}

.episodios-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.episodio-item {
    background: var(--bg-card);
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episodio-item:hover {
    border-color: var(--rojo);
    background: rgba(229, 9, 20, 0.05);
}

.epi-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--rojo);
    opacity: 0.5;
}

.epi-info {
    flex: 1;
}

.epi-title {
    font-weight: 700;
    font-size: 15px;
}

.epi-desc {
    font-size: 12px;
    color: var(--texto-dim);
    margin-top: 4px;
}

/* Subscriptions Card */
.sub-card {
    background: linear-gradient(135deg, #1a1f2e, #0a0d15);
    border: 1px solid var(--rojo);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: var(--rojo);
    filter: blur(100px);
    opacity: 0.2;
}

.sub-plan-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--texto);
    margin-bottom: 5px;
}

.sub-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.sub-detail span { color: var(--texto-dim); }

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.plan-item {
    background: var(--bg-card);
    border: 1px solid var(--borde);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.plan-item.current {
    border-color: var(--rojo);
    box-shadow: 0 0 20px var(--rojo-glow);
}

.plan-header h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--rojo);
}

.plan-price span {
    font-size: 14px;
    color: var(--texto-dim);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.plan-features li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features i {
    color: var(--rojo);
    width: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .detail-main {
        flex-direction: column;
    }
    .detail-poster {
        width: 100%;
        max-width: 140px;
        margin: 0 auto;
    }
    .detail-info {
        padding-top: 12px;
        text-align: center;
    }
    .detail-title {
        font-size: 20px;
    }
    .detail-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 11px;
    }
    .detail-header {
        height: 35vh;
    }
    .detail-desc {
        font-size: 12px;
        line-height: 1.5;
    }
    .slider-item {
        padding: 18px 16px;
    }
    .slider-title {
        font-size: 18px;
    }
    .hero-slider {
        height: 50vw;
        min-height: 200px;
    }
    .slider-dots {
        right: 14px;
        bottom: 12px;
    }
    .links-grid {
        grid-template-columns: 1fr;
    }
    .badge {
        font-size: 8px;
        padding: 2px 6px;
    }
    .section-title {
        font-size: 13px;
    }
    .content-grid-scroll .content-card {
        min-width: 100px;
        width: 100px;
    }
    .btn {
        font-size: 11px;
        padding: 8px 14px;
    }
}

/* ============================================
   LIVE EVENTS STRIP - Premium Sports Ticker
   ============================================ */

.live-events-strip {
    padding: 0 0 6px;
    margin-bottom: 8px;
}

.live-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 10px;
}

.live-strip-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--texto);
}

.live-strip-title .strip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--rojo), #ff4444);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(229, 9, 20, 0.4); }
    50% { box-shadow: 0 0 25px rgba(229, 9, 20, 0.6); }
}

.live-strip-count {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    background: rgba(229, 9, 20, 0.15);
    color: var(--rojo);
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.live-strip-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--texto-dim);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-strip-link:hover {
    color: var(--accent);
}

.live-strip-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 20px 12px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.live-strip-scroll::-webkit-scrollbar {
    display: none;
}

/* ── Individual Event Card ── */
.live-ev-card {
    flex-shrink: 0;
    width: 260px;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.live-ev-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255,255,255,0.1);
}

.live-ev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--rojo), #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-ev-card.is-live::before {
    opacity: 1;
    animation: liveBarPulse 2s ease-in-out infinite;
}

@keyframes liveBarPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Live card gets special treatment */
.live-ev-card.is-live {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.08) 0%, rgba(255,255,255,0.03) 100%);
    border-color: rgba(229, 9, 20, 0.2);
}

.live-ev-card.is-live:hover {
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.15);
}

/* Card header */
.live-ev-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.live-ev-league {
    font-size: 10px;
    font-weight: 700;
    color: var(--texto-dim);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-ev-status {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

/* Teams matchup */
.live-ev-matchup {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.live-ev-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.live-ev-team-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.live-ev-team-logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.live-ev-team-name {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
    color: var(--texto-secondary);
}

.live-ev-center {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 4px;
}

.live-ev-score {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--texto);
}

.live-ev-score.score-active {
    color: var(--rojo);
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

.live-ev-vs {
    font-size: 11px;
    font-weight: 700;
    color: var(--texto-dim);
}

/* Period + minute displayed horizontally */
.live-ev-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 600;
    color: var(--verde);
    text-transform: uppercase;
    white-space: nowrap;
}

.live-ev-detail .detail-sep {
    opacity: 0.5;
}

.live-ev-period {
    font-size: 9px;
    font-weight: 600;
    color: var(--verde);
    text-transform: uppercase;
}

/* Title-only events (UFC, F1, etc.) */
.live-ev-title-only {
    font-size: 13px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Channel indicator at bottom */
.live-ev-channel {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--texto-dim);
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.live-ev-channel .ch-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--verde);
}

/* Time badge for upcoming events */
.live-ev-time {
    font-size: 11px;
    font-weight: 700;
    color: var(--texto-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-ev-time .time-icon {
    opacity: 0.5;
}

/* "See All" card */
.live-ev-see-all {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    cursor: pointer;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    transition: all 0.25s ease;
    color: var(--texto-dim);
    scroll-snap-align: start;
}

.live-ev-see-all:hover {
    background: rgba(229, 9, 20, 0.05);
    border-color: rgba(229, 9, 20, 0.3);
    color: var(--accent);
}

.live-ev-see-all .see-all-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.live-ev-see-all:hover .see-all-icon {
    background: rgba(229, 9, 20, 0.15);
}

.live-ev-see-all .see-all-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .live-ev-card {
        width: 240px;
        padding: 12px 14px;
    }

    .live-strip-scroll {
        padding: 4px 16px 10px;
        gap: 8px;
    }

    .live-strip-header {
        padding: 0 16px 8px;
    }
}
