/* --- Couleurs & Identité ASSIIN --- */
:root {
    --primary-color: #0d6efd; /* Bleu ASSIIN */
    --accent-color: #ffcc00;  /* Jaune MTN pour les touches d'éclat */
    --danger-custom: #dc3545; /* Rouge Orange Money */
}

/* --- Style Global --- */
body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

.rounded-4 { border-radius: 1.2rem !important; }

/* --- Carrousel Dynamique --- */
.carousel-item {
    transition: transform 1.2s ease-in-out, opacity 1s ease-in-out;
}

.carousel-item h1, .carousel-item h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* --- Cartes Médias (index & play) --- */
.media-card {
    border: none;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.media-card img {
    transition: transform 0.5s ease;
}

.media-card:hover img {
    transform: scale(1.1);
}

/* --- Mini Lecteur Audio Persistant --- */
#global-player {
    z-index: 1060;
    border-top: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.custom-range {
    height: 6px;
    accent-color: var(--primary-color);
}

/* --- Section Parrain & John Group --- */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 1.2rem;
}

.img-hover-zoom img {
    transition: transform .5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* --- Boutons Filtrage --- */
.btn-filter.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* --- Animations --- */
.animate__animated {
    --animate-duration: 0.8s;
}

/* Empêche le tableau de couper les menus déroulants */
.table-responsive, .card {
    overflow: visible !important;
}

/* Force le dropdown au-dessus de tout */
.dropdown-menu {
    z-index: 2000 !important; 
}

/* Fix pour l'alignement sur la droite */
.dropdown-menu-end {
    right: 0;
    left: auto;
}

