/* --- faceoff.css --- */

.faceoff-play-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    flex-wrap: wrap; 
    width: 100%;
}

.trump-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 25px 20px;
}

.vs-badge {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    z-index: 10;
    background: rgba(20, 24, 34, 0.9);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    align-self: center;
    margin-top: 100px; /* Para alinearlo con las fotos */
}

/* LISTA DE ESTADÍSTICAS */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-dark, #2a3441);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.2s ease;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}

/* EFECTOS PARA TU CARTA (INTERACTIVA) */
.player-panel-left .stat-row {
    cursor: pointer;
}

.player-panel-left .stat-row:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(5px);
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

.player-panel-left .stat-row:hover .stat-value {
    color: var(--neon-blue);
}

/* RESULTADOS */
.stat-win {
    background: rgba(0, 255, 136, 0.15) !important;
    border-color: #00ff88 !important;
}
.stat-win .stat-value { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }

.stat-lose {
    background: rgba(255, 0, 85, 0.15) !important;
    border-color: var(--neon-pink) !important;
}
.stat-lose .stat-value { color: var(--neon-pink) !important; text-shadow: 0 0 10px rgba(255, 0, 85, 0.5); }

/* ANIMACIONES */
.card-slide-in { animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
@keyframes slideIn {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .vs-badge { margin: -15px auto; align-self: center; }
}