/* ============================================
   LVS LALIGA - ESTILOS COMPLETOS
   ============================================ */

/* --- VARIABLES CSS --- */
:root {
    --lvs-primary: #0066cc;
    --lvs-primary-light: #3385d6;
    --lvs-primary-dark: #004c99;
    --lvs-champions: #2e7d32;
    --lvs-europa: #ff9800;
    --lvs-conference: #2196f3;
    --lvs-descenso: #d32f2f;
    --lvs-border: #e0e0e0;
    --lvs-bg-hover: #f8f9fa;
    --lvs-shadow: 0 2px 8px rgba(0,0,0,0.1);
    --lvs-shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
}

/* --- WRAPPER GENERAL --- */
.lvs-laliga-wrapper {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
}

.lvs-laliga-error {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    text-align: center;
}

/* --- TABLA RESPONSIVE --- */
.tabla-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--lvs-shadow);
    background: white;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   CLASIFICACIÓN
   ============================================ */

.tabla-laliga {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.lvs-laliga-wrapper .tabla-laliga thead {
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%) !important;
    color: white !important;
}

.tabla-laliga th {
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tabla-laliga th.num,
.tabla-laliga th.pts-col {
    text-align: center;
}

.tabla-laliga tbody tr {
    border-bottom: 1px solid var(--lvs-border);
    transition: all 0.2s ease;
}

.tabla-laliga tbody tr:hover {
    background: var(--lvs-bg-hover);
    transform: translateX(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tabla-laliga td {
    padding: 14px 12px;
    font-size: 14px;
}

.tabla-laliga td.num {
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Posición */
.tabla-laliga .posicion {
    width: 60px;
    text-align: center;
}

.numero-posicion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-weight: 700;
    font-size: 16px;
    color: #666;
    background: #f5f5f5;
    border-radius: 6px;
}

/* Equipo */
.equipo-cell {
    min-width: 200px;
}

.equipo-nombre {
    display: flex;
    align-items: center;
    gap: 12px;
}

.escudo-equipo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

.nombre-equipo {
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
}

/* Diferencia de goles */
.dg-cell {
    font-weight: 600;
}

.diferencia-goles.positivo {
    color: var(--lvs-champions);
}

.diferencia-goles.negativo {
    color: var(--lvs-descenso);
}

/* Puntos */
.tabla-laliga .pts {
    font-weight: 700;
    color: var(--lvs-primary);
    font-size: 16px;
}

/* Colores por posición */
.lvs-laliga-wrapper .fila-equipo.pos-1,
.lvs-laliga-wrapper .fila-equipo.pos-2,
.lvs-laliga-wrapper .fila-equipo.pos-3,
.lvs-laliga-wrapper .fila-equipo.pos-4 {
    border-left: 5px solid var(--lvs-champions) !important;
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.03) 0%, transparent 100%) !important;
}

.lvs-laliga-wrapper .fila-equipo.pos-5,
.lvs-laliga-wrapper .fila-equipo.pos-6 {
    border-left: 5px solid var(--lvs-europa) !important;
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.03) 0%, transparent 100%) !important;
}

.lvs-laliga-wrapper .fila-equipo.pos-7 {
    border-left: 5px solid var(--lvs-conference) !important;
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.03) 0%, transparent 100%) !important;
}

.lvs-laliga-wrapper .fila-equipo.pos-18,
.lvs-laliga-wrapper .fila-equipo.pos-19,
.lvs-laliga-wrapper .fila-equipo.pos-20 {
    border-left: 5px solid var(--lvs-descenso) !important;
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.03) 0%, transparent 100%) !important;
}

/* Leyenda */
.leyenda-posiciones {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--lvs-bg-hover);
    border-radius: 0 0 12px 12px;
    font-size: 13px;
}

.leyenda-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.leyenda-color {
    width: 24px;
    height: 5px;
    border-radius: 3px;
}

.leyenda-color.champions { background: var(--lvs-champions); }
.leyenda-color.europa { background: var(--lvs-europa); }
.leyenda-color.conference { background: var(--lvs-conference); }
.leyenda-color.descenso { background: var(--lvs-descenso); }

