/* Estilos para el Fixture con Fondos de Mapas y Glassmorphism */

.fixture-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixture-match-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100px;
}

.fixture-match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Overlay con gradiente más sutil para mejor visibilidad del mapa */
.fixture-glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(10, 10, 15, 0.85) 0%,
            rgba(10, 10, 15, 0.6) 50%,
            rgba(10, 10, 15, 0.4) 100%);
    z-index: 1;
}

/* Contenido centrado sobre el overlay */
.fixture-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    /* Eliminamos blur para ver mejor el fondo */
}

/* Ajustes para el texto dentro del fixture */
.fixture-content h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px !important;
}

.fixture-content .badge {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
}

.fixture-content .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.fixture-content .small {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Contenedor de detalles centrado */
.fixture-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Link de stats */
.stats-link {
    transition: all 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

.stats-link:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}