/* =========================================
   ROSTER PAGE (LIGHT THEME)
   ========================================= */

/* Estadísticas en el Hero Slider */
.athlete-hero-stats {
    display: flex; gap: 40px; margin-bottom: 30px;
}
.stat-box { display: flex; flex-direction: column; }
.stat-num { font-size: 2.5rem; font-family: 'medium'; color: white; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--sp-cyan); letter-spacing: 2px; }

/* --- SECCIÓN BLANCA (LIGHT SECTION) --- */
.roster-light-section {
    background-color: #f4f6f8; /* Gris muy claro, casi blanco */
    padding: 100px 0;
    color: #111; /* Texto oscuro */
}

/* Encabezado Light */
.roster-header-light {
    text-align: center; margin-bottom: 60px;
}
.subtitle-dark {
    color: #666; font-family: 'medium'; letter-spacing: 3px; font-size: 0.9rem; display: block; margin-bottom: 10px;
}
.title-dark {
    font-size: 4rem; margin: 0 0 40px 0; line-height: 1; color: #000;
    text-transform: uppercase; font-family: 'medium';
}

.stroke-text {
    /* Efecto de texto hueco pero en negro */
    -webkit-text-stroke: 1px #000; color: transparent;
}

/* Botones de Filtro (Versión Clara) */
.filter-container-light {
    display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
}
.filter-btn-light {
    background: transparent;
    border: 1px solid #ddd; /* Borde gris suave */
    color: #555;
    padding: 10px 30px; border-radius: 50px;
    font-family: 'medium'; text-transform: uppercase; cursor: pointer;
    transition: 0.3s;
}
.filter-btn-light:hover, .filter-btn-light.active {
    background: #000; /* Fondo negro al activar */
    color: white; border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- GRID Y TARJETAS LIMPIAS --- */
.roster-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.athlete-card-clean {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra muy suave */
    transition: 0.4s ease;
    cursor: pointer;
}

.athlete-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Imagen */
.clean-img-box {
    height: 350px; position: relative; overflow: hidden;
}
.clean-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s; filter: grayscale(100%); /* B&N por defecto */
}
.athlete-card-clean:hover .clean-img-box img {
    filter: grayscale(0%); /* Color al hover */
    transform: scale(1.05);
}

.clean-tag {
    position: absolute; top: 15px; left: 15px;
    background: #000; color: white;
    font-size: 0.7rem; padding: 5px 10px; font-family: 'medium';
}

/* Info Abajo (Fondo blanco) */
.clean-info { padding: 25px; }
.clean-info h3 {
    margin: 0; font-size: 1.8rem; line-height: 0.9; color: #000;
    text-transform: uppercase; font-family: 'medium'; margin-bottom: 15px;
}

.clean-meta {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid #eee; padding-top: 15px;
    color: #666; font-size: 0.9rem; font-family: 'regular';
}

.icon-arrow {
    color: var(--sp-cyan); opacity: 0; transform: translateX(-10px); transition: 0.3s;
}
.athlete-card-clean:hover .icon-arrow {
    opacity: 1; transform: translateX(0);
}

/* Tarjeta de "Únete" (Diferente) */
.join-card {
    background: var(--sp-cyan);
    display: flex; align-items: center; justify-content: center;
    text-align: center; border: 2px solid var(--sp-cyan);
}
.join-content { padding: 20px; color: #000; }
.join-content i { font-size: 3rem; margin-bottom: 20px; }
.join-content h3 { font-size: 1.5rem; font-family: 'medium'; margin-bottom: 10px; }
.btn-black {
    background: black; color: white; padding: 10px 25px;
    text-decoration: none; font-family: 'medium'; display: inline-block;
    margin-top: 20px; transition: 0.3s;
}
.btn-black:hover { background: white; color: black; }


@media (max-width:375px) {
    .title-dark {
    font-size: 2.5rem;
    }
    .roster-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    }

}