/* ============================================
   GOLEADORES
   ============================================ */

.tabla-goleadores {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.tabla-goleadores thead {
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    color: white;
}

.tabla-goleadores th {
    padding: 16px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tabla-goleadores th.num {
    text-align: center;
}

.tabla-goleadores tbody tr {
    border-bottom: 1px solid var(--lvs-border);
    transition: all 0.2s ease;
}

.tabla-goleadores tbody tr:hover {
    background: var(--lvs-bg-hover);
    transform: translateX(2px);
}

.tabla-goleadores td {
    padding: 14px 12px;
    font-size: 14px;
}

.tabla-goleadores td.num {
    text-align: center;
    font-variant-numeric: tabular-nums;
}

/* Medallas para top 3 */
.medalla {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-weight: 700;
    font-size: 15px;
    color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.medalla-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.medalla-2 {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.medalla-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

/* Jugador con foto */
.jugador-cell {
    min-width: 220px;
}

.jugador-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.foto-jugador {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lvs-border);
    flex-shrink: 0;
    background: #f5f5f5;
}

.foto-jugador-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.nombre-jugador {
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.nombre-equipo-pequeno {
    color: #666;
    font-size: 13px;
}

/* Goles con icono */
.tabla-goleadores .goles {
    position: relative;
}

.numero-goles {
    font-weight: 700;
    font-size: 18px;
    color: var(--lvs-descenso);
    margin-right: 6px;
}

.icon-balon {
    opacity: 0.3;
    vertical-align: middle;
}

.promedio {
    color: #666;
    font-size: 13px;
}

/* ============================================
   RESULTADOS
   ============================================ */

.partidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    padding: 4px;
}

.partido-card {
    background: white;
    border: 1px solid var(--lvs-border);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.partido-card:hover {
    box-shadow: var(--lvs-shadow-hover);
    transform: translateY(-2px);
}

.partido-fecha {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.partido-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.equipo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.equipo-local {
    justify-content: flex-end;
    text-align: right;
}

.equipo-visitante {
    justify-content: flex-start;
    text-align: left;
}

.equipo .nombre-equipo {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.equipo .goles {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    min-width: 36px;
    text-align: center;
}

.equipo .goles.ganador {
    color: var(--lvs-primary);
}

.separador {
    font-size: 18px;
    color: #999;
    font-weight: 300;
}

.partido-jornada {
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lvs-border);
}

.partido-jornada small {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.escudo-partido {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.partido-pendiente {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--lvs-border);
}

.badge-pendiente {
    display: inline-block;
    padding: 2px 8px;
    background: var(--lvs-primary);
    color: white;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

/* ============================================
   ACTUALIZACIÓN INFO
   ============================================ */

.actualizacion-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--lvs-bg-hover);
    border-radius: 0 0 12px 12px;
    color: #666;
    font-size: 13px;
}

.icon-reloj {
    color: #999;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .tabla-laliga {
        min-width: 700px;
    }
    
    .tabla-goleadores {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .lvs-laliga-wrapper {
        margin: 20px 0;
    }
    
    .tabla-laliga,
    .tabla-goleadores {
        font-size: 12px;
        min-width: 600px;
    }

    .tabla-laliga th,
    .tabla-laliga td,
    .tabla-goleadores th,
    .tabla-goleadores td {
        padding: 10px 8px;
    }

    .escudo-equipo {
        width: 36px !important;
        height: 36px !important;
    }

    .foto-jugador,
    .foto-jugador-placeholder {
        width: 40px;
        height: 40px;
    }

    .nombre-equipo {
        font-size: 13px;
    }

    .leyenda-posiciones {
        font-size: 11px;
        gap: 16px;
        padding: 12px 16px;
    }

    .partidos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .numero-posicion,
    .medalla {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .escudo-partido {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 600px) {
    .tabla-laliga th:nth-child(4),
    .tabla-laliga th:nth-child(5),
    .tabla-laliga th:nth-child(7),
    .tabla-laliga td:nth-child(4),
    .tabla-laliga td:nth-child(5),
    .tabla-laliga td:nth-child(7) {
        display: none;
    }
    
    .tabla-laliga {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .tabla-responsive {
        border-radius: 8px;
    }
    
    .tabla-laliga,
    .tabla-goleadores {
        font-size: 11px;
        min-width: 500px;
    }
    
    .tabla-laliga th,
    .tabla-laliga td {
        padding: 8px 4px;
    }
    
    .equipo-cell {
        min-width: 140px;
    }

    .equipo-nombre {
        gap: 6px;
    }

    .escudo-equipo {
        width: 24px;
        height: 24px;
    }
    
    .nombre-equipo {
        font-size: 12px;
    }

    .jugador-info {
        gap: 8px;
    }
    
    .jugador-cell {
        min-width: 160px;
    }
    
    .foto-jugador,
    .foto-jugador-placeholder {
        width: 32px;
        height: 32px;
    }

    .leyenda-posiciones {
        gap: 12px;
        padding: 10px 12px;
        font-size: 10px;
    }
    
    .leyenda-color {
        width: 20px;
        height: 4px;
    }

    .actualizacion-info {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .numero-posicion {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .tabla-laliga th:nth-child(3),
    .tabla-laliga th:nth-child(6),
    .tabla-laliga th:nth-child(8),
    .tabla-laliga td:nth-child(3),
    .tabla-laliga td:nth-child(6),
    .tabla-laliga td:nth-child(8) {
        display: none;
    }
    
    .nombre-equipo {
        font-size: 11px;
        max-width: 100px;
    }
    
    .escudo-equipo {
        width: 20px;
        height: 20px;
    }
}
/* ============================================
   VERSIÓN MÓVIL COLAPSABLE - AÑADIR AL FINAL
   ============================================ */

/* Control de visibilidad desktop/mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* --- TABLA MÓVIL COLAPSABLE --- */
.tabla-mobile {
    background: white;
    border-radius: 12px;
    box-shadow: var(--lvs-shadow);
    overflow: hidden;
}

.mobile-header {
    display: grid;
    grid-template-columns: 50px 1fr 50px 30px;
    align-items: center;
    padding: 14px 12px;
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-h-pos {
    text-align: center;
}

.mobile-h-pts {
    text-align: center;
}

/* Fila principal */
.mobile-row {
    border-bottom: 1px solid var(--lvs-border);
}

.mobile-row:last-child {
    border-bottom: none;
}

.mobile-row-main {
    display: grid;
    grid-template-columns: 50px 1fr 50px 30px;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-row-main:hover {
    background: var(--lvs-bg-hover);
}

.mobile-row-main:active {
    background: #e9ecef;
}

.mobile-pos {
    text-align: center;
}

.mobile-pos .numero-posicion {
    width: 28px;
    height: 28px;
    font-size: 13px;
}

.mobile-equipo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 8px;
}

.mobile-equipo .escudo-equipo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.mobile-equipo .nombre-equipo {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-pts {
    text-align: center;
    font-size: 16px;
    color: var(--lvs-primary);
}

.mobile-expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: transform 0.3s ease;
}

.mobile-row.expanded .mobile-expand-icon {
    transform: rotate(180deg);
}

/* Detalles expandibles */
.mobile-row-details {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-row.expanded .mobile-row-details {
    max-height: 200px;
    padding: 12px 16px 16px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.detail-item {
    background: white;
    padding: 10px 8px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.detail-item.destacado {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
}

.detail-label {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.detail-value.positivo {
    color: var(--lvs-champions);
}

.detail-value.negativo {
    color: var(--lvs-descenso);
}

/* Colores por posición en móvil */
.mobile-row.pos-1 .mobile-row-main,
.mobile-row.pos-2 .mobile-row-main,
.mobile-row.pos-3 .mobile-row-main,
.mobile-row.pos-4 .mobile-row-main {
    border-left: 4px solid var(--lvs-champions);
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.05) 0%, transparent 100%);
}

.mobile-row.pos-5 .mobile-row-main,
.mobile-row.pos-6 .mobile-row-main {
    border-left: 4px solid var(--lvs-europa);
    background: linear-gradient(90deg, rgba(255, 152, 0, 0.05) 0%, transparent 100%);
}

.mobile-row.pos-7 .mobile-row-main {
    border-left: 4px solid var(--lvs-conference);
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.05) 0%, transparent 100%);
}

.mobile-row.pos-18 .mobile-row-main,
.mobile-row.pos-19 .mobile-row-main,
.mobile-row.pos-20 .mobile-row-main {
    border-left: 4px solid var(--lvs-descenso);
    background: linear-gradient(90deg, rgba(211, 47, 47, 0.05) 0%, transparent 100%);
}

/* Leyenda responsive */
@media (max-width: 768px) {
    .leyenda-posiciones {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px;
        font-size: 11px;
    }
    
    .leyenda-item {
        gap: 6px;
    }
    
    .leyenda-color {
        width: 20px;
        height: 4px;
    }
    
    .actualizacion-info {
        justify-content: center;
        font-size: 11px;
        padding: 10px;
    }
}

/* ============================================
   GOLEADORES MÓVIL
   ============================================ */

@media (max-width: 768px) {
    .tabla-goleadores {
        min-width: 100% !important;
    }
    
    /* Ocultar columnas secundarias */
    .tabla-goleadores th:nth-child(3),
    .tabla-goleadores td:nth-child(3),
    .tabla-goleadores th:nth-child(5),
    .tabla-goleadores td:nth-child(5),
    .tabla-goleadores th:nth-child(6),
    .tabla-goleadores td:nth-child(6) {
        display: none;
    }
    
    .tabla-goleadores th,
    .tabla-goleadores td {
        padding: 10px 8px;
    }
    
    .jugador-cell {
        min-width: auto;
    }
    
    .jugador-info {
        gap: 8px;
    }
    
    .foto-jugador,
    .foto-jugador-placeholder {
        width: 36px !important;
        height: 36px !important;
    }
    
    .nombre-jugador {
        font-size: 13px;
    }
    
    .numero-goles {
        font-size: 16px;
    }
    
    .medalla {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ============================================
   RESULTADOS MÓVIL
   ============================================ */

@media (max-width: 768px) {
    .partidos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }
    
    .partido-card {
        padding: 12px;
        border-radius: 8px;
    }
    
    .partido-fecha {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .equipo .nombre-equipo {
        font-size: 12px;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .equipo .goles {
        font-size: 20px;
        min-width: 28px;
    }
    
    .escudo-partido {
        width: 24px;
        height: 24px;
    }
    
    .separador {
        font-size: 16px;
    }
    
    .partido-jornada {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .badge-pendiente {
        font-size: 9px;
        padding: 2px 6px;
    }
}

@media (max-width: 400px) {
    .equipo .nombre-equipo {
        max-width: 60px;
        font-size: 11px;
    }
    
    .equipo .goles {
        font-size: 18px;
    }
    
    .escudo-partido {
        width: 20px;
        height: 20px;
    }
}
/* ============================================
   GOLEADORES MÓVIL COLAPSABLE
   ============================================ */

/* Header goleadores móvil */
.goleadores-header {
    grid-template-columns: 50px 1fr 60px 30px;
}

.mobile-h-goles {
    text-align: center;
}

/* Fila goleador móvil */
.goleador-row .mobile-row-main {
    grid-template-columns: 50px 1fr 60px 30px;
}

.mobile-jugador {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 8px;
    overflow: hidden;
}

.foto-jugador-mobile {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lvs-border);
    flex-shrink: 0;
    background: #f5f5f5;
}

.foto-jugador-placeholder-mobile {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.mobile-jugador .nombre-jugador {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-goles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    color: var(--lvs-descenso);
}

.icon-balon-mobile {
    opacity: 0.4;
}

/* Detalles goleador expandido */
.goleador-details {
    grid-template-columns: 1.5fr 1fr 1fr;
}

.equipo-detail .detail-value {
    font-size: 13px;
    font-weight: 500;
}

/* Medallas en móvil */
.goleador-row .medalla {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

/* Top 3 destacado */
.goleador-row[data-posicion="1"] .mobile-row-main,
.goleador-row[data-posicion="2"] .mobile-row-main,
.goleador-row[data-posicion="3"] .mobile-row-main {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
}
/* ============================================
   PRÓXIMA JORNADA
   ============================================ */

.proxima-jornada-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: var(--lvs-shadow);
    overflow: hidden;
}

.jornada-titulo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    color: white;
}

.jornada-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.jornada-subtitulo {
    font-size: 14px;
    opacity: 0.9;
}

.partidos-proximos {
    padding: 8px;
}

.partido-proximo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--lvs-border);
    transition: background 0.2s;
}

.partido-proximo:last-child {
    border-bottom: none;
}

.partido-proximo:hover {
    background: var(--lvs-bg-hover);
}

.partido-proximo.partido-hoy {
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.08) 0%, transparent 100%);
    border-left: 4px solid var(--lvs-champions);
}

.partido-cuando {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    gap: 4px;
}

.badge-hoy {
    background: var(--lvs-champions);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.badge-manana {
    background: var(--lvs-europa);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.fecha-dia {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.fecha-hora {
    font-size: 14px;
    font-weight: 600;
    color: var(--lvs-primary);
}

.partido-equipos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.equipo-proximo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.equipo-proximo.local {
    justify-content: flex-end;
    text-align: right;
}

.equipo-proximo.visitante {
    justify-content: flex-start;
    text-align: left;
}

.escudo-proximo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nombre-corto {
    font-weight: 500;
    font-size: 14px;
    color: #1a1a1a;
}

.vs-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Responsive próxima jornada */
@media (max-width: 600px) {
    .partido-proximo {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .partido-cuando {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .partido-equipos {
        width: 100%;
    }
    
    .escudo-proximo {
        width: 26px;
        height: 26px;
    }
    
    .nombre-corto {
        font-size: 13px;
        max-width: 90px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* ============================================
   WIDGET PORTADA
   ============================================ */

.portada-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portada-seccion {
    background: white;
    border-radius: 12px;
    box-shadow: var(--lvs-shadow);
    overflow: hidden;
}

.portada-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.icono-titulo {
    font-size: 18px;
}

/* Clasificación compacta */
.clasificacion-compacta {
    padding: 8px 0;
}

.equipo-compacto {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.equipo-compacto:last-child {
    border-bottom: none;
}

.equipo-compacto:hover {
    background: var(--lvs-bg-hover);
}

.equipo-compacto.pos-1,
.equipo-compacto.pos-2,
.equipo-compacto.pos-3,
.equipo-compacto.pos-4 {
    border-left: 3px solid var(--lvs-champions);
}

.equipo-compacto.pos-5,
.equipo-compacto.pos-6 {
    border-left: 3px solid var(--lvs-europa);
}

.pos-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: #666;
}

.escudo-mini {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.equipo-nombre-corto {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pts-compacto {
    font-size: 13px;
    font-weight: 700;
    color: var(--lvs-primary);
}

/* Partidos compactos */
.partidos-compactos {
    padding: 8px 0;
}

.partido-compacto {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.partido-compacto:last-child {
    border-bottom: none;
}

.partido-compacto.pendiente {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.03) 0%, transparent 100%);
}

.equipos-linea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.nombre-mini {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nombre-mini:first-of-type {
    text-align: right;
}

.nombre-mini:last-of-type {
    text-align: left;
}

.resultado-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 50px;
    justify-content: center;
    font-size: 14px;
}

.resultado-mini .guion {
    color: #999;
}

.hora-mini {
    background: var(--lvs-primary);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.ver-mas-link {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--lvs-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-top: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.ver-mas-link:hover {
    background: var(--lvs-bg-hover);
    text-decoration: none;
}

/* Responsive portada */
@media (max-width: 480px) {
    .portada-titulo {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .equipo-compacto {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .escudo-mini {
        width: 20px;
        height: 20px;
    }
    
    .equipo-nombre-corto,
    .nombre-mini {
        font-size: 12px;
    }
    
    .partido-compacto {
        padding: 8px 12px;
    }
}
/* Fix nombre goleadores móvil */
@media (max-width: 768px) {
    .mobile-jugador .nombre-jugador {
        white-space: normal;
        line-height: 1.3;
        font-size: 13px;
    }
    
    .goleador-row .mobile-row-main {
        grid-template-columns: 45px 1fr 55px 28px;
    }
}
/* ============================================
   PUBLICIDAD EN BLOQUES
   ============================================ */

.lvs-laliga-ad {
    margin-top: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lvs-laliga-ad:empty {
    display: none;
}

.lvs-laliga-ad img {
    max-width: 100%;
    height: auto;
    max-height: 90px;
}

@media (max-width: 768px) {
    .lvs-laliga-ad {
        padding: 10px;
        min-height: 50px;
    }
    
    .lvs-laliga-ad img {
        max-height: 60px;
    }
}
/* ============================================
   TICKER LALIGA - COLORES LA VOZ DE SEVILLA
   ============================================ */

    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #0F2A5F 0%, #1a3a7a 100%);
    border-radius: 6px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #8B1E1E;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

    font-size: 14px;
}

    flex: 1;
    overflow: hidden;
    position: relative;
}

    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
}

    left: 0;
    background: linear-gradient(90deg, #0F2A5F 0%, transparent 100%);
}

    right: 0;
    background: linear-gradient(90deg, transparent 0%, #1a3a7a 100%);
}

    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 10px 0;
}

/* Velocidades */
    animation-duration: 45s;
}

    animation-duration: 30s;
}

    animation-duration: 18s;
}

/* Pausar al hover */
    animation-play-state: paused;
}

    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 13px;
}

    font-weight: 500;
}

    color: #ffffff;
    font-weight: 700;
    margin: 0 4px;
    opacity: 0.8;
}

    background: #8B1E1E;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 4px;
}

    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

    color: rgba(255,255,255,0.4);
    margin: 0 12px;
    font-size: 10px;
}

/* Responsive */
@media (max-width: 768px) {
        border-radius: 0;
    }
    
        padding: 8px 10px;
        font-size: 10px;
    }
    
        font-size: 12px;
    }
    
        display: none;
    }
    
        padding: 8px 0;
    }
    
        font-size: 12px;
    }
    
        font-size: 10px;
    }
    
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
        padding: 8px;
    }
    
        font-size: 11px;
        gap: 4px;
    }
    
        padding: 1px 4px;
        font-size: 10px;
    }
}

