/* Container */
.fut-card-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

/* --- STRUCTURE DE LA CARTE --- */
.fut-card {
    width: 280px;
    height: 420px;
    border-radius: 15px 15px 100px 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.fut-card:hover { transform: scale(1.02); }

/* --- STYLE OR (Score > 80) --- */
.fut-gold {
    background: linear-gradient(135deg, #e6cfa5 0%, #d4af37 50%, #b8860b 100%);
    border: 2px solid #a67c00;
    color: #3e3012;
}
.fut-gold .fut-nation { border-top-color: #3e3012; }
.fut-gold .fut-player-name { border-bottom-color: rgba(62, 48, 18, 0.2); }

/* --- STYLE ARGENT (Score 50 - 80) --- */
.fut-silver {
    background: linear-gradient(135deg, #e3e3e3 0%, #c0c0c0 50%, #8a8a8a 100%);
    border: 2px solid #757575;
    color: #333333;
}
.fut-silver .fut-nation { border-top-color: #333; }
.fut-silver .fut-player-name { border-bottom-color: rgba(0, 0, 0, 0.1); }

/* --- STYLE BRONZE (Score < 50) --- */
.fut-bronze {
    background: linear-gradient(135deg, #eec7a1 0%, #cd7f32 50%, #8c5523 100%);
    border: 2px solid #6b4118;
    color: #2a1a00;
}
.fut-bronze .fut-nation { border-top-color: #2a1a00; }
.fut-bronze .fut-player-name { border-bottom-color: rgba(42, 26, 0, 0.2); }

/* --- CONTENU DE LA CARTE --- */
.fut-top-info { position: absolute; top: 25px; left: 25px; font-weight: bold; text-align: center; }
.fut-rating { font-size: 42px; line-height: 1; }
.fut-position { font-size: 18px; margin-top: 5px; }
.fut-nation { font-size: 14px; margin-top: 5px; padding-top: 2px; border-top-width: 1px; border-top-style: solid; }

.fut-player-image { width: 140px; height: 140px; margin: 40px auto 0; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,0.3); }
.fut-player-image img { width: 100%; height: 100%; object-fit: cover; }

.fut-player-name { text-align: center; font-size: 22px; font-weight: 800; margin-top: 15px; letter-spacing: 1px; border-bottom-width: 2px; border-bottom-style: solid; width: 80%; margin-left: 10%; padding-bottom: 5px; }

.fut-stats { display: flex; justify-content: space-around; margin-top: 15px; padding: 0 20px; font-weight: bold; }
.fut-stat-col div { margin-bottom: 5px; font-size: 16px; }
.fut-stat-col span { font-weight: 900; margin-right: 5px; font-size: 18px; }

/* --- FORMULAIRE --- */
.fut-form-container { background: #f8f8f8; padding: 30px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.fut-row { display: flex; gap: 20px; margin-bottom: 20px; }
.fut-row input, .fut-row select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.fut-row label { font-weight: bold; display: block; margin-bottom: 5px; }

/* --- TABLEAU DÉTAILS --- */
.fut-details-container { max-width: 600px; margin: 30px auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.fut-details-container h3 { text-align: center; text-transform: uppercase; color: #333; font-size: 20px; margin-bottom: 20px; border-bottom: 2px solid #d4af37; display: inline-block; padding-bottom: 5px; }
.fut-details-table { width: 100%; border-collapse: collapse; font-family: sans-serif; font-size: 15px; }
.fut-details-table th { background: #333; color: #fff; padding: 10px; text-align: left; }
.fut-details-table td { padding: 10px; border-bottom: 1px solid #eee; }
.fut-group-header td { background-color: #f0f0f0; font-weight: bold; color: #d4af37; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; padding-top: 15px; }
.fut-badge { background: #333; color: #fff; padding: 3px 8px; border-radius: 4px; font-weight: bold; font-size: 13px; }

/* Responsive */
@media (max-width: 600px) {
    .fut-row { flex-direction: column; gap: 10px; }
    .fut-card { transform: scale(0.9); }
}