        .players-section-hidden {
    display: none !important;
}
        .stadium-image-credit {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
    font-style: italic;
}
        .match-group {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-xs);
}
        :root {
            /* Sistema de diseño fluido con clamp() */
            --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
            --font-size-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
            --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
            --font-size-lg: clamp(1.125rem, 1rem + 0.65vw, 1.375rem);
            --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
            --font-size-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
            --font-size-3xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
            /* Espaciado fluido */
            --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
            --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
            --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
            --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
            --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
            --space-2xl: clamp(3rem, 2rem + 5vw, 6rem);
            /* Colores */
            --mundial-green: #107c10;
            --mundial-blue: #0033a0;
            --mundial-red: #e4002b;
            --mundial-gold: #ffb81c;
            /* Breakpoints modernos (em-based para accesibilidad) */
            --bp-sm: 30em;
            /* 480px */
            --bp-md: 48em;
            /* 768px */
            --bp-lg: 64em;
            /* 1024px */
            --bp-xl: 80em;
            /* 1280px */
            --bp-2xl: 96em;
            /* 1536px */
        }
        
        #ath-widget-root {
            display: none!important;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        html {
            font-size: 16px;
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            background: #374972;
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: #fff;
            line-height: 1.6;
            font-size: var(--font-size-base);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        /* Tipografía responsive con clamp() */
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.2;
            font-weight: 700;
        }
        
        h1 {
            font-size: var(--font-size-3xl);
        }
        
        h2 {
            font-size: var(--font-size-2xl);
        }
        
        h3 {
            font-size: var(--font-size-xl);
        }
        
        h4 {
            font-size: var(--font-size-lg);
        }
        
        p {
            font-size: var(--font-size-base);
            max-width: 65ch;
            /* Optimal reading width */
        }
        /* Hero Section - Mobile First */
        
        .hero-section {
            background-image: url(https://www.nacion.com/gnfactory/especiales/2026/mundial-2026/covermundial.webp);
            background-size: cover;
            background-size: cover;
            background-position: center;
            padding: var(--space-xl) var(--space-md);
            position: relative;
            overflow: hidden;
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-content {
            width: 100%;
            max-width: min(90vw, 1200px);
            margin: 0 auto;
            text-align: center;
        }
        
        .trophy-icon {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--mundial-gold);
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
            animation: float 3s ease-in-out infinite;
            margin-bottom: var(--space-sm);
        }
        
        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .hero-title {
            font-size: var(--font-size-3xl);
            font-weight: 800;
            margin-bottom: var(--space-sm);
            text-wrap: balance;
        }
        
        .host-cities {
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-sm) var(--space-md);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: var(--font-size-sm);
            margin-bottom: var(--space-md);
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .host-cities:hover {
            background: var(--mundial-gold);
            color: #000 !important;
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 184, 28, 0.5);
        }
        
        .hero-badges {
            display: flex;
            gap: var(--space-sm);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-badges .badge {
            font-size: var(--font-size-xs);
            padding: var(--space-xs) var(--space-sm);
            border-radius: 50px;
        }
        /* Secciones comunes */
        
        section {
            padding: var(--space-xl) var(--space-md);
            width: 100%;
        }
        
        .container {
            width: 100%;
            max-width: min(95vw, 1400px);
            margin: 0 auto;
            padding: 0 var(--space-sm);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: var(--space-lg);
            font-size: var(--font-size-2xl);
            text-align: center;
            width: 100%;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: calc(-1 * var(--space-sm));
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--mundial-gold);
            border-radius: 2px;
        }
        /* Carruseles - Container Queries para componentes */
        
        .groups-carousel,
        .matches-carousel,
        .videos-carousel,
        .standings-carousel,
        .news-section,
        .trivia-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: clamp(12px, 2vw, 20px);
            padding: var(--space-md);
            margin: var(--space-md) 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
            container-type: inline-size;
            container-name: carousel;
            max-width: 900px;
            margin-left: auto !important;
            margin-right: auto !important;
            background-image: url(https://www.nacion.com/gnfactory/especiales/2026/mundial-2026/covermundial.webp);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center
        }
        
        @container carousel (min-width: 600px) {
            .groups-carousel,
            .matches-carousel,
            .videos-carousel,
            .standings-carousel {
                padding: var(--space-lg);
            }
        }
        /* Grupos - Grid de 2 columnas en desktop */
        
        .groups-row {
            display: grid;
            gap: var(--space-md);
            grid-template-columns: 1fr;
        }
        
        @media (min-width: 48em) {
            .groups-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .group-card-carousel {
            background: #252d3e;
            border-radius: clamp(12px, 2vw, 16px);
            padding: var(--space-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            height: 100%;
        }
        
        .group-title {
            color: var(--mundial-gold);
            font-weight: 800;
            margin-bottom: var(--space-md);
            text-align: center;
            font-size: var(--font-size-xl);
        }
        
        .team-item {
            display: flex;
            align-items: center;
            padding: var(--space-sm);
            margin: var(--space-xs) 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            gap: var(--space-sm);
        }
        
        .team-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(10px);
            border-color: var(--mundial-gold);
        }
        
        .team-flag {
            width: clamp(32px, 8vw, 40px);
            height: clamp(32px, 8vw, 40px);
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .team-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-name {
            font-weight: 600;
            font-size: var(--font-size-sm);
            flex: 1;
        }
        /* ============================================================
           CARRUSEL DE PARTIDOS - MEJORADO PARA MÓVIL
           ============================================================ */
        /* Contenedor con padding lateral para bordes visibles */
        
        .matches-carousel {
            padding: var(--space-md) var(--space-sm);
            overflow: visible;
            position: relative;
        }
        
        @media (min-width: 48em) {
            .matches-carousel {
                padding: var(--space-lg);
            }
        }
        /* Grid de partidos - una columna en móvil, dos en desktop */
        
        .matches-row {
            display: grid;
            gap: var(--space-md);
            grid-template-columns: 1fr;
            padding: 0 var(--space-xs);
        }
        
        @media (min-width: 48em) {
            .matches-row {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-lg);
                padding: 0;
            }
        }
        /* Tarjeta de partido con bordes completamente visibles */
        
        .match-card-carousel {
            background: #252d3e;
            border-radius: clamp(12px, 3vw, 20px);
            padding: clamp(1rem, 4vw, 1.5rem);
            border: 2px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            /* Margen para que el borde y shadow se vean completos */
            margin: 4px;
            position: relative;
            overflow: visible;
            z-index: 0!important
        }
        /* Efecto hover que respeta los bordes */
        
        .match-card-carousel:hover {
            transform: translateY(-5px);
            border-color: var(--mundial-gold);
            box-shadow: 0 15px 35px rgba(255, 184, 28, 0.25), 0 0 0 3px rgba(255, 184, 28, 0.2);
            z-index: 10;
        }
        /* Estructura de equipos optimizada para móvil */
        
        .match-teams {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: clamp(0.5rem, 3vw, 2rem);
            margin: var(--space-md) 0;
            flex-wrap: nowrap;
            padding: 0 var(--space-xs);
        }
        
        @media (min-width: 48em) {
            .match-teams {
                gap: clamp(1rem, 3vw, 2rem);
                padding: 0;
            }
        }
        /* Equipo individual con área táctil amplia */
        
        .match-team {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            min-width: 0;
            padding: var(--space-xs);
            border-radius: 12px;
            touch-action: manipulation;
        }
        
        .match-team:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .match-team:active {
            transform: scale(0.98);
        }
        /* Bandera de equipo responsive */
        
        .match-team-flag {
            width: clamp(45px, 15vw, 80px);
            height: clamp(45px, 15vw, 80px);
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.3);
            margin: 0 auto var(--space-xs);
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }
        
        .match-team-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .match-team:hover .match-team-flag {
            border-color: var(--mundial-gold);
            box-shadow: 0 0 25px rgba(255, 184, 28, 0.5);
        }
        /* Nombre del equipo con truncado elegante */
        
        .match-team .fw-bold {
            font-size: clamp(0.7rem, 3vw, 0.9rem);
            word-break: break-word;
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.4em;
        }
        /* Marcador con tamaño fluido */
        
        .match-score {
            font-size: clamp(1.5rem, 8vw, 3rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--mundial-gold), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 60px;
            text-align: center;
            flex-shrink: 0;
            line-height: 1;
        }
        /* VS divider optimizado */
        
        .vs-divider {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            font-size: var(--font-size-xs);
            flex-shrink: 0;
            padding: 0 var(--space-xs);
        }
        
        .vs-divider::before,
        .vs-divider::after {
            content: '';
            width: 2px;
            height: 10px;
            background: rgba(255, 255, 255, 0.2);
            margin: 3px 0;
        }
        
        @media (min-width: 48em) {
            .vs-divider::before,
            .vs-divider::after {
                height: 15px;
            }
        }
        /* Información del partido */
        
        .match-info {
            text-align: center;
            margin-top: auto;
            padding-top: var(--space-sm);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: var(--space-xs);
            padding-right: var(--space-xs);
        }
        
        .match-date {
            color: var(--mundial-gold);
            font-weight: 600;
            font-size: clamp(0.75rem, 3.5vw, 0.95rem);
            margin-bottom: var(--space-xs);
            line-height: 1.3;
        }
        
        .match-stadium {
            color: rgba(255, 255, 255, 0.7);
            font-size: clamp(0.7rem, 3vw, 0.85rem);
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs) var(--space-sm);
            border-radius: 20px;
            flex-wrap: wrap;
            justify-content: center;
            line-height: 1.3;
            touch-action: manipulation;
        }
        
        .match-stadium:hover {
            color: var(--mundial-gold);
            background: rgba(255, 184, 28, 0.1);
        }
        /* Badges mejorados */
        
        .live-badge,
        .upcoming-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs) var(--space-sm);
            border-radius: 20px;
            font-size: clamp(0.65rem, 2.5vw, 0.75rem);
            font-weight: 600;
            margin-bottom: var(--space-sm);
            white-space: nowrap;
            touch-action: manipulation;
        }
        
        .live-badge {
            background: rgba(228, 0, 43, 0.2);
            color: var(--mundial-red);
            border: 1px solid rgba(228, 0, 43, 0.3);
            animation: pulse-badge 2s infinite;
        }
        
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.4);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(228, 0, 43, 0);
            }
        }
        
        .upcoming-badge {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        /* Ajustes para pantallas muy pequeñas */
        
        @media (max-width: 360px) {
            .match-card-carousel {
                padding: 0.75rem;
                margin: 2px;
            }
            .match-teams {
                gap: 0.4rem;
            }
            .match-team-flag {
                width: 40px;
                height: 40px;
            }
            .match-score {
                font-size: 1.3rem;
                min-width: 45px;
            }
            .match-team .fw-bold {
                font-size: 0.65rem;
            }
        }
        /* Orientación landscape en móvil */
        
        @media (max-height: 500px) and (orientation: landscape) {
            .match-card-carousel {
                flex-direction: row;
                align-items: center;
                gap: var(--space-md);
            }
            .match-teams {
                flex: 1;
                margin: 0;
            }
            .match-info {
                margin-top: 0;
                border-top: none;
                border-left: 1px solid rgba(255, 255, 255, 0.1);
                padding-left: var(--space-md);
                min-width: 120px;
            }
        }
        /* Controles de carrusel discretos con flechas incluidas */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 80px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0 8px 8px 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    opacity: 0.9;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 20;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0!important
}