/* ============================================
   FIX NOMBRES GOLEADORES MÓVIL
   ============================================ */

@media (max-width: 768px) {
    /* Nombre en vista compacta (antes de expandir) */
    .mobile-jugador .nombre-jugador {
        white-space: normal !important;
        line-height: 1.2;
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Más espacio para el nombre */
    .goleador-row .mobile-row-main {
        grid-template-columns: 45px 1fr 50px 28px;
    }
    
    .mobile-jugador {
        min-width: 0;
    }
}

.jornada-titulo {
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-light) 100%);
    color: white;
    padding: 12px 20px;
    margin: 0 0 20px 0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* ============================================
   CINTILLO RESULTADOS EN VIVO
   ============================================ */

.laliga-cintillo {
    background: linear-gradient(135deg, var(--lvs-primary) 0%, var(--lvs-primary-dark) 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.cintillo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cintillo-label {
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    padding-right: 16px;
    border-right: 2px solid rgba(255,255,255,0.3);
}

.cintillo-scroll {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cintillo-scroll::-webkit-scrollbar {
    display: none;
}

.partido-cintillo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
}

.partido-cintillo.destacado {
    font-weight: 700;
    color: #FFD700;
}

.partido-cintillo.en-vivo {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.marcador-cintillo {
    font-weight: 700;
    font-size: 15px;
    padding: 2px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.badge-vivo {
    display: inline-block;
    padding: 2px 6px;
    background: #0F2A5F;
    color: white;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.separador-cintillo {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

@media (max-width: 768px) {
    .cintillo-wrapper {
        padding: 0 12px;
        gap: 12px;
    }
    
    .cintillo-label {
        font-size: 12px;
    }
    
    .partido-cintillo {
        font-size: 11px;
    }
    
    .marcador-cintillo {
        font-size: 13px;
    }
}

/* ============================================
   CINTILLO ANIMADO ESTILO LVS
   ============================================ */

.lvs-cintillo-laliga {
    background: linear-gradient(135deg, #c8102e 0%, #9c0d24 100%);
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
}

.cintillo-header {
    background: #1a1a1a;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #FFD700;
}

.cintillo-icono {
    font-size: 20px;
    animation: bounce 2s infinite;
}

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

.cintillo-titulo {
    color: #FFD700;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cintillo-contenedor {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c8102e 0%, #9c0d24 100%);
}

.cintillo-animado {
    display: flex;
    gap: 40px;
    padding: 12px 0;
    animation: scroll-infinito 60s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-infinito {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cintillo-animado:hover {
    animation-play-state: paused;
}

.partido-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.partido-item:hover {
    background: rgba(0,0,0,0.5);
    border-color: #FFD700;
    transform: scale(1.05);
}

.partido-item.destacado {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    border-color: #FFD700;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.partido-item .equipo {
    font-weight: 600;
}

.partido-item .resultado {
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    min-width: 50px;
    text-align: center;
}

.partido-item.destacado .resultado {
    background: rgba(0,0,0,0.2);
}

.resultado.en-vivo {
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0%, 100% { 
        background: rgba(255, 0, 0, 0.8);
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    }
    50% { 
        background: rgba(255, 0, 0, 0.4);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    }
}

.badge-live {
    color: white;
    font-size: 11px;
    font-weight: 700;
    animation: blink-live 1s infinite;
}

@keyframes blink-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .cintillo-header {
        padding: 6px 12px;
    }
    
    .cintillo-titulo {
        font-size: 12px;
    }
    
    .cintillo-animado {
        animation-duration: 45s;
        gap: 25px;
    }
    
    .partido-item {
        font-size: 12px;
        padding: 6px 15px;
        gap: 8px;
    }
    
    .partido-item .resultado {
        font-size: 14px;
        min-width: 40px;
    }
}

/* ============================================
   CINTILLO LALIGA ESTILO LVS PROFESIONAL
   ============================================ */

@keyframes pulse-live-clean {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {

/* ============================================
   CINTILLO LALIGA ESTILO EL MUNDO
   ============================================ */


/* ============================================
   CINTILLO LALIGA ESTILO EL MUNDO
   ============================================ */

    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
}

    background: #0F2A5F;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: background 0.2s;
}

    background: rgba(255,255,255,0.2);
}

    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    display: none;
}

    min-width: 380px;
    padding: 16px;
    border-right: 1px solid #e0e0e0;
    position: relative;
    flex-shrink: 0;
}

    border-right: none;
}

    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
}

    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px;
}

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

    border-bottom: none;
    padding-bottom: 0;
}

    display: flex;
    align-items: center;
    gap: 8px;
}

    flex-direction: row-reverse;
    text-align: right;
}

    width: 24px;
    height: 24px;
    object-fit: contain;
}

    font-size: 13px;
    font-weight: 500;
    color: #333;
}

    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    min-width: 50px;
}

    font-size: 18px;
    font-weight: 700;
    color: #000;
}

    color: #ccc;
    font-size: 14px;
}

    font-size: 11px;
    font-weight: 600;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
        padding: 10px 15px;
    }
    
        font-size: 12px;
    }
    
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
        min-width: 320px;
        padding: 12px;
    }
    
        font-size: 11px;
    }
    
        width: 20px;
        height: 20px;
    }
}

