/* Estilos específicos para la página de Partidos */

/* Filtros de partidos */
.filtros-partidos {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef5f9 100%);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    align-items: center;
}

.filtros-partidos strong {
    color: #424242;
    font-weight: 600;
}

.filtros-partidos .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #F8BBD0;
    background: white;
    color: #E91E63;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.filtros-partidos .btn:hover,
.filtros-partidos .btn.active {
    background: linear-gradient(135deg, #E91E63 0%, #FF6B35 100%);
    color: white;
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Lista de partidos */
.partidos-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Tarjeta de partido */
.partido-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef5f9 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partido-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    border-color: #F8BBD0;
}

/* Fecha del partido */
.partido-fecha {
    background: linear-gradient(135deg, #E91E63 0%, #FF6B35 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partido-fecha::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30%, -30%); }
}

.fecha-dia {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.fecha-mes {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.5rem 0;
    position: relative;
    z-index: 1;
}

.fecha-hora {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Información del partido */
.partido-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Categoría y competencia */
.partido-categoria {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.partido-categoria .badge {
    background: linear-gradient(135deg, #F8BBD0 0%, #fce4ec 100%);
    color: #C2185B;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #E91E63;
}

/* Equipos */
.partido-equipos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    background: rgba(233, 30, 99, 0.03);
    border-radius: 15px;
    margin: 1rem 0;
}

.equipo {
    flex: 1;
    text-align: center;
}

.equipo-nombre {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.equipo-puntos {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E91E63;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.1);
}

.vs {
    font-weight: 800;
    color: #757575;
    font-size: 1.2rem;
    padding: 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Detalles del partido */
.partido-detalles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.partido-lugar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #424242;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.partido-lugar i {
    color: #E91E63;
    font-size: 1.1rem;
}

/* Resultado */
.partido-resultado {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-victoria {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.badge-derrota {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.badge-empate {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.badge-proximo {
    background: linear-gradient(135deg, #E91E63 0%, #FF6B35 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Observaciones */
.partido-observaciones {
    padding: 1rem;
    background: linear-gradient(135deg, #fff3f8 0%, #ffffff 100%);
    border-left: 4px solid #E91E63;
    border-radius: 8px;
    color: #424242;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.partido-observaciones strong {
    color: #E91E63;
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .partidos-lista {
        grid-template-columns: 1fr;
    }
    
    .partido-equipos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vs {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
    
    .fecha-dia {
        font-size: 2.5rem;
    }
    
    .equipo-puntos {
        font-size: 2rem;
    }
    
    .filtros-partidos {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filtros-partidos .btn {
        text-align: center;
    }
}

/* Made with Bob */
