/*
*CSS PARA ESTILOS DE LOS JUGADORES
*/
.player-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #013b40;
    margin-bottom: 10px;
}

.player-name {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    word-break: break-word;
}

.player-status {
    font-size: 13px;
}

.player-status.playing {
    color: #ff5e57;
}

.player-status.finished {
    color: #4cd964;
}



.text-gradient {
    background: linear-gradient(45deg, #009688, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
    justify-items: center;
}

.result-detail {
    margin: 0.3rem 0;
    color: #333;
}

.winner-card {
    background: linear-gradient(135deg, #037065, #013b40);
    color: white;
    border-radius: 18px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    animation: pop 0.6s ease;
}
.winner-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
}
.winner-card p {
    font-size: 1.1rem;
    margin: 0.3rem 0;
}
@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/*
*ESTILOS PARA LAS PREGUNTAS RESPONDIDAS
*/
.answered-count {
    color: rgb(0, 0, 0);
    font-size: 14px;
}

.player-card {
    background: linear-gradient(135deg, #01675f, #013b40);
    color: white;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}
.player-card:hover {
    transform: scale(1.05);
}