.carousel-control-prev {
    left: -20px;
    border-radius: 0 8px 8px 0;
}

.carousel-control-next {
    right: -20px;
    border-radius: 8px 0 0 8px;
}

/* Ocultar los iconos por defecto de Bootstrap */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

/* Flechas personalizadas usando ::before */
.carousel-control-prev::before,
.carousel-control-next::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Flecha izquierda (<) */
.carousel-control-prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent rgba(255, 255, 255, 0.9) transparent transparent;
    margin-right: 3px;
}

/* Flecha derecha (>) */
.carousel-control-next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
    margin-left: 3px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.95);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev:hover::before {
    border-color: transparent #fff transparent transparent;
}

.carousel-control-next:hover::before {
    border-color: transparent transparent transparent #fff;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 70px;
        opacity: 0.85;
    }

    .carousel-control-prev {
        left: -18px;
    }

    .carousel-control-next {
        right: -18px;
    }

    .carousel-control-prev::before {
        border-width: 7px 10px 7px 0;
    }

    .carousel-control-next::before {
        border-width: 7px 0 7px 10px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 32px;
        height: 60px;
    }

    .carousel-control-prev {
        left: -16px;
    }

    .carousel-control-next {
        right: -16px;
    }

    .carousel-control-prev::before {
        border-width: 6px 8px 6px 0;
    }

    .carousel-control-next::before {
        border-width: 6px 0 6px 8px;
    }
}

        /* Indicadores de carrusel */
        
        .carousel-indicators {
            margin-top: var(--space-md);
            margin-bottom: 0;
            position: relative;
            gap: var(--space-xs);
        }
        
        .carousel-indicators button {
            width: clamp(10px, 3vw, 14px);
            height: clamp(10px, 3vw, 14px);
            border-radius: 50%;
            margin: 0;
            background-color: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            min-width: 10px;
            min-height: 10px;
            transition: all 0.3s ease;
        }
        
        .carousel-indicators button.active {
            background-color: var(--mundial-gold);
        }
        /* Tablas de posiciones */
        
        .standings-table-container {
            background: #252d3e;
            border-radius: clamp(12px, 2vw, 16px);
            padding: var(--space-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .carousel-indicators [data-bs-target] {
            height: 6px!important;
            width: 6px!important
        }
        
        .standings-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 var(--space-xs);
            min-width: 600px;
        }
        
        .standings-table th {
            color: var(--mundial-gold);
            font-weight: 600;
            padding: var(--space-sm);
            text-align: center;
            font-size: var(--font-size-xs);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .standings-table th:first-child {
            border-radius: 8px 0 0 8px;
        }
        
        .standings-table th:last-child {
            border-radius: 0 8px 8px 0;
        }
        
        .standings-table td {
            padding: var(--space-sm);
            text-align: center;
            font-size: var(--font-size-xs);
            vertical-align: middle;
        }
        
        .standings-table td:first-child {
            border-radius: 8px 0 0 8px;
        }
        
        .standings-table td:last-child {
            border-radius: 0 8px 8px 0;
        }
        
        .standings-table tr {
            transition: all 0.3s ease;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.12);
        }
        
        .standings-table tr:hover td {}
        
        .standings-table .team-cell {
            text-align: left;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }
        
        .standings-table .position-badge {
            width: clamp(24px, 6vw, 30px);
            height: clamp(24px, 6vw, 30px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: var(--font-size-xs);
            flex-shrink: 0;
        }
        
        .position-1 {
            background: var(--mundial-gold);
            color: #000;
        }
        
        .position-2 {
            background: #c0c0c0;
            color: #000;
        }
        
        .position-3 {
            background: #cd7f32;
            color: #fff;
        }
        
        .position-4 {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        
        .standings-table .points {
            font-weight: 800;
            color: var(--mundial-gold);
            font-size: var(--font-size-sm);
        }
        
        .standings-table .team-name-standings {
            font-weight: 600;
            font-size: var(--font-size-xs);
            white-space: nowrap;
        }
        
        .standings-table .team-flag-small {
            width: 35px;
            height: 24px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .standings-table .team-flag-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-item-disabled,
        .match-team-disabled,
        .standings-team-disabled {
            cursor: default !important;
            pointer-events: none;
            opacity: 0.85;
        }

        .team-item-disabled:hover,
        .match-team-disabled:hover,
        .standings-team-disabled:hover {
            transform: none !important;
            border-color: transparent !important;
            background: rgba(255, 255, 255, 0.05) !important;
            box-shadow: none !important;
        }
        /* Trivia */
        
        .trivia-section {
            background: linear-gradient(135deg, rgba(16, 124, 16, 0.1), rgba(0, 51, 160, 0.1));
            border-radius: clamp(16px, 3vw, 24px);
            padding: var(--space-lg) var(--space-md);
            margin: var(--space-lg) 0;
            border: 2px solid var(--mundial-gold);
            position: relative;
            overflow: hidden;
            margin-left: auto;
            margin-right: auto;
        }
        
        .trivia-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 184, 28, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .trivia-header {
            position: relative;
            z-index: 0;
            text-align: center;
            margin-bottom: var(--space-lg);
        }
        
        .trivia-icon {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--mundial-gold);
            margin-bottom: var(--space-sm);
            display: inline-block;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .trivia-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: clamp(16px, 3vw, 20px);
            padding: var(--space-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        
        @media (min-width: 48em) {
            .trivia-card {
                padding: var(--space-lg);
            }
        }
        
        .question-counter {
            display: inline-block;
            background: var(--mundial-gold);
            color: #000;
            padding: var(--space-xs) var(--space-md);
            border-radius: 50px;
            font-weight: 800;
            font-size: var(--font-size-sm);
            margin-bottom: var(--space-md);
        }
        
        .question-text {
            font-size: var(--font-size-lg);
            font-weight: 700;
            margin-bottom: var(--space-md);
            line-height: 1.4;
            color: #fff;
            text-wrap: balance;
        }
        
        .options-grid {
            display: grid;
            gap: var(--space-sm);
        }
        
        .option-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: var(--space-sm) var(--space-md);
            color: #fff;
            font-size: var(--font-size-sm);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            min-height: 48px;
            touch-action: manipulation;
        }
        
        .option-btn:hover:not(:disabled) {
            background: rgba(255, 184, 28, 0.2);
            border-color: var(--mundial-gold);
            transform: translateX(10px);
        }
        
        .option-btn.correct {
            background: rgba(16, 124, 16, 0.8) !important;
            border-color: #10c010 !important;
            animation: correctPulse 0.5s ease;
        }
        
        .option-btn.incorrect {
            background: rgba(228, 0, 43, 0.8) !important;
            border-color: #ff2b4b !important;
            animation: shake 0.5s ease;
        }
        
        .option-btn.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        @keyframes correctPulse {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }
        
        @keyframes shake {
            0%,
            100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-10px);
            }
            75% {
                transform: translateX(10px);
            }
        }
        
        .option-letter {
            background: var(--mundial-gold);
            color: #000;
            width: clamp(28px, 7vw, 35px);
            height: clamp(28px, 7vw, 35px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            flex-shrink: 0;
            font-size: var(--font-size-sm);
        }
        
        .feedback-message {
            margin-top: var(--space-md);
            padding: var(--space-sm);
            border-radius: 12px;
            font-weight: 600;
            display: none;
            animation: slideIn 0.3s ease;
            font-size: var(--font-size-sm);
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .feedback-message.correct {
            background: rgba(16, 124, 16, 0.3);
            border: 1px solid #10c010;
            color: #4ade80;
            display: block;
        }
        
        .feedback-message.incorrect {
            background: rgba(228, 0, 43, 0.3);
            border: 1px solid #ff2b4b;
            color: #f87171;
            display: block;
        }
        
        .next-btn {
            background: linear-gradient(135deg, var(--mundial-gold), #ff8c00);
            color: #000;
            border: none;
            padding: var(--space-sm) var(--space-lg);
            border-radius: 50px;
            font-weight: 800;
            font-size: var(--font-size-sm);
            margin-top: var(--space-md);
            cursor: pointer;
            transition: all 0.3s ease;
            display: none;
            min-height: 48px;
            touch-action: manipulation;
        }
        
        .next-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 184, 28, 0.4);
        }
        
        .next-btn.show {
            display: inline-block;
            animation: fadeIn 0.3s ease;
        }
        
        .progress-bar-custom {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: var(--space-md);
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--mundial-gold), #ff8c00);
            border-radius: 10px;
            transition: width 0.5s ease;
            width: 0%;
        }
        
        .score-display {
            position: static;
            background: rgba(255, 184, 28, 0.2);
            border: 2px solid var(--mundial-gold);
            padding: var(--space-sm) var(--space-md);
            border-radius: 16px;
            text-align: center;
            margin-bottom: var(--space-sm);
        }
        
        @media (min-width: 48em) {
            .score-display {
                position: absolute;
                top: var(--space-md);
                right: var(--space-md);
                margin-bottom: 0;
            }
        }
        
        .score-number {
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-weight: 800;
            color: var(--mundial-gold);
            line-height: 1;
        }
        
        .score-label {
            font-size: var(--font-size-xs);
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .results-card {
            text-align: center;
            padding: var(--space-md);
        }
        
        @media (min-width: 48em) {
            .results-card {
                padding: var(--space-lg);
            }
        }
        
        .result-icon {
            font-size: clamp(3rem, 8vw, 5rem);
            margin-bottom: var(--space-sm);
        }
        
        .result-title {
            font-size: var(--font-size-xl);
            font-weight: 800;
            margin-bottom: var(--space-sm);
        }
        
        .result-message {
            font-size: var(--font-size-base);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: var(--space-md);
        }
        
        .restart-btn {
            background: linear-gradient(135deg, var(--mundial-green), var(--mundial-blue));
            color: #fff;
            border: none;
            padding: var(--space-sm) var(--space-lg);
            border-radius: 50px;
            font-weight: 700;
            font-size: var(--font-size-sm);
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 48px;
            touch-action: manipulation;
        }
        
        .restart-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(16, 124, 16, 0.4);
        }
        
        .start-screen {
            text-align: center;
            padding: var(--space-md);
        }
        
        @media (min-width: 48em) {
            .start-screen {
                padding: var(--space-lg);
            }
        }
        
        .start-btn {
            background: linear-gradient(135deg, var(--mundial-gold), #ff6b6b);
            color: #000;
            border: none;
            padding: 12px 24px!important;
            border-radius: 50px;
            font-weight: 800;
            font-size: var(--font-size-base);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: var(--space-md);
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            min-height: 56px;
            touch-action: manipulation;
        }
        
        .start-btn:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 20px 40px rgba(255, 184, 28, 0.4);
        }
        /* Noticias */
        
        .news-grid {
            display: grid;
            gap: var(--space-md);
            grid-template-columns: 1fr;
        }
        
        @media (min-width: 40em) {
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 64em) {
            .news-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .news-card {
            background: #252d3e;
            border-radius: clamp(12px, 2vw, 16px);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            touch-action: manipulation;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            border-color: var(--mundial-gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .news-image-container {
            position: relative;
            height: clamp(150px, 30vw, 200px);
            overflow: hidden;
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: var(--space-md);
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-title {
            font-size: var(--font-size-sm);
            font-weight: 700;
            margin-bottom: var(--space-xs);
            line-height: 1.4;
            color: #fff;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* Modales */
        
        .modal-dialog {
            margin: var(--space-sm);
            max-width: calc(100% - var(--space-md));
        }
        
        @media (min-width: 48em) {
            .modal-dialog {
                margin: 1.75rem auto;
                max-width: 800px;
            }
        }
        
        .team-modal .modal-content,
        .stadium-modal .modal-content,
        .azteca-modal .modal-content {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: clamp(16px, 3vw, 20px);
            color: white;
            overflow: hidden;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .team-modal .modal-header,
        .stadium-modal .modal-header,
        .azteca-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            padding: var(--space-md);
        }
        
        .modal-body {
            padding: var(--space-md);
        }
        
        @media (min-width: 48em) {
            .modal-body {
                padding: var(--space-lg);
            }
        }
        
        .team-header {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            margin-bottom: var(--space-md);
            flex-wrap: wrap;
        }
        
        .team-flag-large {
            width: clamp(60px, 15vw, 100px);
            height: clamp(60px, 15vw, 100px);
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--mundial-gold);
            box-shadow: 0 0 30px rgba(255, 184, 28, 0.3);
            flex-shrink: 0;
            display: inline-flex;
        }
        
        .team-flag-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        /* Nuevos estilos para el modal de equipo - Información específica */
        
        .team-info-section {
            margin-bottom: var(--space-lg);
        }
        
        .team-info-title {
            color: var(--mundial-gold);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-xs);
            font-weight: 600;
        }
        
        .team-info-value {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: #fff;
            margin-bottom: var(--space-md);
        }
        
        .team-nickname {
            display: inline-block;
            background: rgba(255, 184, 28, 0.2);
            border: 1px solid var(--mundial-gold);
            padding: var(--space-xs) var(--space-md);
            border-radius: 50px;
            font-size: var(--font-size-base);
            font-weight: 600;
            color: var(--mundial-gold);
            margin-bottom: var(--space-md);
        }
        
        .players-list-container {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: var(--space-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .players-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: var(--space-xs);
        }
        
        .player-item {
            display: flex;
            align-items: center;
            padding: var(--space-sm);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid var(--mundial-green);
            transition: all 0.3s ease;
        }
        
        .player-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(5px);
        }
        
        .player-number {
            background: var(--mundial-green);
            color: white;
            width: clamp(24px, 6vw, 30px);
            height: clamp(24px, 6vw, 30px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: var(--font-size-xs);
            flex-shrink: 0;
            margin-right: var(--space-sm);
        }
        
        .player-info {
            flex: 1;
        }
        
        .player-name {
            font-weight: 600;
            font-size: var(--font-size-sm);
            color: #fff;
        }
        
        .player-position {
            font-size: var(--font-size-xs);
            color: rgba(255, 255, 255, 0.6);
        }
        
        .star-player-box {
            background: linear-gradient(135deg, rgba(255, 184, 28, 0.2), rgba(255, 140, 0, 0.1));
            border: 2px solid var(--mundial-gold);
            border-radius: 12px;
            padding: var(--space-md);
            margin-bottom: var(--space-md);
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }
        
        .star-icon {
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--mundial-gold);
        }
        
        .star-content {
            flex: 1;
        }
        
        .star-label {
            font-size: var(--font-size-xs);
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: var(--space-xs);
        }
        
        .star-name {
            font-size: var(--font-size-xl);
            font-weight: 800;
            color: var(--mundial-gold);
        }
        
        .history-box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-md);
        }
        
        .history-item {
            text-align: center;
            padding: var(--space-sm);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }
        
        .history-number {
            font-size: var(--font-size-xl);
            font-weight: 800;
            color: var(--mundial-gold);
            display: block;
        }
        
        .history-label {
            font-size: var(--font-size-xs);
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
        }
        /* Stadium Modal - Estilos actualizados con partidos */
        
        .stadium-image {
            width: 100%;
            height: clamp(150px, 30vw, 250px);
            object-fit: fill;
            border-radius: 12px;
            margin-bottom: var(--space-md);
        }
        
        .stadium-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);;
            gap: var(--space-sm);
            margin-top: var(--space-sm);
        }
        
        @media (min-width: 48em) {
            .stadium-info-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .stadium-info-item {
            background: rgba(255, 255, 255, 0.05);
            padding: var(--space-sm);
            border-radius: 8px;
            text-align: center;
        }
        
        .stadium-info-item i {
            color: var(--mundial-gold);
            font-size: var(--font-size-lg);
            margin-bottom: var(--space-xs);
        }
        
        .stadium-info-item .label {
            font-size: var(--font-size-xs);
            color: rgba(255, 255, 255, 0.6);
            display: block;
        }
        
        .stadium-info-item .value {
            font-weight: 600;
            color: white;
            font-size: var(--font-size-sm);
        }
        
        /* Nuevos estilos para partidos en estadios */
        .stadium-matches-section {
            margin-top: var(--space-md);
            padding-top: var(--space-md);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stadium-matches-title {
            color: var(--mundial-gold);
            font-size: var(--font-size-sm);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-sm);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }
        
        .stadium-matches-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }
        
        .stadium-match-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: var(--space-sm) var(--space-md);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-sm);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .stadium-match-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--mundial-gold);
            transform: translateX(5px);
        }
        
        .stadium-match-teams {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            flex: 1;
        }
        
        .stadium-match-flag {
            width: 35px;
            height: 28px;
            overflow: hidden;
        }
        
        .stadium-match-flag img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .stadium-match-vs {
            color: rgba(255, 255, 255, 0.5);
            font-size: var(--font-size-xs);
            font-weight: 600;
        }
        
        .stadium-match-info {
            text-align: right;
            font-size: var(--font-size-xs);
        }
        
        .stadium-match-date {
            color: var(--mundial-gold);
            font-weight: 600;
            display: block;
        }
        
        .stadium-match-group {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .stadium-match-type {
            display: inline-block;
            background: var(--mundial-gold);
            color: #000;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            margin-left: var(--space-xs);
        }
        
        .stadium-match-type.final {
            background: var(--mundial-red);
            color: white;
        }
        
        .stadium-match-type.semifinal {
            background: var(--mundial-blue);
            color: white;
        }
        
        /* Azteca Modal */
        
        .azteca-hero-image {
            width: 100%;
            height: clamp(150px, 35vw, 300px);
            object-fit: cover;
            border-radius: clamp(12px, 2vw, 16px);
            margin-bottom: var(--space-md);
            border: 2px solid var(--mundial-gold);
            box-shadow: 0 10px 40px rgba(255, 184, 28, 0.3);
        }
        
        .azteca-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--mundial-green), var(--mundial-blue));
            color: white;
            padding: var(--space-xs) var(--space-md);
            border-radius: 50px;
            font-weight: 700;
            font-size: var(--font-size-xs);
            margin-bottom: var(--space-sm);
            border: 2px solid var(--mundial-gold);
        }
        
        .history-timeline {
            position: relative;
            padding-left: var(--space-lg);
            border-left: 3px solid var(--mundial-gold);
            margin: var(--space-md) 0;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: var(--space-md);
            padding-left: var(--space-md);
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: calc(-1 * var(--space-lg) - 9px);
            top: var(--space-xs);
            width: 16px;
            height: 16px;
            background: var(--mundial-gold);
            border-radius: 50%;
            border: 3px solid #0f172a;
        }
        
        .timeline-year {
            color: var(--mundial-gold);
            font-weight: 800;
            font-size: var(--font-size-base);
            display: block;
            margin-bottom: var(--space-xs);
        }
        /* Footer */
        
        footer {
            margin-top: auto;
            padding: var(--space-md);
            text-align: center;
            font-size: var(--font-size-xs);
        }
        /* Utilidades responsive */
        
        .text-wrap-balance {
            text-wrap: balance;
        }
        /* Reducir motion para accesibilidad */
        
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        /* Ajustes para pantallas muy grandes */
        
        @media (min-width: 120em) {
            :root {
                --font-size-3xl: 5rem;
            }
            .container {
                max-width: 1600px;
            }
        }
        
        .modal-backdrop.show {
            z-index: 0!important
        }
        /* Botones flotantes para compartir en redes sociales - Estilo cards IZQUIERDA */
        
        .floating-share-buttons {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 16px 12px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1!important
        }
        
        .share-btn {
            font-size: 32px;
            /* Antes: 22px */
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .share-btn.facebook {
            background: #1877f2;
        }
        
        .share-btn.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .share-btn.whatsapp {
            background: #25d366;
        }
        /* Tooltip a la derecha */
        
        .share-btn::after {
            content: attr(data-tooltip);
            position: absolute;
            left: 55px;
            background: #333;
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .btn-outline-warning{
            background-color: #ffc107!important;
                        color: #000000!important

        }
        
        .share-btn.x-twitter {
            background-color: #000000!important;
            
        }
        /* Responsive */
        
        @media (max-width: 768px) {
            .floating-share-buttons {
                left: 10px;
                top: auto;
                bottom: 20px;
                transform: none;
                flex-direction: row;
            }
        }