/* CINTILLO LALIGA ESTILO EL MUNDO */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

    background: #0F2A5F;
    color: #fff;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    font-size: 13px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    display: flex;
    gap: 4px;
}

    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

    background: rgba(255,255,255,0.2);
}

    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

    display: none;
}

    min-width: 380px;
    flex-shrink: 0;
    padding: 14px;
    border-right: 1px solid #e5e5e5;
    position: relative;
}

    border-right: none;
}

    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff1744;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 0.3px;
}

    font-size: 11px;
    font-weight: 600;
    color: #757575;
    margin-bottom: 10px;
}

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f5;
}

    border-bottom: none;
}

    display: flex;
    align-items: center;
    gap: 6px;
}

    flex-direction: row-reverse;
    text-align: right;
}

    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    flex-shrink: 0;
}

    font-size: 12px;
    font-weight: 500;
    color: #212121;
}

    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
}

    font-size: 16px;
    font-weight: 700;
    color: #000;
}

    color: #bdbdbd;
    font-size: 12px;
}

    font-size: 10px;
    font-weight: 600;
    color: #9e9e9e;
}

@media (max-width: 768px) {
        min-width: 320px;
    }
        font-size: 11px;
    }
        width: 18px !important;
        height: 18px !important;
    }
}

/* CINTILLO EL MUNDO EXACTO */

