/* ===== ESTILOS PARA PÁGINA DE EQUIPO ===== */

.equipo-main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.equipo-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.equipo-logo {
    max-width: 150px;
    margin-bottom: 1rem;
    transition: all 0.3s ease; /* Added transition */
}

.equipo-logo:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    filter: brightness(1.2); /* Brighten on hover */
}

.equipo-nombre {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease; /* Added transition for color */
}

.equipo-nombre:hover {
    color: #FFFF00; /* Yellow color on hover */
}

.equipo-seccion {
    margin-bottom: 3rem;
}

.seccion-titulo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--konea-secondary);
    display: inline-block;
}

/* Roster y Staff */
.roster-grid, .staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.player-card, .staff-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-card:hover, .staff-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.player-img, .staff-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--konea-secondary);
}

.player-nombre, .staff-nombre {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.staff-rol {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

.player-country {
    width: 30px;
    height: auto;
    margin-top: 0.5rem;
}

/* Palmarés */
.palmares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* More items per row */
    gap: 1rem; /* Reduced gap for more items */
}

.trophy-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 0.5rem; /* Reduced padding */
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; /* Use flexbox for internal alignment */
    flex-direction: column;
    justify-content: space-between; /* Distribute content vertically */
    align-items: center;
    min-height: 180px; /* Ensure uniform height */
}

.trophy-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.trophy-img {
    width: 70px; /* Adjusted size for images */
    height: 70px;
    object-fit: contain; /* Use contain to ensure full image is visible */
    margin-bottom: 0.5rem;
    filter: grayscale(0%); /* Ensure full color for images */
}

.trophy-nombre {
    font-size: 0.9rem; /* Adjusted font size */
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.trophy-year {
    font-size: 0.8rem; /* Adjusted font size */
    color: #ccc;
    font-style: italic;
}

/* Noticias Relacionadas */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
