/* BASE */
.ranking {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ranking th, .ranking td {
    padding: 6px;
    text-align: center;
}

/* 📱 MOBILE → estilo tarjeta */
@media (max-width: 600px) {

    .mobile-cards thead {
        display: none;
    }

    .mobile-cards tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #333;
        padding: 10px;
        background: #111;
        color: #fff;
        border-radius: 8px;
    }

    .mobile-cards td {
        display: block;
        text-align: left;
        padding: 4px 0;
    }

    /* etiquetas tipo campo */
    .mobile-cards td::before {
        font-weight: bold;
        display: inline-block;
        width: 120px;
    }

    .mobile-cards td:nth-child(1)::before { content: "# "; }
    .mobile-cards td:nth-child(2)::before { content: "Nick: "; }
    .mobile-cards td:nth-child(3)::before { content: "Team: "; }
    .mobile-cards td:nth-child(4)::before { content: "Kills: "; }
    .mobile-cards td:nth-child(5)::before { content: "Extractions: "; }
    .mobile-cards td:nth-child(6)::before { content: "Dinero: "; }
    .mobile-cards td:nth-child(7)::before { content: "Puntos: "; }
}