/* Style de la carte */
.map-card-epic {
    position: relative;
    aspect-ratio: 16 / 9; /* Format standard des thumbnails Fortnite */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.map-card-epic:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* La petite bulle de joueurs en bas à gauche */
.player-bubble {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.75); /* Noir semi-transparent */
    backdrop-filter: blur(4px);    /* Effet de flou derrière la bulle */
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Le titre sous l'image */
.map-title-bottom {
    margin-top: 8px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Coupe le texte proprement s'il est trop long */
}

.map-link {
    text-decoration: none !important;
}

.related-section h3 {
    font-size: 0.85rem;
    border-left: 3px solid #38bdf8; /* Petite barre verticale bleue à gauche du titre */
    padding-left: 10px;
}

.search-container-inner {
    background: #0f111a; /* Fond légèrement plus clair que le body */
    border: 1px solid rgba(0, 229, 255, 0.2); /* Bordure Cyan discrète */
    border-radius: 8px;
    padding: 30px;
    /* Optionnel : légère lueur pour détacher la carte du fond */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
}