/*------------------------------------------------------------------------
 *                        UNEVOYANTE.FR CUSTOM CSS - VERSION MODERNE
 *------------------------------------------------------------------------*/

/*----------------------
 *    COLORS
 *------------------------**/

:root {
    --main-bg-color: #000824;
    --primary-color: #8F00FF;
    --primary-color-hover: #6200AF;
    --darker-primary: #2F0A6B;
    --primary-white: #fff;
    --secondary-color: #4223FF;
    --secondary-color-hover: #2B12C7;
    --highlight-color: #32C323;

    --sp_tarot: #4223FF;
    --sp_tarot-stroke: #6C54FF;
    --sp_amour: #FF239A;
    --sp_amour-stroke: #FF69BA;
    --sp_rune: #532D92;
    --sp_rune_stroke: #8D62D4;
    --sp_numerologie: #1F3CA5;
    --sp_numerologie_stroke: #4E66BD;
    --sp_pendule: #EC672D;
    --sp_pendule_stroke: #FF9F75;
    
    --bs-border-color: #384985;

    /* Nouvelles couleurs pour le design moderne */
    --chat-bg-gradient: linear-gradient(135deg, #1a1447 0%, #2d1b69 50%, #1a1447 100%);
    --glassmorphism-bg: rgba(255, 255, 255, 0.15);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);
    --message-voyant-bg: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    --message-user-bg: linear-gradient(145deg, rgba(78, 205, 196, 0.2), rgba(78, 205, 196, 0.1));
    --accent-teal: #4ecdc4;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
}

/*----------------------
 *    FONTS
 *------------------------**/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: var(--heading-font);
}

/*----------------------
 *    RESET MODERNE
 *------------------------**/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-content{
    margin: 120px auto 0px auto !important;
}

html, body, .main {
    background: var(--chat-bg-gradient) !important;
    color: var(--primary-white);
    font-size: 14px;
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/*----------------------
 *    STARS ANIMATION
 *------------------------**/

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/*----------------------
 *    HEADER MODERNE
 *------------------------**/

.sticky-top, .navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /* padding: 20px !important; */
    background: rgba(26, 20, 71, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.navbar_mobile {
    display: none !important;
}

.count_header {
    background-color: #00061A;
    border: 1px solid #111C42;
    color: var(--primary-white);
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 12px;
}

.left_head {
    gap: 10px;
}

.right_head {
    gap: 15px;
}

.user_info {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: white;
    padding: 10px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
}

.user_info:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    color: white;
    text-decoration: none;
}

.credits_count {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
    padding: 4px 16px !important;
    border-radius: 15px !important;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none;
    color: white !important;
    border: none !important;
}

.credits_count:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.credits_count.pulse {
    animation: creditPulse 0.6s ease-in-out;
    background: linear-gradient(45deg, #4ecdc4, #44a08d) !important;
    box-shadow: 0 4px 20px rgba(78, 205, 196, 0.6) !important;
}

@keyframes creditPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.dropdown-menu {
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: linear-gradient(145deg, rgba(26, 20, 71, 0.98), rgba(45, 27, 105, 0.95));
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.3);
    margin-top: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-white) !important;
    min-width: 280px;
    overflow: hidden;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 4px 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.logout_link:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}

/*----------------------
 *    VOYANTS GRID MODERNE
 *------------------------**/

.voyant_card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    backdrop-filter: blur(20px) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.voyant_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.voyant_card:hover::before {
    left: 100%;
}

.voyant_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

