/* Notes DFCO — Terrain XI */
.ndfc-xi-wrap { font-family: 'Roboto', sans-serif; max-width: 560px; margin: 0 auto; }
.ndfc-xi-title { font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 12px; color: #111; letter-spacing: 1px; }

/* Timeline */
.ndfc-xi-timeline { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.ndfc-xi-min { background: #e8e8e8; border: none; border-radius: 6px; padding: 5px 14px; font-size: 12px; font-weight: 600; font-family: 'Roboto', sans-serif; cursor: pointer; color: #666; transition: all .15s; }
.ndfc-xi-min:hover { background: #ddd; color: #333; }
.ndfc-xi-min--active { background: #c0392b; color: #fff; }

/* Terrain */
.ndfc-xi-pitch {
    position: relative;
    width: 100%;
    padding-bottom: 130%; /* ratio terrain */
    background: #2d7a2d;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* Marquages terrain */
.ndfc-xi-pitch::before {
    content: '';
    position: absolute;
    inset: 3%;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 4px;
    pointer-events: none;
}

/* Frames */
.ndfc-xi-frame { position: absolute; inset: 0; display: none; }
.ndfc-xi-frame--active { display: block; }

/* Joueur */
.ndfc-xi-player {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
}
.ndfc-xi-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.6);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.ndfc-xi-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.ndfc-xi-avatar svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
/* Badge note repositionné en dehors du cercle */
.ndfc-xi-player {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.ndfc-xi-avatar-wrap {
    position: relative;
    display: inline-flex;
}
.ndfc-xi-note {
    position: absolute;
    bottom: -4px;
    right: -8px;
    background: #c0392b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    border-radius: 10px;
    padding: 1px 5px;
    white-space: nowrap;
    border: 1.5px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    z-index: 2;
    pointer-events: none;
}
.ndfc-xi-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 1px 3px rgba(0,0,0,.7);
    white-space: nowrap;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lignes du terrain dessinées en SVG inline */
.ndfc-xi-pitch-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (max-width: 480px) {
    .ndfc-xi-avatar { width: 36px; height: 36px; }
    .ndfc-xi-avatar img { width: 36px; height: 36px; }
    .ndfc-xi-name { font-size: 9px; max-width: 60px; }
    .ndfc-xi-note { font-size: 9px; }
}