@media (max-width: 768px) {
}

/* CINTILLO EL MUNDO - TODO HORIZONTAL */





@media (max-width: 768px) {
}

/* CINTILLO EL MUNDO - 4 PARTIDOS + RESPONSIVE */
.mundo-ticker { margin: 25px 0; }
.mundo-ticker-header { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 2px solid #000; }
.mundo-ticker-header h3 { font-size: 15px; font-weight: 700; margin: 0; }
.mundo-nav { display: flex; gap: 5px; }
.mundo-nav-btn { background: #f5f5f5; border: 1px solid #ddd; width: 32px; height: 32px; border-radius: 4px; font-size: 20px; cursor: pointer; }
.mundo-nav-btn:hover { background: #e5e5e5; }

.mundo-ticker-scroll { display: flex; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 16px 0; }
.mundo-ticker-scroll::-webkit-scrollbar { display: none; }

.mundo-item { display: flex; flex-direction: column; gap: 8px; padding: 0 20px; flex-shrink: 0; }
.mundo-live { color: #d32f2f; font-size: 11px; font-weight: 700; }
.mundo-date { font-size: 12px; font-weight: 600; color: #666; white-space: nowrap; }

.mundo-match { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.mundo-shield { width: 22px !important; height: 22px !important; object-fit: contain; }
.mundo-name { font-size: 13px; font-weight: 500; }
.mundo-result { font-size: 11px; font-weight: 600; color: #999; margin: 0 5px; }
.mundo-result b { font-size: 17px; color: #000; font-weight: 700; }

.mundo-separator { width: 1px; background: #e0e0e0; flex-shrink: 0; }

/* RESPONSIVE MÓVIL */
@media (max-width: 768px) {
    .mundo-ticker { margin: 15px 0; }
    .mundo-ticker-header { flex-direction: column; gap: 10px; }
    .mundo-ticker-header h3 { font-size: 13px; }
    .mundo-nav { justify-content: center; }
    
    .mundo-ticker-scroll { flex-direction: column; overflow-x: hidden; overflow-y: visible; padding: 12px 0; }
    .mundo-item { padding: 10px 0; border-bottom: 1px solid #e0e0e0; }
    .mundo-item:last-child { border-bottom: none; }
    .mundo-separator { display: none; }
    
    .mundo-date { font-size: 11px; }
    .mundo-match { flex-wrap: wrap; justify-content: center; }
    .mundo-name { font-size: 12px; }
    .mundo-shield { width: 20px !important; height: 20px !important; }
    .mundo-result { font-size: 10px; }
    .mundo-result b { font-size: 15px; }
}