.card_header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info_voyant {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar_voyant {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 3px solid #4ecdc4 !important;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3) !important;
    background: linear-gradient(45deg, #4ecdc4, #44a08d) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white !important;
    text-align: center !important;
    padding-top: 0 !important;
}

.bio_voyant {
    flex: 1;
}

.voyant_name {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-family: var(--heading-font);
}

.voyant_avis {
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /* margin-right: 8px; */
    min-width: 60px;
    height: 24px;
}

.voyant_avis:first-of-type {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.voyant_avis:last-of-type {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.label_premium {
    position: absolute;
    top: 15px;
    right: 15px;
}

.star_label {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: pulse-promo 2s infinite;
}

@keyframes pulse-promo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.shine {
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(1); }
}

.specialites_voyant {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.label_specialites {
    background: linear-gradient(45deg, #667eea, #764ba2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.label_specialites img {
    width: 12px;
    height: 14px;
}

.card-body {
    flex: 1;
    margin: 15px 0 25px 0;
}

.card-body p {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.card-footer {
    margin-top: auto;
}

.text-right {
    text-align: right;
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.btn_voyant {
    width: 100%;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border: none;
    padding: 15px;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn_voyant:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
    color: white;
    text-decoration: none;
}

.btn_voyant_danger {
    background: linear-gradient(45deg, #f59e0b, #d97706) !important;
    cursor: not-allowed !important;
    opacity: 0.9;
}

.btn_voyant_danger:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4) !important;
}

/*----------------------
 *    CARDS SPÉCIALES
 *------------------------**/

.reassurance-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08)) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.reassurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.reassurance-card:hover::before {
    left: 100%;
}

.reassurance-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    flex: 1;
}

.bubble {
    padding: 20px;
    border-radius: 18px;
    color: white;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 85px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 18px;
}

.bubble:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.green { 
    background: linear-gradient(135deg, #00d084, #00b574, #009688);
}

.pink { 
    background: linear-gradient(135deg, #ff6b9d, #ff4081, #e91e63);
}

.purple { 
    background: linear-gradient(135deg, #8b5cf6, #7c3aed, #6d28d9);
}

.orange { 
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
}

.bubble .icon {
    font-size: 24px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.trustpilot-logo {
    height: 35px;
    margin-top: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.faq-button {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #8b5cf6;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-button:hover::before {
    left: 100%;
}

.faq-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

/*----------------------
 *    ROUE DE LA FORTUNE
 *------------------------**/

.wheel-card {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4) !important;
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    color: white;
    text-align: center;
}

.wheel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6) !important;
}

.wheel-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.wheel-container {
    position: relative;
    margin-bottom: 20px;
}

.wheel {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    position: relative;
    cursor: pointer;
    transition: transform 3s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: conic-gradient(
        #ff6b6b 0deg 60deg,
        #4ecdc4 60deg 120deg,
        #45b7d1 120deg 180deg,
        #96ceb4 180deg 240deg,
        #feca57 240deg 300deg,
        #ff9ff3 300deg 360deg
    );
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wheel-sectors {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.wheel-sector {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wheel-sector:nth-child(1) { transform: rotate(0deg); }
.wheel-sector:nth-child(2) { transform: rotate(60deg); }
.wheel-sector:nth-child(3) { transform: rotate(120deg); }
.wheel-sector:nth-child(4) { transform: rotate(180deg); }
.wheel-sector:nth-child(5) { transform: rotate(240deg); }
.wheel-sector:nth-child(6) { transform: rotate(300deg); }

.wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 16px solid #ff1744;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.spin-button {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.spin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.spin-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.wheel-result {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #feca57;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    min-height: 20px;
}

/*----------------------
 *    ANIMATIONS
 *------------------------**/

.credit-animation {
    position: absolute;
    top: -20px;
    right: 10px;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 14px;
    animation: floatUp 2s ease-out;
    pointer-events: none;
    z-index: 1000;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/*----------------------
 *    SIDEBAR & NAVIGATION
 *------------------------**/

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #1a1447 0%, #2d1b69 100%);
    backdrop-filter: blur(20px);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
    border-right: 1px solid rgba(139, 92, 246, 0.3);
}

.sidebar a {
    padding: 18px 8px 8px 32px;
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-white);
    display: block;
    transition: 0.3s;
    border-radius: 0 25px 25px 0;
    margin-right: 10px;
}

.sidebar a:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(78, 205, 196, 0.2));
    color: white;
    text-decoration: none;
}

.sidebar .closebtn {
    position: absolute;
    top: 0;
    font-size: 36px;
    left: 0px;
}

.nav-toggle {
    -webkit-appearance: none;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.2s;
    cursor: pointer;
    color: #fff;
    background: none;
    height: 18px;
}

.fa-bars, .fa-xmark {
    font-size: 20px !important;
}

.nav-toggle:hover {
    color: #4ecdc4;
    transform: scale(1.1);
}

/*----------------------
 *    FOOTER
 *------------------------**/

.about {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    background: linear-gradient(135deg, #0f0a2e 0%, #1a1447 50%, #2d1b69 100%);
    padding: 60px 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent, rgba(78, 205, 196, 0.05));
    pointer-events: none;
}

.column-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.features {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.features:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.features h4 {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.features p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
}

.features img {
    margin: 10px 5px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.features img:hover {
    transform: translateY(-3px) scale(1.05);
}

/*----------------------
 *    RESPONSIVE
 *------------------------**/

@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }

    .navbar_mobile {
        display: block !important;
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 15px !important;
        background: rgba(26, 20, 71, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .main {
        padding: 12px !important;
        padding-top: 80px !important;
    }

    .voyants-section {
        padding-top: 20px !important;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .column-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .fa-solid {
        font-size: 12px !important;
    }

    .logo_mobile {
        width: 125px;
    }

    .credits_count {
        padding: 8px;
        font-size: 12px;
    }

    .voyant_card {
        padding: 20px !important;
        min-height: 280px;
    }

    .avatar_voyant {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px;
    }
}

/*----------------------
 *    UTILITÉS
 *------------------------**/

/* .headline_txt {
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 30px;
} */

strong {
    color: var(--highlight-color);
}

.fa-circle {
    color: var(--highlight-color);
    filter: drop-shadow(0px 0px 7px rgba(79, 255, 60, 0.60));
    font-size: 8px;
}

.loading {
    display: none;
}

/* Classes utilitaires pour la compatibilité */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.p-4 { padding: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.consult-btn {
  display: block;
  width: 100%;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
  border: none;
  padding: 13px;
  border-radius: 15px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: 16px;
  text-decoration: none;
}

.consultation-btn {
  background: linear-gradient(45deg, #f59e0b, #d97706) !important;
  cursor: not-allowed !important;
  opacity: 0.9;
}

 .voyant-status {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            
  color: white;
        }

        .online-dot {
            width: 10px;
            height: 10px;
            background: #4ecdc4;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .consultation-dot {
            width: 10px;
            height: 10px;
            background: #f59e0b;
            border-radius: 50%;
            animation: pulse-orange 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(78, 205, 196, 0); }
            100% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0); }
        }

        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
            100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
        }


        .stats-card {
            background: linear-gradient(135deg, #4338ca, #6366f1);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(67, 56, 202, 0.4);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 280px;
            color: white;
        }

        .stats-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            flex: 1;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 80px;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            font-weight: 500;
        }




        
/*------------------------------------------------------------------------
 *                                 MODALS
 *   
 *   
 *   
 *
 *------------------------------------------------------------------------**/ 


 .modal_pack {
   border-radius:12px;
   color: #101C43;
   font-size:14px;
   font-weight: 600;
 }

 .modal_offre {
    border-radius:12px;
   color: #101C43;
   font-size:14px;
   font-weight: 600;
   background:#8A1CCD;
 }

 .modal_pack p {
    margin-top:0px;
    margin-bottom:0px;
 }

 .modal_header_pack {
    background:#FF008A;
    color: var(--primary-white);
    text-align: center;
    padding:28px;
 }

 .modal-title {
    margin:auto;
    font-size:25px !important;
    font-weight: 600;
 }

 .plan_body {
    padding:8px;
    border:1px solid #E0E0E0;
    border-radius:10px;
    gap:8px;
 }

 .credits_price {
    background: #F3F2FF;
    padding-left: 10px;
    padding-right:10px;
    padding-top:8px;
    padding-bottom:8px;
    border-radius:10px;
    color:#4223FF;
    display: flex;
    flex-direction: column;
    font-family: var(--heading-font);
    font-weight: 400;
    align-items: center;
 }

 .price_btn {
    background:#237BFF;
    border:1px solid #0F5DD3;
    color:var(--primary-white);
    padding: 20px;
    border-radius:10px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-decoration: none;
    font-size:18px;
 }

 .credits_number {
    font-size:22px;
    font-family: var(--heading-font);
    font-weight: 700;
 }

 .modal_body_plan {
    display: flex;
    flex-direction: column;
    gap:8px;
 }

 .modal_offre {
    color:var(--primary-white);
 }

 .modal-footer a {
    color:var(--primary-white);
 }
 .credits_count_modal strong {
    font-weight: bold;
    color:var(--primary-white) !important;
 }

 .modal_header_offre {
    border-bottom:0px !important;
 }
 .pack_evidence {
    background:#F0FAEF !important;
    color:#16B006;
 }

 .pack_certitude {
    background:#FFF4E9 !important;
    color:#FF8D23;
 }


 .pack_resolution {
    background:#FFF0F8 !important;
    color:#FF008A;
 }

 .price_btn {
    flex-direction: column;
 }

 .old_price {
    text-decoration:line-through;
    font-size:14px;
 }

 .promo_btn {
    padding-top:10px;
    padding-bottom:10px;
    align-items: center;
 }

 .price_btn:hover {
    background:#115FD4;
    border:1px solid #115FD4;
 }
 .credits_count_modal {
    background:#FF008A;
    border-radius:50px;
    text-align: center;
    margin-top:-36px;
    border:2px solid var(--primary-white);
    width: fit-content;
    padding:10px;
    margin-left:auto;
    margin-right:auto;
    color:var(--primary-white)
 }

 .close {
    background:none !important;
    border:none;
    color:var(--primary-white);
 }

 .gift_illustration {
    width: 240px;;
 }

 .btn_secondary {
    background:white;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #69119E;
    padding: 12px;
    font-weight: 600;
 }

 .btn_secondary:hover {
    background:#F1DBFF;
    color:var(--darker-primary);
    border:2px solid #46096C;
 }

 /* .modal-footer {
    display:flex;
    flex-direction: column;
    padding:10px;
    border-top:1px solid #A24AD7;
 } */

 .modal_timer {
    background:#1C83CD;
    border:1px solid #44A7EE;
    border-radius:12px;
 }

 .credit_heading {
    background:#045894;
    border-radius:12px;
    padding:8px;
    text-transform: uppercase;
    font-weight: bold;
    border:1px solid #3BA1EA;
    z-index:2;
 }

 .price_promo {
    background:#045894;
    border:1px solid #3BA1EA;
    text-align: center;
    padding:10px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius:16px;
    font-size:16px !important;
    margin-top:-3px !important;
    z-index: 1;
    margin-bottom:12px;
    font-family: var(--heading-font);    
}

 .new_price {
    font-size:28px;
    margin-bottom:0px;
 }

 .timer {
    border-radius: 8px;
    border: 1px solid #89C3ED;
    background: #2587CE;
    padding:10px;
    font-family: var(--heading-font);
 }

 .timer span {
    font-size:26px;
 }

 .old_price {
    color:#FFB423;
    font-size:16px !important;
    font-weight: bold;
 }

 .btn_decline {
    background: #0B69AC;
    font-family: var(--heading-font);
    padding:12px;
    font-weight: 600;
 }

 .btn_decline:hover {
    background: #085A95;
 }

 .btn_accept {
    border-radius: 8px;
    border: 2px solid #0F64A1;
    background: #32C323;
    padding:12px;
    font-family: var(--heading-font);
    font-weight: 600;
 }

 .btn_accept:hover {
    border: 2px solid #065893;
    background: #1DB00E;
 }

 .footer_timer {
    width: 100%;
    flex-direction: row;
    border-top:0px !important;
 }

 .illustrations_coins {
    position:absolute;
    z-index:1;
    top:-10px;    
 }

 .modal_promo {
    border-radius: 12px;
    border: 1px solid #7694DD;
    background: linear-gradient(180deg, #3A569B 0%, #7E97D3 100%);
 }

 .title_giveaway {
    background: white; 
    padding:8px;
    border-radius:12px;
    color:#3A569B;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 133.333% */
    text-align:center;
    max-width: 300px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    z-index:1;

 }

 .amazon_card {
    width: 192px;
    z-index:0;
    margin-top:-40px;
 }

 .header_amazon_promo {
    border-bottom:0px;
 }

 .title_step {
    border-radius: 20px;
    background: rgba(59, 85, 144, 0.50);
    padding:8px;
    font-weight: 600;
 }

 .stepper {
    .line {
      width: 2px;
      background-color: #32519B !important;
    }
    .lead {
      font-size: 1.1rem;
    }
  }
  .line {
    width: 2px;
    background-color: #32519B !important;
  }
  .lead {
    font-size: 1.1rem;
  }
  .step_count {
    background:#A0B7F0;
    border:1px solid #2A4A96;
    color:#3353A1;
    font-weight: 600;
    font-size:14px;
    line-height: 24px;
  }

  .step-name {
    font-size:16px;
    padding-left:10px;
    height: 40px;
    font-weight: 600;
  }

  
 .plan_body_amazon {
    background: linear-gradient(180deg, #445B91 0%, rgba(68, 91, 145, 0.57) 100%);
    padding:8px;
    border:1px solid #283B68;
    border-radius:10px;
    gap:8px;
 }

 .pack_name {
    font-size:14px;
    font-weight: 600;
    margin-bottom:0px;
 }

 .credits_price_green {
    background: #F0FAEF;
    color:#16B006;
 }

 .bandeau {
    background:#66BD21;
    padding:8px;
    text-align: center;
    font-family: var(--heading-font);
    font-size:18px;
    font-weight: 600;
 }

 .phone {
    border-radius: 6px;
    border: 1px solid #283B68;
    background: rgba(37, 74, 161, 0.43);
    padding:12px;
    color:#fff;
    font-weight: 600;

}

::placeholder {
    color: var(--primary-white);
    opacity: 0.7; /* Firefox */
    font-weight: 600;
  }
  
  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--primary-white);
  }

.step-description {
    padding-left:0px;
    font-size:16px;
    font-weight: 600;
}

.label_input {
    color: #ACC0F0;
    font-weight: 600;
}

.btn_modal {
    background:white;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #374F89;
    padding: 12px;
    font-weight: 600;
    opacity: 1;
    color:#101C43;
}


 .btn_modal:hover {
    background:#fff;
    opacity: 0.8;
    color:#101C43;

    border:2px solid #374F89;
 }

 .title_giveaway strong {
    color: #FF9E25;

 }

 .title_modal {
    position:absolute;
    top:-40px;
    left:30%;
 }

 .modal_header_forfait {
    background: linear-gradient(180deg, #4F42BA 0%, #2C1E9C 66.5%);
    box-shadow: 0px -26px 24px 0px rgba(0, 0, 0, 0.25) inset;
    border-radius:20px !important;
 }

 .modal-header {
    background-image:url(../img/background_modal.svg);
    background-size:contain;
 }

 .plan_forfait {
    border-radius: 16px;
    gap:18px !important;
    padding:12px;
}

.forfait_purple {
    border: 1px solid #B3A6FF;
    background: linear-gradient(153deg, #EDEBFF 16.81%, #D8D3FF 87.1%);
    transition: all .2s ease-in-out;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.13), 0px 4px 4px 0px #FFF inset, 0px -4px 4px 0px #BAB2FF inset;
}

.forfait_green {
    color:#3D5800 !important;
    border: 1px solid #C9DF99;
    background: linear-gradient(153deg, #F2FFDC 16.81%, #EBFFB0 87.1%);
    transition: all .2s ease-in-out;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.13), 0px 4px 4px 0px #FFF inset, 0px -4px 4px 0px #C7EC70 inset;
}

.forfait_green:hover {
    transform: scale(1.05);
    border:1px solid #628E00;
}

.forfait_purple:hover {
    transform: scale(1.05);
    border:1px solid #12007F;
}

.forfait_orange:hover {
    transform: scale(1.05);
    border:1px solid #FF8900;
}

.forfait_pink:hover {
    transform: scale(1.05);
    border:1px solid #7800D6;
}

.forfait_orange {
    border-radius: 12px;
    color:#653800;
    border: 1px solid #FFB35A;
    transition: all .2s ease-in-out;
    background: linear-gradient(153deg, #FFF1D6 16.81%, #FFE9B0 87.1%);
box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px #FFF inset, 0px -4px 4px 0px #FFB55C inset;
}

.forfait_pink {
    color: #390065;
    border-radius: 12px;
    border: 1px solid #E5C4FF;
    transition: all .2s ease-in-out;

    background: linear-gradient(153deg, #EACFFF 16.81%, #D9A9FF 87.1%);
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.13), 0px 2px 4px 0px #FFF inset, 0px -2px 4px 0px #BB65FF inset;
}


 .modal_forfait {
    background: linear-gradient(180deg, #4F42BA 0%, #2C1E9C 66.5%);
    box-shadow: 0px -26px 24px 0px rgba(0, 0, 0, 0.25) inset;
    border-radius:20px;
 }
 
 .credits_purple span {
    color: #3B24C5;
} 

.credits_green {
    background: linear-gradient(173deg, #9FDC00 5.12%, #4F9E11 57.34%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credits_pink {
    background: linear-gradient(163deg, #DA33F5 11.54%, #BF08EC 98.46%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credits_orange {
    background: linear-gradient(163deg, #FF9330 11.54%, #BF6600 98.46%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.forfait_name {
    color: #3B24C5;
    font-weight: 900;
}

.price_current {
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.06);
    font-weight: bold;
    line-height: 8px;
    text-decoration:none !important;
}

.price_tag_new {
    font-size:16px;
    fill: white !important;
}

.price_tag_old {
    font-size:12px;
    fill: #654000 !important;
    text-decoration: line-through;
}

.price_tag {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.06);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    transition: all .2s ease-in-out;
    transform: rotate(-3deg);
}

.new_price {
    font-size:12px;
    fill: #654000 !important;
}

.price_tag:hover {
    transform: scale(1.1);
}

.price_tag svg {
    fill: linear-gradient(180deg, #FFC37D 0%, #F9AF20 100%);
    filter: drop-shadow(0px 1px 0px #C26D00);
}

.bouton-svg {
    transform: rotate(-3deg) !important;
    background-image: url('../img/btn_tag.svg');
    background-color: transparent;
    background-size: cover; /* Pour s'assurer que l'image remplit bien le bouton */
    width: 98px; /* Définis la largeur que tu veux pour ton bouton */
    height: 46px; /* Et la hauteur */
    border: none; /* Pas de bordure pour que ça ait l'air cool */
    color: white; /* Couleur du texte */
    font-size: 16px; /* Taille du texte */
    text-align: center; /* Pour centrer le texte dans le bouton */
    cursor: pointer; /* Pour que le curseur change quand on survole le bouton */
}

.credits_forfait {
    line-height:22px;
    font-size:27px;
}

.mw_modal {
    max-width: 410px;
}

.modal_body_forfait {
    margin-top:-55px;
}

.modal_border {
 position: absolute;
 width: 100%;
 height: 100%;
 padding:8px;

}

.border {
    border-radius: 14px;
    border: 1px dashed #7862FF !important;    
    width: 100%;
    height: 100%;
}

.coin_1 {
    position: absolute;
    left:-70px;
    top:-20px;
    z-index:5;
}
.coin_2 {
    position: absolute;
z-index:5;
    right:-30px;
    top:50px;
}

.input_custom {
    border-radius: 6px;
    background: #FFF;
    border:0px;
    padding:14px;
    font-weight: 500 !important;
}

.input_custom::focus {
    border:2px solid #495A94;
    background:var(--primary-white) !important;
}

.input_custom::placeholder {
    color:#7C8BBC;
    font-weight: 400;
}

.form-label {
    font-weight: 600;
}

.text-footer {
    color:#8592BE;
}

.upsell_card {
    border-radius: 10px;
    border: 1px solid #213067;
    background: linear-gradient(180deg, #0A163F 0%, #132976 89.5%, #1B39A5 100%);
    transition: all linear 200ms;
    background-clip: border-box;
    flex: 1 0 auto !important;
}


.up_card_header {
    padding-top:14px;
    font-weight: bold;
 }

 .upsell_icon {
    width: 36px;
 }

 .label_upsell {
    font-size:16px;
    color: white;
 }

 .upsell_bloc {
    border-radius: 6px;
border: 1px solid #354A92; 
width: 100%;
 }

 .price_upsell {
    text-transform: uppercase;
    text-align:center;
    color:white;
    font-weight: 800;
    
}

.price_up {
    border-top:1px solid #354A92;
    width: 100%;
}

.title_bloc {
    font-size: 16px;

}

.underline {
    border-bottom: 4px red !important;
    text-decoration: underline #8F00FF 3px;
}

/*
/////////////////// MODAL PRIME ///////////////////////
*/

.modal_prime {
    border-radius: 17px;
border: 4px solid #FF0;
background: linear-gradient(180deg, #FFD92F 0%, #FFD100 38.5%, #FFE15B 69.5%), linear-gradient(162deg, #FFDD54 12.35%, #FFDD54 26.58%, #FFE500 41.72%, #FFD632 50.51%, #FFE500 75.29%, #FFDD54 83.48%);
box-shadow: 0px -16px 14px 0px rgba(0, 0, 0, 0.03) inset, 0px 0px 20px 4px #FFA600 inset, 0px 0px 0px 7px #F3BF00 inset;
}

.dot_on {
    font-size:120px;
    line-height: 2px;
    color: #FFF;

    height: 20px;
    text-shadow: 0px 0px 8px #FFF, 0px 0px 14px #FFE100;
}

.dot_off {
    font-size:120px;
    line-height:18px;
    color: rgba(255, 255, 255, 0.70);
    mix-blend-mode: soft-light;
    filter: blur(0.5px);
}

.arg {
    border-radius: 10px;
    border: 2px solid #FFF;
    background: #FFF;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    text-align:center;
    padding:10px;
    color: #6B4500;
    max-width: 260px;;
    -webkit-font-smoothing: antialiased; /* Pour Safari et Chrome */
    -moz-osx-font-smoothing: grayscale;  /* Pour Firefox sur macOS */
    text-rendering: optimizeLegibility; /* Rend le texte plus lisible pour les petits textes */
    text-rendering: geometricPrecision; /* Pour une précision géométrique */
    font-feature-settings: "liga", "kern"; /* Active la ligature et le crénage */
    font-weight: medium;
    font-style: normal;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.11), 0px 0px 12px 0px #FFA927 inset, 0px 0px 0px 2px #FF9D00;
}

.price {
    border-radius: 10px;
    border: 2px solid #F3C800;
    background: #FFF;
    box-shadow: 0px 0px 24px 5px #FFDD6F, 0px 0px 15px 6px #FFF;
    width: fit-content;

    display: flex;
    flex-direction: column;
}

.modal_footer {
    margin-left:auto;
    margin-right:auto;
    background: #FFD100 !important;
    width: 100%;
    border-left:7px solid #F7B300;
    border-right:7px solid #F7B300;
    border-bottom:7px solid #F7B300;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-bottom:30px;
}

.big_price {
    font-family: var(--heading-font);
    color: #6C4601;
    text-align: center;
    font-size: 24px;
    line-height: 20px; /* 200% */
    font-weight: 600;
}

.price {
    margin-left:auto;
    margin-right:auto;
    margin-top:-20px;
    padding-left: 30px;
    padding-right:30px;
    padding-top:10px;
    padding-bottom:10px;
}

.small_price {
    color: rgba(66, 54, 0, 0.58);
    font-size:12px;
    text-align:center;
    
}

.order-btn {
    border-radius: 8px;
border: 1px solid #D56400;
background: linear-gradient(0deg, #E2712C 0%, #F99720 100%);
box-shadow: 0px -4px 10px 0px #F40 inset;
position: absolute;
width: 280px;
padding:8px;
font-family: var(--heading-font);
font-weight: 600;
color:#fff;
bottom:-20px;
transition: all .2s ease-in-out;

}

.order-btn:hover {
    transform: scale(1.05);
}
.title_modal_prime {
    position:absolute;
    top:-60px;
    left:25%;
    width: 220px !important;

}

/*
////////////////////////////////
///  MODALE FIDELITE //////////////*/

.modal_fidelite {
    background: #081C61;
    border: 1px solid #233677;
    border-radius:20px;
    
 }

.title_modal_fidelite {
    position:absolute;
    top: -40px;
    left:20%;
    width: 250px;
}

 .modal-header-fidelite {
    background-image:url(../img/bg_modal_fidelite.svg);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    height: 299px;
    width: 100%;
    position:absolute;
    top:0px;
    filter:blur(0px);
    z-index:0;
 }

.close_btn {
    right:20px;
    top:30px;
    color:#6B4500;

}

.container{

}

/* Variables de couleurs */
:root {
    --orange-primary: #FF8A00;
    --orange-dark: #CC6E00;
    --green-primary: #00B488;
    --green-dark: #008F6C;
    --purple-primary: #9D00FF;
    --purple-dark: #3D1779;
    --pink-primary: #FF00C7;
    --pink-dark: #CC009F;
  }
  
 /* Variables de couleurs */
:root {
    --orange-primary: #FF8A00;
    --orange-dark: #CC6E00;
    --green-primary: #00B488;
    --green-dark: #008F6C;
    --purple-primary: #9D00FF;
    --purple-dark: #3D1779;
    --pink-primary: #FF00C7;
    --pink-dark: #CC009F;
  }
  
  /* Conteneur du plan */
  .plan_body {
    width: 100%;
    position: relative;
  }
  
  /* Conteneur de la progress bar */
  .container .progresses {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    position: relative;
  }
  
  /* Ligne entre les steps */
  .line {
    display: block;
    width: 20px;
    height: 6px;
    background: var(--purple-dark) !important;
    margin: 0;
  }
  
  /* Styles de base pour tous les steps */
  .steps {
    display: flex;
    background-color: var(--purple-primary) !important;
    color: #fff;
    font-size: 14px;
    width: 14px;
    height: 14px;
    min-width: 14px; /* Assure une largeur minimale */
    min-height: 14px; /* Assure une hauteur minimale */
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    z-index: 1;
  }
  
  /* Step actif */
  .steps.active {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border: 2px solid white;
    filter: drop-shadow(0px 2px 2px rgba(52, 11, 105, 0.30));
    position: relative;
  }
  
  /* Icône dans le step actif */
  .steps.active i {
    font-size: 12px;
    color: white;
    position: relative;
    z-index: 2;
  }
  
  /* Steps futurs */
  .steps.futur {
    background: white !important;
    border: 1px solid var(--purple-dark);
  }
  
  /* Tooltip */
  .tooltip_2 {
    position: absolute;
    top:25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
  }
  
  .tooltip_2 span {
    display: block;
    text-align: center;
  }
  
/* Variations de couleurs - Orange */
.forfait_orange .line {
    background: var(--orange-dark) !important;
  }
  
  .forfait_orange .steps {
    background-color: var(--orange-primary) !important;
  }
  
  .forfait_orange .steps.futur {
    border-color: var(--orange-dark);
  }
  
  /* Variations de couleurs - Violet */
  .forfait_purple .line {
    background: var(--purple-dark) !important;
  }
  
  .forfait_purple .steps {
    background-color: var(--purple-primary) !important;
  }
  
  .forfait_purple .steps.futur {
    border-color: var(--purple-dark);
  }
  
  /* Variations de couleurs - Vert */
  .forfait_green .line {
    background: var(--green-dark) !important;
  }
  
  .forfait_green .steps {
    background-color: var(--green-primary) !important;
  }
  
  .forfait_green .steps.futur {
    border-color: var(--green-dark);
  }
  
  /* Variations de couleurs - Rose */
  .forfait_pink .line {
    background: var(--pink-dark) !important;
  }
  
  .forfait_pink .steps {
    background-color: var(--pink-primary) !important;
  }
  
  .forfait_pink .steps.futur {
    border-color: var(--pink-dark);
  }


  :root {
    --orange-primary: #FF8A00;
    --orange-dark: #CC6E00;
    --orange-bg: #FFF3E0;
    --green-primary: #00B488;
    --green-dark: #008F6C;
    --green-bg: #E8FFF3;
    --purple-primary: #9D00FF;
    --purple-dark: #3D1779;
    --purple-bg: #F8F0FF;
    --pink-primary: #FF00C7;
    --pink-dark: #CC009F;
    --pink-bg: #FFF0FA;
  }
  
  /* Conteneur principal */
  .programme-fidelite {
    border-radius: 20px;
    padding: 1.5rem;
    padding-top:0px;
    margin-top:-30px !important;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Conteneur des cards */
  .cards-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  
  /* Style de base des cards */
  .plan_body {
    width: 100%;
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  /* Titre du forfait */
  .forfait_name {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Variations de couleurs pour les backgrounds */
  .forfait_purple {
    background-color: var(--purple-bg);
  }
  
  .forfait_green {
    background-color: var(--green-bg);
  }
  
  .forfait_orange {
    background-color: var(--orange-bg);
  }
  
  .forfait_pink {
    background-color: var(--pink-bg);
  }
  
  /* Progress bar styles */
  .progresses {
    display: flex;
    align-items: center;
    gap: 0;
  }
  
  .line {
    display: block;
    width: 20px;
    height: 6px;
  }
  
  .steps {
    display: flex;
    color: #fff;
    font-size: 14px;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 50%;
    position: relative;
  }
  
  /* Step actif */
  .steps.active {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    border: 2px solid white;
    filter: drop-shadow(0px 2px 2px rgba(52, 11, 105, 0.30));
  }
  
  /* Step passé */
  .steps.passed {
    background-color: white !important;
    border: 1px solid;
  }
  
  /* Step futur */
  .steps.futur {
    background: white !important;
    border: 1px solid;
  }
  
  /* Tooltip */
  .tooltip_2 {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--darker-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
  }
  
  /* Couleurs des éléments de progression pour chaque forfait */
  .forfait_purple .line {
    background: var(--purple-dark) !important;
  }
  .forfait_purple .steps {
    background-color: var(--purple-primary) !important;
  }
  .forfait_purple .steps.passed {
    background: var(--purple-primary) !important;
    color: var(--purple-primary);
    border-color: white;

  }
  .forfait_purple .steps.futur {
    background-color: white !important;
    border-color: var(--purple-dark);
    color: var(--purple-dark);
  }
  
  /* States pour le forfait vert */
  .forfait_green .line {
    background: var(--green-dark) !important;
  }
  .forfait_green .steps {
    background-color: var(--green-primary) !important;
  }
  .forfait_green .steps.passed {
    background: var(--green-primary) !important;
    color: var(--green-primary);
    border-color: white;

  }
  .forfait_green .steps.futur {
    background-color: white !important;
    border-color: var(--green-dark);
    color: var(--green-dark);
  }
  
  /* States pour le forfait orange */
  .forfait_orange .line {
    background: var(--orange-dark) !important;
  }
  .forfait_orange .steps {
    background-color: var(--orange-primary) !important;
  }
  .forfait_orange .steps.passed {
    background: var(--orange-primary) !important;
    color: var(--orange-primary);
    border-color: white;

  }
  .forfait_orange .steps.futur {
    background-color: white !important;
    border-color: var(--orange-dark);
    color: var(--orange-dark);
  }
  
  /* States pour le forfait rose */
  .forfait_pink .line {
    background: var(--pink-dark) !important;
  }
  .forfait_pink .steps {
    background-color: var(--pink-primary) !important;
  }
  .forfait_pink .steps.passed {
    background: var(--pink-primary) !important;
    color: var(--pink-primary);
    border-color: white;

  }
  .forfait_pink .steps.futur {
    background-color: white !important;
    border-color: var(--pink-dark);
    color: var(--pink-dark);
  }


  .btn_gift {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 1rem auto 0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  /* Variations de couleur pour chaque forfait */
  .forfait_purple .btn_gift {
    background-color: var(--purple-primary);
    box-shadow: 0 4px 6px rgba(157, 0, 255, 0.2);
  }
  
  .forfait_purple .btn_gift:hover {
    background-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(157, 0, 255, 0.3);
  }
  
  .forfait_green .btn_gift {
    background-color: var(--green-primary);
    box-shadow: 0 4px 6px rgba(0, 180, 136, 0.2);
  }
  
  .forfait_green .btn_gift:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 180, 136, 0.3);
  }
  
  .forfait_orange .btn_gift {
    background-color: var(--orange-primary);
    box-shadow: 0 4px 6px rgba(255, 138, 0, 0.2);
  }
  

  .close_fidelite {
    top:20px;
    left:12px;
  }



  /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 20px;
            background: rgba(26, 20, 71, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .user-profile {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .credits, .user-status {
            color: white;
            padding: 15px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 30px;
            box-sizing: border-box;
        }

        .credits {
            background: linear-gradient(45deg, #667eea, #764ba2);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .user-status {
            background: linear-gradient(45deg, #8b5cf6, #a855f7);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            position: relative;
            cursor: pointer;

            color: white;
            padding: 15px 20px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 30px;
            box-sizing: border-box;
        }

        .user-status:hover {
            background: linear-gradient(45deg, #7c3aed, #9333ea);
            transform: translateY(-1px);
        }
        
        .dropdown-menu-unevoyante {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: linear-gradient(145deg, rgba(26, 20, 71, 0.98), rgba(45, 27, 105, 0.95));
            backdrop-filter: blur(25px);
            border-radius: 20px;
            min-width: 280px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow: hidden;
        }

        .dropdown-menu-unevoyante.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .dropdown-menu-unevoyante::before {
            content: '';
            position: absolute;
            top: -10px;
            right: 25px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid rgba(26, 20, 71, 0.98);
            filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.3));
        }

        .dropdown-menu-unevoyante::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent, rgba(78, 205, 196, 0.1));
            pointer-events: none;
            border-radius: 20px;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 14px 20px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 12px;
            margin: 4px 10px;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .dropdown-item:hover::before {
            left: 100%;
        }

        .dropdown-item:hover {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            color: white;
            transform: translateX(8px) scale(1.02);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }

        .dropdown-item.logout:hover {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
        }

        .dropdown-item-icon {
            font-size: 18px;
            width: 22px;
            text-align: center;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
        }

        .dropdown-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
            margin: 8px 20px;
            position: relative;
        }

        .dropdown-divider::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .user-info {
            padding: 20px 20px 15px 20px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            margin-bottom: 8px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(78, 205, 196, 0.1));
            position: relative;
        }

        .user-info::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .user-name {
            font-weight: bold;
            color: white;
            font-size: 16px;
            margin-bottom: 6px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .user-credits {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .dropdown-arrow {
            margin-left: 8px;
            font-size: 12px;
            transition: transform 0.3s ease;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
        }

        .dropdown-arrow.rotated {
            transform: rotate(180deg);
        }








        /* Footer Styles */
        .footer {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, #0f0a2e 0%, #1a1447 50%, #2d1b69 100%);
        }

        .trust-section {
            padding: 60px 20px;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .trust-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent, rgba(78, 205, 196, 0.05));
            pointer-events: none;
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .trust-item {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .trust-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .trust-item:hover::before {
            left: 100%;
        }

        .trust-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(139, 92, 246, 0.4);
            border: 1px solid rgba(139, 92, 246, 0.5);
        }

        .trust-icon {
            margin-bottom: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100px;
        }

        .payment-icons-container {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .visa-logo, .mastercard-logo {
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        }

        .visa-logo:hover, .mastercard-logo:hover {
            transform: translateY(-3px) scale(1.05);
            filter: drop-shadow(0 8px 25px rgba(26, 31, 113, 0.5));
        }

        .mastercard-logo:hover {
            filter: drop-shadow(0 8px 25px rgba(235, 0, 27, 0.5));
        }

        .security-icon, .confidence-icon {
            transition: all 0.4s ease;
            filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
        }

        .trust-item:hover .security-icon,
        .trust-item:hover .confidence-icon {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 12px 35px rgba(139, 92, 246, 0.4));
        }

        .trust-item:hover .security-icon {
            filter: drop-shadow(0 12px 35px rgba(78, 205, 196, 0.4));
        }

        .trust-content h3 {
            color: white;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .trust-content p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 14px;
        }

        .footer-main {
            background: linear-gradient(135deg, rgba(26, 20, 71, 0.9), rgba(15, 10, 46, 0.95));
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            padding: 40px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
        }

        .footer-left {
            flex: 1;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
        }

        .footer-links {
            display: flex;
            gap: 60px;
        }

        .footer-column h4 {
            color: #8b5cf6;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-column ul li a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #a855f7);
            transition: width 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 15px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .footer-column ul li a:hover::before {
            width: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .trust-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                gap: 40px;
            }

            .user-profile {
                /* flex-direction: column;
                gap: 15px; */
            }
            .logo img {
                height: 40px;
                width: auto;
            }
        }



        /* Responsive */
        @media (max-width: 768px) {
            .trust-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                gap: 40px;
            }

            .user-profile {
                /* flex-direction: column;
                gap: 15px; */
            }

            .credits, .user-status {
                padding: 9px 8px;
            }

            .header-right {
                padding-left: 10px;
                gap: 6px;
            }
        }