/* ============================================
   LE CEVE - Club des Entrepreneurs du Val d'Europe
   Theme: Black & Gold Luxury
   ============================================ */

:root {
    --gold: #F5DB30;
    --gold-light: #F8E76A;
    --gold-dark: #D4BE1E;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-hover: #222222;
    --white: #FFFFFF;
    --gray-light: #B0B0B0;
    --gray: #888888;
    --font-display: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 76px;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }
h3, h4 { letter-spacing: 0.1rem; }
h5 { font-family: var(--font-body); font-weight: 500; letter-spacing: 0.04em; }
a { text-decoration: none; transition: var(--transition); }
::selection { background: var(--gold); color: var(--black); }

/* ============================================
   SPA TRANSITIONS
   ============================================ */
#pageContent {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 1;
    transform: translateY(0);
}
#pageContent.page-leaving {
    opacity: 0;
    transform: translateY(12px);
}
#pageContent.page-entering {
    opacity: 0;
    transform: translateY(-8px);
    animation: pageIn 0.35s ease forwards;
}
@keyframes pageIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 219, 48, 0.08);
    padding: 0.8rem 0;
    transition: var(--transition);
}
#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(245, 219, 48, 0.2);
    padding: 0.5rem 0;
}
.navbar-brand img { transition: var(--transition); filter: brightness(1.1); }

.nav-link {
    font-family: var(--font-body); font-weight: 400; font-size: 1rem;
    letter-spacing: 0.04em; color: rgba(255,255,255,0.8) !important;
    padding: 0.5rem 1rem !important; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--gold); transition: var(--transition); transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important; font-weight: 600; font-size: 0.85rem;
    letter-spacing: 0.05em; text-transform: uppercase; border: none;
    border-radius: 50px; padding: 0.6rem 1.4rem; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245,219,48,0.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,219,48,0.4);
    color: var(--black) !important;
}
.btn-outline-gold {
    border: 1px solid var(--gold); color: var(--gold) !important; background: transparent;
    font-weight: 500; font-size: 0.85rem; letter-spacing: 0.04em;
    border-radius: 50px; padding: 0.5rem 1.2rem; transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold); color: var(--black) !important;
    box-shadow: 0 4px 15px rgba(245,219,48,0.3);
}
.btn-lg-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important; font-weight: 700; font-size: 1rem;
    letter-spacing: 0.06em; text-transform: uppercase; border: none;
    border-radius: 50px; padding: 1rem 2.5rem; transition: var(--transition);
    box-shadow: 0 6px 20px rgba(245,219,48,0.3);
}
.btn-lg-gold:hover {
    transform: translateY(-3px); box-shadow: 0 12px 35px rgba(245,219,48,0.5);
    color: var(--black) !important;
}

/* ============================================
   HERO - Video background
   ============================================ */
.hero-section {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; overflow: hidden;
}
.hero-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    position: absolute; top: 50%; left: 50%;
    width: auto; height: auto; min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%); object-fit: cover;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 6rem; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(245,219,48,0.1); border: 1px solid rgba(245,219,48,0.3);
    color: var(--gold); padding: 0.4rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.5rem; animation: fadeInDown 0.8s ease-out;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-title .text-gold { color: var(--gold); display: block; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 300;
    color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.7;
    margin-bottom: 2.5rem; animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-cta { animation: fadeInUp 0.8s ease-out 0.6s both; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: bounce 2s infinite; color: var(--gold);
    font-size: 1.5rem; opacity: 0.6;
}

/* ============================================
   SECTIONS
   ============================================ */
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 1rem; }
.gold-line-center { width: 80px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0 auto 1.5rem; }
.section-padding { padding: 6rem 0; }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray-light); font-size: 1.05rem; font-weight: 300; max-width: 600px; margin: 0 auto 3rem; }

/* ============================================
   VALUE CARDS
   ============================================ */
.value-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; padding: 2.5rem 2rem; text-align: center;
    transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(245,219,48,0.25); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.value-card:hover::before { opacity: 1; }
.value-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.2rem; display: inline-block; transition: var(--transition); }
.value-card:hover .value-icon { transform: scale(1.15); }
.value-card h4 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.8rem; }
.value-card p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.6; }

/* ============================================
   EVENT CARDS
   ============================================ */
.event-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; overflow: hidden; transition: var(--transition); height: 100%;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(245,219,48,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.event-card-img { position: relative; overflow: hidden; }
.event-card-img img { width: 100%; height: auto; display: block; transition: var(--transition); }
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-date-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(10px);
    border: 1px solid var(--gold); border-radius: 12px;
    padding: 0.6rem 1rem; text-align: center; min-width: 70px;
}
.event-date-badge .day { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }
.event-date-badge .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); font-weight: 600; }
.event-card-body { padding: 1.5rem; }
.event-card-body h4 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.event-meta { display: flex; align-items: center; gap: 0.5rem; color: var(--gray); font-size: 0.85rem; margin-bottom: 0.3rem; }
.event-meta i { color: var(--gold); font-size: 0.9rem; }
.event-price {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(245,219,48,0.1); border: 1px solid rgba(245,219,48,0.2);
    color: var(--gold); padding: 0.3rem 0.8rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; margin-top: 0.8rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
    background: var(--black-light);
    border-top: 1px solid rgba(245,219,48,0.1);
    border-bottom: 1px solid rgba(245,219,48,0.1);
    padding: 4rem 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.9rem; font-weight: 500; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   ABOUT
   ============================================ */
.about-highlight { border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0; }
.about-highlight p { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.85); font-family: var(--font-display); line-height: 1.7; }
.pillar-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(245,219,48,0.15); line-height: 1; margin-bottom: 0.5rem; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, rgba(245,219,48,0.08), rgba(10,10,10,1));
    border: 1px solid rgba(245,219,48,0.15); border-radius: 24px;
    padding: 3.5rem; margin: 0;
}
.newsletter-input-group { max-width: 500px; }
.newsletter-input {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(245,219,48,0.2);
    color: var(--white); border-radius: 50px 0 0 50px; padding: 0.8rem 1.5rem; font-size: 0.95rem;
}
.newsletter-input:focus { background: rgba(255,255,255,0.08); border-color: var(--gold); box-shadow: 0 0 0 0.2rem rgba(245,219,48,0.15); color: var(--white); }
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-btn {
    background: var(--gold); color: var(--black); font-weight: 700; border: none;
    border-radius: 0 50px 50px 0; padding: 0.8rem 1.5rem;
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; transition: var(--transition);
}
.newsletter-btn:hover { background: var(--gold-light); color: var(--black); }

/* ============================================
   FORM
   ============================================ */
.form-control-dark {
    background-color: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    transition: var(--transition);
}
.form-control-dark:focus {
    background-color: rgba(255,255,255,0.07) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(245,219,48,0.1) !important;
    color: var(--white) !important;
}
.form-control-dark::placeholder { color: var(--gray) !important; }
.form-select-dark {
    background-color: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23F5DB30' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
}
.form-select-dark:focus {
    background-color: rgba(255,255,255,0.07) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(245,219,48,0.1) !important;
    color: var(--white) !important;
}
.form-select-dark option { background: var(--black-card); color: var(--white); }
.form-label-gold { font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 0.4rem; display: block; }

/* ============================================
   MEMBERS
   ============================================ */
.member-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.06);
    border-radius: 16px; padding: 2rem; text-align: center; transition: var(--transition);
}
.member-card:hover { border-color: rgba(245,219,48,0.25); transform: translateY(-4px); }
.member-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--black);
}
.member-avatar-img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: center center;
    display: block; margin: 0 auto 1rem; border: 2px solid rgba(245,219,48,0.2);
}
.member-card h5 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; }
.member-card .company { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.member-card .role { color: var(--gray); font-size: 0.8rem; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, rgba(245,219,48,0.04) 0%, var(--black) 100%);
    text-align: center; border-bottom: 1px solid rgba(245,219,48,0.08);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; }
.breadcrumb-custom { display: flex; justify-content: center; gap: 0.5rem; list-style: none; padding: 0; margin-top: 1rem; }
.breadcrumb-custom li { font-size: 0.85rem; color: var(--gray); }
.breadcrumb-custom li a { color: var(--gold); }
.breadcrumb-custom li + li::before { content: '/'; margin-right: 0.5rem; color: var(--gray); }

/* ============================================
   OFFCANVAS MENU
   ============================================ */
.offcanvas-ceve {
    background: var(--black) !important;
    border-left: 1px solid rgba(245,219,48,0.15) !important;
    max-width: 320px; width: 85vw;
}
.offcanvas-ceve .offcanvas-header {
    padding: 1.3rem 1.5rem; border-bottom: 1px solid rgba(245,219,48,0.1);
    display: flex; align-items: center; justify-content: space-between;
}
.offcanvas-brand img { filter: brightness(1.1); }
.offcanvas-close-btn {
    background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--white);
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1rem; cursor: pointer; transition: var(--transition); padding: 0; line-height: 1;
}
.offcanvas-close-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,219,48,0.08); }
.offcanvas-ceve .offcanvas-body { padding: 1.5rem; display: flex; flex-direction: column; }
.offcanvas-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.offcanvas-nav-link {
    display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 1rem;
    border-radius: 12px; color: rgba(255,255,255,0.7); font-family: var(--font-body);
    font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; transition: var(--transition); position: relative;
}
.offcanvas-nav-link i { font-size: 1.15rem; width: 22px; text-align: center; color: var(--gray); transition: var(--transition); }
.offcanvas-nav-link:hover { background: rgba(245,219,48,0.06); color: var(--white); }
.offcanvas-nav-link:hover i { color: var(--gold); }
.offcanvas-nav-link.active { background: rgba(245,219,48,0.1); color: var(--gold); }
.offcanvas-nav-link.active i { color: var(--gold); }
.offcanvas-nav-link.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 60%; background: var(--gold); border-radius: 0 3px 3px 0;
}
.offcanvas-divider { border-color: rgba(245,219,48,0.1); margin: 1.2rem 0; }
.offcanvas-social-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); }
.offcanvas-footer-ceve { padding: 1rem 1.5rem; border-top: 1px solid rgba(245,219,48,0.08); text-align: center; }
.offcanvas-footer-ceve small { color: var(--gray); font-size: 0.7rem; letter-spacing: 0.04em; }
.offcanvas-backdrop.show { background-color: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }

/* ============================================
   FOOTER
   ============================================ */
.footer-section { background: var(--black-light); border-top: 1px solid rgba(245,219,48,0.1); padding: 4rem 0 2rem; }
.footer-logo { filter: brightness(1.1); }
.text-light-muted { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.footer-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
    width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(245,219,48,0.2); border-radius: 50%;
    color: var(--gold) !important; font-size: 1.1rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black) !important; border-color: var(--gold); transform: translateY(-3px); }
.footer-divider { border-color: rgba(245,219,48,0.1); margin: 2rem 0 1.5rem; }
.footer-copy { color: var(--gray); font-size: 0.8rem; }
.footer-legal-link { color: var(--gray); font-size: 0.8rem; }
.footer-legal-link:hover { color: var(--gold); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 6rem; right: 2rem; width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold); color: var(--black) !important; border-radius: 50%;
    font-size: 1.2rem; opacity: 0; visibility: hidden; transition: var(--transition);
    z-index: 999; box-shadow: 0 4px 15px rgba(245,219,48,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(245,219,48,0.5); color: var(--black) !important; }

/* ============================================
   RADIO PLAYER - Barre fixe permanente
   ============================================ */
.radio-player {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
    background: linear-gradient(180deg, rgba(14,14,14,0.97), rgba(8,8,8,0.99));
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(245,219,48,0.12);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5); transition: border-color 0.4s ease;
}
.radio-player.is-playing { border-top-color: rgba(245,219,48,0.35); }
.radio-player-inner {
    display: flex; align-items: center; gap: 1.2rem;
    max-width: 1320px; margin: 0 auto; padding: 0.65rem 1.5rem;
}
.radio-player-cover {
    position: relative; width: 52px; height: 52px; min-width: 52px;
    border-radius: 10px; overflow: hidden; border: 1px solid rgba(245,219,48,0.15);
    box-shadow: 0 2px 12px rgba(0,0,0,0.4); transition: var(--transition);
}
.radio-player-cover.playing { border-color: rgba(245,219,48,0.4); box-shadow: 0 2px 18px rgba(245,219,48,0.15); }
.radio-player-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.radio-player-pulse {
    position: absolute; inset: 0; border-radius: 10px;
    border: 2px solid var(--gold); opacity: 0; pointer-events: none;
}
.radio-player-cover.playing .radio-player-pulse { animation: playerPulse 2s ease-out infinite; }
@keyframes playerPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.35); opacity: 0; } }

.radio-player-track { display: flex; align-items: center; gap: 0.9rem; flex: 1; min-width: 0; }
.radio-player-info { min-width: 0; flex: 1; }
.radio-player-label {
    display: flex; align-items: center; gap: 0.4rem; font-size: 0.65rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--gold); margin-bottom: 0.15rem;
}
.radio-player-label i { font-size: 0.75rem; }
.radio-live-badge {
    display: inline-block; background: rgba(245,219,48,0.1); border: 1px solid rgba(245,219,48,0.2);
    color: var(--gold); font-size: 0.55rem; font-weight: 800; letter-spacing: 0.1em;
    padding: 0.1rem 0.45rem; border-radius: 50px; opacity: 0.4; transition: var(--transition);
}
.radio-live-badge.active { background: var(--gold); color: var(--black); border-color: var(--gold); opacity: 1; animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

.radio-slogan {
    display: none; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.06em;
    color: var(--gold-light); font-style: italic; opacity: 1;
    transition: opacity 0.4s ease;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px;
}
.radio-slogan.slogan-fade, .radio-live-badge.slogan-fade { opacity: 0; }

.radio-player-title { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.radio-player-artist { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--gray-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }

.radio-player-controls { display: flex; align-items: center; }
.radio-btn-play {
    width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold);
    background: transparent; color: var(--gold); font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); padding: 0; line-height: 1;
}
.radio-btn-play:hover { background: var(--gold); color: var(--black); transform: scale(1.08); box-shadow: 0 0 20px rgba(245,219,48,0.35); }
.radio-btn-play i { margin-left: 2px; }
.is-playing .radio-btn-play { background: var(--gold); color: var(--black); }
.is-playing .radio-btn-play i { margin-left: 0; }
.is-playing .radio-btn-play:hover { background: var(--gold-light); box-shadow: 0 0 25px rgba(245,219,48,0.45); }

.radio-btn-back-live {
    width: 28px; height: 28px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.12); color: #fff; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); padding: 0;
    position: relative;
}
.radio-btn-back-live:hover { background: rgba(255,255,255,0.25); }
.radio-btn-back-live::after {
    content: 'Retour à la radio'; position: absolute; bottom: calc(100% + 8px); left: 50%;
    transform: translateX(-50%); background: #1a1a1a; color: var(--gold); font-size: 0.7rem;
    padding: 4px 10px; border-radius: 6px; white-space: nowrap; pointer-events: none;
    opacity: 0; transition: opacity 0.2s; border: 1px solid rgba(245,219,48,0.2);
}
.radio-btn-back-live:hover::after { opacity: 1; }

.radio-player-volume { display: flex; align-items: center; gap: 0.5rem; }
.radio-btn-vol { background: none; border: none; color: var(--gray-light); font-size: 1.1rem; cursor: pointer; padding: 0.3rem; transition: var(--transition); line-height: 1; }
.radio-btn-vol:hover { color: var(--gold); }
.radio-volume-slider {
    -webkit-appearance: none; appearance: none; width: 90px; height: 4px;
    background: rgba(255,255,255,0.12); border-radius: 4px; outline: none; cursor: pointer; transition: background 0.2s;
}
.radio-volume-slider:hover { background: rgba(255,255,255,0.2); }
.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 14px; height: 14px;
    border-radius: 50%; background: var(--gold); cursor: pointer; border: none;
    box-shadow: 0 0 6px rgba(245,219,48,0.4); transition: transform 0.2s, box-shadow 0.2s;
}
.radio-volume-slider::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 0 12px rgba(245,219,48,0.6); }
.radio-volume-slider::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); cursor: pointer; border: none; box-shadow: 0 0 6px rgba(245,219,48,0.4); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .newsletter-section { padding: 2rem; }
}
@media (max-width: 767px) {
    .radio-player-inner { padding: 0.5rem 1rem; gap: 0.8rem; }
    .radio-player-cover { width: 42px; height: 42px; min-width: 42px; border-radius: 8px; }
    .radio-player-volume { display: none; }
    .radio-btn-play { width: 42px; height: 42px; font-size: 1.2rem; }
    .radio-player-title { font-size: 0.82rem; }
    .radio-player-artist { font-size: 0.7rem; }
    .radio-player-label { font-size: 0.6rem; }
    body { padding-bottom: 66px; }
}
@media (max-width: 575px) {
    .section-padding { padding: 4rem 0; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .stat-number { font-size: 2.2rem; }
}

/* ============================================
   INSCRIPTION - Choix statut
   ============================================ */
.status-choice-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.1);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; height: 100%;
}
.status-choice-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.status-choice-card:hover .status-choice-arrow { opacity: 1; color: var(--gold); }
.status-choice-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    font-size: 2rem; color: var(--black); transition: var(--transition);
}
.status-choice-icon.visitor { background: linear-gradient(135deg, #3498db, #2980b9); color: var(--white); }
.status-choice-card:hover .status-choice-icon { transform: scale(1.1); }
.status-choice-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.8rem; }
.status-choice-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.status-choice-perks { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.status-choice-perks span { color: var(--gray-light); font-size: 0.82rem; display: flex; align-items: center; gap: 0.5rem; }
.status-choice-perks i { color: var(--gold); font-size: 0.85rem; }
.status-choice-arrow { margin-top: 1.5rem; font-size: 1.5rem; color: var(--gray); opacity: 0.4; transition: var(--transition); }

.inscription-status-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
}
.inscription-status-badge.adherent { background: rgba(245,219,48,0.12); border: 1px solid rgba(245,219,48,0.3); color: var(--gold); }
.inscription-status-badge.visiteur { background: rgba(52,152,219,0.12); border: 1px solid rgba(52,152,219,0.3); color: #3498db; }

/* ============================================
   PROFILS ENTREPRENEURS
   ============================================ */
.profil-card-main {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.1);
    border-radius: 20px; overflow: hidden; position: relative;
}
.profil-cover {
    height: 100px; background: linear-gradient(135deg, #2a1f0a, #1a1400);
    position: relative;
}
.profil-avatar-wrap { display: flex; flex-direction: column; align-items: center; margin-top: -40px; position: relative; z-index: 1; }
.profil-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--black);
    border: 3px solid var(--black-card);
}
.profil-badge-member {
    display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem;
    background: rgba(245,219,48,0.12); border: 1px solid rgba(245,219,48,0.25);
    color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
    padding: 0.2rem 0.7rem; border-radius: 50px;
}
.profil-card-body { padding: 1rem 1.5rem 1.5rem; text-align: center; }
.profil-name { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.2rem; }
.profil-function { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.profil-company { color: var(--gold); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.2rem; }
.profil-location { color: var(--gray); font-size: 0.8rem; }

.profil-socials { display: flex; justify-content: center; gap: 0.6rem; }
.profil-social-link {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(245,219,48,0.2); border-radius: 50%; color: var(--gold) !important;
    font-size: 1rem; transition: var(--transition);
}
.profil-social-link:hover { background: var(--gold); color: var(--black) !important; transform: translateY(-2px); }

.profil-contact-list { display: flex; flex-direction: column; gap: 0.6rem; text-align: left; }
.profil-contact-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: var(--gray-light); }
.profil-contact-item i { color: var(--gold); font-size: 0.95rem; width: 18px; text-align: center; }
.profil-contact-item a { color: var(--gold); }
.profil-contact-item a:hover { color: var(--gold-light); }

.profil-section { margin-bottom: 2.5rem; }
.profil-section-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 1rem; display: flex; align-items: center; }
.profil-bio { color: var(--gray-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.8rem; }

.profil-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.profil-tag {
    background: rgba(245,219,48,0.08); border: 1px solid rgba(245,219,48,0.15);
    color: var(--gold); font-size: 0.78rem; font-weight: 500; padding: 0.35rem 0.9rem;
    border-radius: 50px; transition: var(--transition);
}
.profil-tag:hover { background: rgba(245,219,48,0.18); border-color: rgba(245,219,48,0.35); }

.profil-info-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 1rem; display: flex; align-items: center; gap: 0.8rem;
}
.profil-info-card > i { font-size: 1.3rem; color: var(--gold); }
.profil-info-label { display: block; font-size: 0.7rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.profil-info-value { display: block; font-size: 0.9rem; color: var(--white); font-weight: 500; }

/* Member card link (cliquable) */
.member-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }
.member-card-link:hover { color: inherit; }
.member-card-link .member-card { cursor: pointer; }

.member-socials-mini {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.8rem;
}
.member-socials-mini i { font-size: 0.85rem; color: var(--gray); transition: var(--transition); }
.member-card:hover .member-socials-mini i { color: var(--gold); }

.member-view-btn {
    display: block; margin-top: 0.8rem; font-size: 0.75rem; font-weight: 600;
    color: var(--gold); opacity: 0; transition: var(--transition);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.member-card:hover .member-view-btn { opacity: 1; }

/* ============================================
   COMPTE / CONNEXION / ADH&Eacute;SION
   ============================================ */
.user-icon-link {
    font-size: 1.35rem !important; padding: 0.3rem 0.5rem !important;
    color: var(--gold) !important; opacity: 0.8; transition: var(--transition);
}
.user-icon-link:hover { opacity: 1; transform: scale(1.1); }

.compte-tabs {
    display: flex; gap: 0; background: var(--black-card); border-radius: 14px;
    border: 1px solid rgba(245,219,48,0.1); overflow: hidden; margin-bottom: 2rem;
}
.compte-tab {
    flex: 1; padding: 1rem; text-align: center; background: none; border: none;
    color: var(--gray-light); font-family: var(--font-body); font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition);
    position: relative;
}
.compte-tab:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.compte-tab.active {
    color: var(--black); background: var(--gold);
}

.compte-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.1);
    border-radius: 20px; padding: 2.5rem; margin-bottom: 1.5rem;
}
.compte-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.3rem; }

.compte-card-header { text-align: center; margin-bottom: 2rem; }
.compte-card-header p { color: var(--gray-light); font-size: 0.9rem; }
.compte-avatar-icon {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--black);
}

.input-icon-wrap {
    position: relative;
}
.input-icon-wrap > i {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--gray); font-size: 0.95rem; z-index: 2; pointer-events: none;
}
.form-control-icon { padding-left: 2.8rem !important; }

.form-check-label-dark { color: var(--gray-light); font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; cursor: pointer; }
.form-check-input-dark { accent-color: var(--gold); }
.link-gold { color: var(--gold) !important; font-size: 0.85rem; font-weight: 500; }
.link-gold:hover { color: var(--gold-light) !important; }

.compte-separator {
    display: flex; align-items: center; margin: 1.5rem 0; gap: 1rem;
}
.compte-separator::before, .compte-separator::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
.compte-separator span { color: var(--gray); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

.btn-social-login {
    background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--white) !important; font-weight: 500; font-size: 0.9rem;
    border-radius: 12px; padding: 0.75rem; transition: var(--transition);
}
.btn-social-login:hover { background: rgba(255,255,255,0.08) !important; border-color: rgba(245,219,48,0.2) !important; }

.compte-footer-text { text-align: center; color: var(--gray); font-size: 0.9rem; margin-top: 1.5rem; }

/* Steps indicator */
.steps-indicator {
    display: flex; align-items: flex-start; justify-content: center; gap: 0;
    margin-bottom: 2rem; padding: 1.5rem; background: var(--black-card);
    border-radius: 14px; border: 1px solid rgba(245,219,48,0.08);
}
.step-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.step-circle {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15); color: var(--gray);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
    transition: var(--transition);
}
.step-indicator span { font-size: 0.7rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; transition: var(--transition); }
.step-indicator.active .step-circle { border-color: var(--gold); color: var(--gold); background: rgba(245,219,48,0.1); }
.step-indicator.active span { color: var(--gold); }
.step-indicator.done .step-circle { border-color: var(--gold); background: var(--gold); color: var(--black); }
.step-indicator.done span { color: var(--gold); }
.step-line { width: 50px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 0.8rem; margin-top: 18px; }

/* Payment */
.payment-recap { background: rgba(255,255,255,0.02); border: 1px solid rgba(245,219,48,0.1); border-radius: 14px; overflow: hidden; margin-bottom: 1.5rem; }
.payment-recap-header { background: rgba(245,219,48,0.06); padding: 0.8rem 1.2rem; font-weight: 600; font-size: 0.9rem; }
.payment-recap-body { padding: 1rem 1.2rem; }
.payment-recap-row { display: flex; justify-content: space-between; align-items: center; padding: 0.4rem 0; font-size: 0.9rem; color: var(--gray-light); }
.payment-recap-row.sub { font-size: 0.8rem; color: var(--gray); padding: 0.2rem 0 0.2rem 0.5rem; }
.payment-recap-row.total { font-weight: 700; font-size: 1.1rem; color: var(--white); }
.payment-recap-row.total .text-gold { color: var(--gold); }

.payment-methods { display: flex; gap: 0.8rem; margin-bottom: 0.5rem; }
.payment-method-option {
    flex: 1; display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; cursor: pointer; transition: var(--transition);
    color: var(--gray-light); font-size: 0.85rem; font-weight: 500;
}
.payment-method-option i { font-size: 1.2rem; }
.payment-method-option input { display: none; }
.payment-method-option.active, .payment-method-option:hover {
    border-color: var(--gold); background: rgba(245,219,48,0.06); color: var(--gold);
}

.payment-secure-badge {
    display: flex; align-items: center; gap: 0.5rem; justify-content: center;
    font-size: 0.75rem; color: var(--gray); padding: 0.5rem;
}
.payment-secure-badge i { color: #2ecc71; font-size: 0.9rem; }

.btn-success-custom {
    background: #2ecc71 !important; color: var(--black) !important;
    font-weight: 700; border: none; border-radius: 50px; padding: 1rem 2.5rem;
}

/* Confirmation */
.confirmation-icon { font-size: 4rem; color: #2ecc71; animation: confirmPop 0.5s ease-out; }
@keyframes confirmPop { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.2); } 100% { transform: scale(1); opacity: 1; } }
.confirmation-text { color: var(--gray-light); font-size: 1.05rem; max-width: 400px; margin: 0 auto 2rem; line-height: 1.7; }
.confirmation-details { text-align: left; max-width: 380px; margin: 0 auto; }
.confirmation-detail-row {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0;
    font-size: 0.9rem; color: var(--gray-light);
}
.confirmation-detail-row i { color: var(--gold); font-size: 1rem; }

/* ============================================
   ESPACE MEMBRE - DASHBOARD
   ============================================ */
.espace-membre { min-height: 100vh; padding-top: 0; }
.espace-membre .container-fluid { padding-left: 0 !important; }

/* Sidebar */
.membre-sidebar {
    background: var(--black-card); border-right: 1px solid rgba(245,219,48,0.08);
    height: calc(100vh - 72px); position: sticky; top: 72px;
    display: flex; flex-direction: column; padding: 1.5rem 0; overflow-y: auto;
    margin-left: 0;
}
.sidebar-user {
    display: flex; align-items: center; gap: 0.8rem; padding: 0 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.8rem;
}
.sidebar-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 900; color: var(--black); font-size: 1rem;
}
.sidebar-user-info { display: flex; flex-direction: column; }
.sidebar-user-name { font-weight: 600; font-size: 0.9rem; }
.sidebar-user-badge { font-size: 0.68rem; color: var(--gold); display: flex; align-items: center; gap: 0.25rem; }

.sidebar-nav { flex: 1; padding: 0.5rem 0; }
.sidebar-link {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 1.2rem;
    color: var(--gray-light); font-size: 0.88rem; font-weight: 500;
    transition: var(--transition); cursor: pointer; text-decoration: none; position: relative; border: none; background: none; width: 100%; text-align: left;
}
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.sidebar-link.active {
    color: var(--gold); background: rgba(245,219,48,0.06);
    border-left: 3px solid var(--gold); padding-left: calc(1.2rem - 3px);
}
.sidebar-link i { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-link-logout { color: #e74c3c !important; }
.sidebar-link-logout:hover { background: rgba(231,76,60,0.08) !important; }

.sidebar-new-badge {
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    background: var(--gold); color: var(--black); padding: 0.1rem 0.45rem;
    border-radius: 4px; margin-left: auto;
}

.sidebar-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.5rem; margin-top: auto; }

/* Sidebar collapsible groups */
.sidebar-group { margin-top: 0.3rem; }
.sidebar-group-toggle {
    display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 1.2rem;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray); cursor: pointer; transition: var(--transition); user-select: none;
}
.sidebar-group-toggle:hover { color: var(--gold); }
.sidebar-group-toggle i:first-child { font-size: 0.85rem; width: 20px; text-align: center; }
.sidebar-group-toggle span { flex: 1; }
.sidebar-chevron { font-size: 0.65rem; transition: transform 0.25s ease; }
.sidebar-group-items.open + .sidebar-group-toggle .sidebar-chevron,
.sidebar-group-items:not(.open) ~ .sidebar-chevron { /* handled by JS */ }
.sidebar-group-items { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.sidebar-group-items.open { max-height: 300px; }
.sidebar-group-items .sidebar-link { padding-left: 2.8rem; font-size: 0.82rem; }
.sidebar-group-items .sidebar-link i { font-size: 0.95rem; }
.sidebar-group.collapsed .sidebar-chevron { transform: rotate(-90deg); }
.sidebar-group:not(.collapsed) .sidebar-chevron { transform: rotate(0deg); }

/* Sidebar mobile */
.sidebar-toggle {
    display: none; width: 100%; padding: 0.8rem; background: var(--black-card);
    border: 1px solid rgba(245,219,48,0.1); border-radius: 12px; color: var(--gold);
    font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; cursor: pointer;
}
@media (max-width: 991px) {
    .sidebar-toggle { display: block; }
    .membre-sidebar {
        position: fixed; left: -100%; top: 80px; width: 280px; height: calc(100vh - 80px);
        z-index: 1040; transition: left 0.3s ease; border-radius: 0;
    }
    .membre-sidebar.open { left: 0; box-shadow: 10px 0 40px rgba(0,0,0,0.6); }
}

/* Contenu principal */
.membre-content { padding: 1.5rem; }
.membre-section { display: none; }
.membre-section.active { display: block; }
.membre-header { margin-bottom: 2rem; }
.membre-header h2 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.3rem; }
.membre-header p { color: var(--gray-light); font-size: 0.9rem; }

/* Dashboard KPI */
.dash-kpi {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 14px; padding: 1.2rem; display: flex; align-items: center; gap: 1rem;
}
.dash-kpi-icon { font-size: 1.5rem; color: var(--gold); }
.dash-kpi-value { display: block; font-weight: 700; font-size: 1.1rem; }
.dash-kpi-label { display: block; font-size: 0.75rem; color: var(--gray); }

/* Dashboard cards */
.dash-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; padding: 1.5rem;
}
.dash-card h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light); margin-bottom: 0.8rem; }

/* Dashboard events */
.dash-event-list { display: flex; flex-direction: column; gap: 0.6rem; }
.dash-event-item {
    display: flex; align-items: center; gap: 1rem; padding: 0.8rem;
    background: rgba(255,255,255,0.02); border-radius: 12px; transition: var(--transition);
}
.dash-event-item:hover { background: rgba(245,219,48,0.04); }
.dash-event-date {
    width: 48px; text-align: center; flex-shrink: 0;
}
.dash-event-date span { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--gold); line-height: 1; }
.dash-event-date small { font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }
.dash-event-info { flex: 1; }
.dash-event-info strong { display: block; font-size: 0.9rem; }
.dash-event-info span { font-size: 0.78rem; color: var(--gray); }
.dash-event-status { font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.dash-event-status.inscrit { color: #2ecc71; }
.dash-event-status.pending { color: var(--gray); }

/* Event cards member */
.dash-event-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 14px; padding: 1.2rem; display: flex; gap: 1rem; align-items: flex-start;
}
.dash-event-card.past { opacity: 0.6; }
.dash-event-card-date {
    width: 52px; text-align: center; flex-shrink: 0;
    background: rgba(245,219,48,0.06); border-radius: 10px; padding: 0.5rem 0.3rem;
}
.dash-event-card-date span { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.dash-event-card-date small { font-size: 0.6rem; color: var(--gray); text-transform: uppercase; }
.dash-event-card strong { font-size: 0.95rem; display: block; }
.dash-event-card p { font-size: 0.8rem; color: var(--gray); margin: 0.2rem 0 0.5rem; }

/* Factures */
.table-membre { width: 100%; border-collapse: separate; border-spacing: 0; }
.table-membre th {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray);
    padding: 0.6rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-weight: 600;
}
.table-membre td { padding: 0.8rem; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--gray-light); }
.table-membre tr:hover td { background: rgba(245,219,48,0.03); }
.facture-badge { font-size: 0.75rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.6rem; border-radius: 50px; }
.facture-badge.paid { background: rgba(46,204,113,0.12); color: #2ecc71; }
.facture-badge.pending-pay { background: rgba(252,104,105,0.12); color: #FC6869; }
.facture-badge.past { background: rgba(255,255,255,0.06); color: var(--gray); }

/* Annuaire */
.annuaire-contact-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 14px; padding: 1rem; display: flex; align-items: center; gap: 0.8rem;
    position: relative;
}
.annuaire-contact-card strong { display: block; font-size: 0.9rem; }
.annuaire-contact-card span { font-size: 0.78rem; color: var(--gray); }
.annuaire-contact-links { display: flex; gap: 0.5rem; margin-top: 0.3rem; }
.annuaire-contact-links a { color: var(--gray) !important; font-size: 0.85rem; transition: var(--transition); }
.annuaire-contact-links a:hover { color: var(--gold) !important; }
.annuaire-fav {
    position: absolute; right: 0.8rem; top: 0.8rem; background: none; border: none;
    color: var(--gray); font-size: 1rem; cursor: pointer; transition: var(--transition); padding: 0.3rem;
}
.annuaire-fav.active { color: var(--gold); }
.annuaire-fav:hover { color: var(--gold); transform: scale(1.2); }

.annuaire-list { display: flex; flex-direction: column; gap: 0.3rem; }
.annuaire-list-item {
    display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0.5rem;
    border-radius: 10px; transition: var(--transition); position: relative;
}
.annuaire-list-item:hover { background: rgba(245,219,48,0.04); }
.annuaire-list-item strong { font-size: 0.88rem; display: block; }
.annuaire-list-item span { font-size: 0.78rem; color: var(--gray); }
.annuaire-list-item .annuaire-fav { position: static; margin-left: auto; }

/* Radio - Suggestions */
.suggestion-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.6rem; }
.suggestion-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0; }
.suggestion-item > i, .suggestion-item > .profil-avatar, .suggestion-item > .avatar-mini { font-size: 1rem; flex-shrink: 0; }
.suggestion-item .profil-avatar { border-radius: 50% !important; min-width: 28px !important; min-height: 28px !important; }

.avatar-mini {
    width: 28px !important; height: 28px !important; min-width: 28px !important; min-height: 28px !important;
    max-width: 28px !important; max-height: 28px !important;
    border-radius: 50% !important; flex-shrink: 0 !important;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.6rem; font-weight: 900; color: var(--black);
    border: none;
}
.suggestion-item div { flex: 1; }
.suggestion-item strong { display: block; font-size: 0.88rem; }
.suggestion-item span { font-size: 0.75rem; color: var(--gray); }
.suggestion-status { font-size: 0.85rem; }
.suggestion-status.approved { color: #2ecc71; }
.suggestion-status.pending { color: var(--gray); }

/* Interview */
.interview-container { border: 1px solid rgba(245,219,48,0.1); border-radius: 16px; overflow: hidden; }
.interview-progress { height: 4px; background: rgba(255,255,255,0.06); }
.interview-progress-bar { height: 100%; background: var(--gold); transition: width 0.5s ease; border-radius: 4px; }
.interview-progress-label { text-align: center; font-size: 0.7rem; color: var(--gray); padding: 0.4rem; letter-spacing: 0.06em; text-transform: uppercase; }

.interview-chat {
    height: 320px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.8rem;
    background: rgba(0,0,0,0.2);
}
.interview-msg { display: flex; gap: 0.6rem; max-width: 90%; animation: msgIn 0.3s ease; }
.interview-msg.bot { align-self: flex-start; }
.interview-msg.user { align-self: flex-end; flex-direction: row-reverse; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.interview-msg-avatar {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.interview-msg.bot .interview-msg-avatar { background: rgba(245,219,48,0.15); color: var(--gold); }
.interview-msg.user .interview-msg-avatar { background: rgba(255,255,255,0.1); color: var(--white); }

.interview-msg-bubble {
    background: rgba(255,255,255,0.06); border-radius: 14px; padding: 0.8rem 1rem;
    font-size: 0.88rem; line-height: 1.6; color: var(--gray-light);
}
.interview-msg.bot .interview-msg-bubble { border-bottom-left-radius: 4px; }
.interview-msg.user .interview-msg-bubble { background: rgba(245,219,48,0.1); color: var(--white); border-bottom-right-radius: 4px; }
.interview-msg-bubble strong { color: var(--gold); }
.interview-msg-bubble.interview-done { background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.2); }

/* Audio message */
.audio-msg {
    display: flex; align-items: center; gap: 0.6rem;
}
.audio-msg i.bi-soundwave { font-size: 1.3rem; color: var(--gold); }
.audio-duration { font-size: 0.75rem; color: var(--gray); }
.audio-play-btn {
    width: 28px; height: 28px; border-radius: 50%; border: none;
    background: var(--gold); color: var(--black); font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.interview-input { padding: 0.8rem; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06); }
.interview-input-row { display: flex; gap: 0.5rem; }
.interview-textarea {
    flex: 1; resize: none; font-size: 0.88rem !important;
    border-radius: 12px !important; min-height: 42px;
}
.interview-send-btn {
    width: 44px; height: 44px; border-radius: 50% !important; padding: 0 !important;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.interview-input-options {
    display: flex; align-items: center; gap: 0.8rem; margin-top: 0.5rem;
}
.interview-audio-btn {
    display: flex; align-items: center; gap: 0.4rem; background: none; border: 1px solid rgba(245,219,48,0.2);
    color: var(--gold); padding: 0.35rem 0.8rem; border-radius: 50px; font-size: 0.78rem;
    font-weight: 600; cursor: pointer; transition: var(--transition);
}
.interview-audio-btn:hover { background: rgba(245,219,48,0.08); }
.interview-audio-btn.recording { background: #e74c3c; border-color: #e74c3c; color: white; animation: recPulse 1s infinite; }
@keyframes recPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.interview-hint { font-size: 0.72rem; color: var(--gray); }

/* Settings toggles */
.settings-toggle-list { display: flex; flex-direction: column; gap: 0.6rem; }
.settings-toggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 0; cursor: pointer; position: relative;
}
.settings-toggle span:first-child { font-size: 0.9rem; color: var(--gray-light); }
.settings-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-slider {
    width: 42px; height: 22px; background: rgba(255,255,255,0.1); border-radius: 11px;
    position: relative; transition: var(--transition); flex-shrink: 0;
}
.toggle-slider::after {
    content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px;
    border-radius: 50%; background: var(--gray); transition: var(--transition);
}
.settings-toggle input:checked + .toggle-slider { background: rgba(245,219,48,0.3); }
.settings-toggle input:checked + .toggle-slider::after { left: 23px; background: var(--gold); }

.btn-outline-danger-custom {
    border: 1px solid rgba(231,76,60,0.4) !important; color: #e74c3c !important;
    background: none !important; border-radius: 50px;
}
.btn-outline-danger-custom:hover { background: rgba(231,76,60,0.1) !important; }

/* ============================================
   ADMIN
   ============================================ */
.admin-sidebar { border-right-color: rgba(231,76,60,0.15) !important; }
.admin-mode .membre-sidebar { top: 0; height: 100vh; }
.admin-sidebar .sidebar-link.active { color: #e74c3c; background: rgba(231,76,60,0.06); border-left-color: #e74c3c; }

/* Espace membre sans navbar */
.espace-membre .membre-sidebar { top: 0; height: 100vh; }

.sidebar-count-badge {
    font-size: 0.6rem; font-weight: 700; padding: 0.15rem 0.45rem;
    border-radius: 50px; margin-left: auto; background: rgba(245,219,48,0.15); color: var(--gold);
}
.sidebar-count-badge.warn { background: rgba(231,76,60,0.15); color: #e74c3c; }

.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-kpi { border-color: rgba(255,255,255,0.06); }

/* Admin tables */
.table-admin th { font-size: 0.68rem; }
.table-admin td { font-size: 0.82rem; vertical-align: middle; }
.admin-member-cell { display: flex; align-items: center; gap: 0.6rem; }

/* Export dropdown */
.admin-export-dropdown { position: relative; }
.admin-export-menu {
    display: none; position: absolute; top: 100%; right: 0; z-index: 100;
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.15);
    border-radius: 12px; padding: 0.5rem; min-width: 200px; margin-top: 0.3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.admin-export-menu.open { display: block; }
.admin-export-item {
    display: flex; align-items: center; gap: 0.6rem; width: 100%;
    padding: 0.5rem 0.7rem; background: none; border: none; border-radius: 8px;
    color: var(--gray-light); font-size: 0.82rem; cursor: pointer; transition: var(--transition);
}
.admin-export-item:hover { background: rgba(245,219,48,0.06); color: var(--gold); }
.admin-export-item i { font-size: 1rem; width: 20px; text-align: center; }

/* Role badges */
.role-badge {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.5rem;
    border-radius: 50px; white-space: nowrap;
}
.role-badge.ambassador {
    background: linear-gradient(135deg, rgba(245,219,48,0.15), rgba(245,219,48,0.08));
    border: 1px solid rgba(245,219,48,0.25); color: var(--gold);
}
.role-badge.ambassador i { font-size: 0.55rem; }
.role-badge.adherent { background: rgba(255,255,255,0.06); color: var(--gray-light); }

/* Table footer */
.admin-table-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0 0; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem; color: var(--gray);
}
.admin-row-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; object-position: center center; flex-shrink: 0; }
.avatar-initials { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #D4BE1E); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.avatar-initials.lg { width: 80px; height: 80px; min-width: 80px; font-size: 1.4rem; }
.admin-actions { display: flex; gap: 0.3rem; }
.admin-act-btn {
    width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
    background: none; color: var(--gray-light); display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; cursor: pointer; transition: var(--transition);
}
.admin-act-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,219,48,0.06); }
.admin-act-btn.approve { border-color: rgba(46,204,113,0.3); color: #2ecc71; }
.admin-act-btn.approve:hover { background: rgba(46,204,113,0.1); }
.admin-act-btn.reject { border-color: rgba(231,76,60,0.3); color: #e74c3c; }
.admin-act-btn.reject:hover { background: rgba(231,76,60,0.1); }

/* Admin actu rows */
.admin-actu-row { gap: 0.8rem; }
.admin-actu-thumb {
    width: 56px; height: 56px; min-width: 56px; border-radius: 10px; flex-shrink: 0;
    background-size: cover; background-position: center; background-color: rgba(255,255,255,0.04);
    aspect-ratio: 1; overflow: hidden;
}

/* Admin podcast rows */
.admin-podcast-row { gap: 0.6rem; }
.admin-podcast-type {
    width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.admin-podcast-type.audio { background: rgba(46,204,113,0.15); color: #2ecc71; }
.admin-podcast-type.video { background: rgba(231,76,60,0.15); color: #e74c3c; }

.admin-top-rank {
    width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0;
    background: rgba(245,219,48,0.1); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800; font-family: var(--font-display);
}
.admin-top-bar-wrap { width: 80px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; flex-shrink: 0; overflow: hidden; }
.admin-top-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.admin-table-mini { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-row {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.5rem;
    border-radius: 10px; transition: var(--transition);
}
.admin-row:hover { background: rgba(245,219,48,0.04); }
a.admin-row { text-decoration: none; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.03); }
.admin-row div:not(.admin-actions):not(.admin-actu-thumb):not(.admin-podcast-type) { flex: 1; min-width: 0; }
.admin-row strong { display: block; font-size: 0.88rem; }
.admin-row span { font-size: 0.75rem; color: var(--gray); }
.admin-row > i { flex-shrink: 0; }

/* Admin notifications */
.admin-notif-list { display: flex; flex-direction: column; gap: 0.4rem; }
.admin-notif {
    display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0;
    font-size: 0.85rem; color: var(--gray-light);
}
.admin-notif i { font-size: 0.95rem; flex-shrink: 0; }

/* Admin event cards */
.admin-event-thumb {
    width: 50px; height: 50px; border-radius: 8px; object-fit: cover; cursor: pointer;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.06);
}
.admin-event-thumb:hover { transform: scale(1.08); border-color: rgba(245,219,48,0.3); }
.admin-event-thumb-empty {
    width: 50px; height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    background: rgba(245,219,48,0.04); color: var(--gold); opacity: 0.3; font-size: 1.2rem;
}
.admin-event-badge {
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem; border-radius: 50px; display: inline-flex; align-items: center; gap: 0.3rem;
    margin-bottom: 0.8rem;
}
.admin-event-badge.live { background: rgba(46,204,113,0.12); color: #2ecc71; }
.admin-event-badge.live i { font-size: 0.45rem; animation: recPulse 1.5s infinite; }
.admin-event-badge.past { background: rgba(255,255,255,0.06); color: var(--gray); }
.admin-event-zoom-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
    background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center;
    cursor: pointer; animation: fadeIn 0.2s ease;
}
.admin-event-zoom-overlay img {
    max-width: 90vw; max-height: 85vh; border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Admin annonce cards */
.admin-annonce-card {
    background: var(--black-card); border: 1px solid rgba(231,76,60,0.15);
    border-radius: 16px; padding: 1.2rem;
}
.admin-annonce-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; }
.admin-annonce-header div { flex: 1; }
.admin-annonce-header strong { display: block; font-size: 0.88rem; }
.admin-annonce-header small { font-size: 0.72rem; color: var(--gray); }
.admin-annonce-type {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--gold); margin-bottom: 0.5rem;
}
.admin-annonce-card h6 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.admin-annonce-card p { font-size: 0.82rem; color: var(--gray-light); line-height: 1.6; margin-bottom: 0.3rem; }
.admin-annonce-meta { font-size: 0.72rem; color: var(--gray); }

/* Stats chart */
.stats-chart { padding: 1rem 0; }
.stats-chart-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 200px; }
.stats-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
.stats-bar {
    width: 100%; border-radius: 6px 6px 0 0; min-height: 8px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark)); transition: height 0.6s ease;
}
.stats-bar-wrap small { font-size: 0.6rem; color: var(--gray); margin-top: 0.4rem; text-transform: uppercase; }

.stats-sectors { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.5rem; }
.stats-sector-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.stats-sector-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.stats-sector-row span:nth-child(2) { flex: 1; color: var(--gray-light); }
.stats-sector-row strong { color: var(--white); }

/* Geo stats */
.stats-geo-total { font-size: 0.78rem; color: var(--gray); font-weight: 600; }
.stats-geo-split { margin-bottom: 0.5rem; }
.stats-geo-bar { display: flex; height: 36px; border-radius: 10px; overflow: hidden; margin-bottom: 0.8rem; }
.stats-geo-vde {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: var(--black);
}
.stats-geo-other {
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; color: var(--gray-light);
}
.stats-geo-legend { display: flex; gap: 2rem; }
.stats-geo-legend > div { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--gray-light); }
.stats-geo-legend strong { color: var(--white); margin-left: 0.2rem; }

.stats-city-bars { display: flex; flex-direction: column; gap: 0.5rem; }
.stats-city-row { display: flex; align-items: center; gap: 0.6rem; }
.stats-city-name { width: 140px; flex-shrink: 0; font-size: 0.82rem; color: var(--gray-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stats-city-bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.stats-city-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); transition: width 0.6s ease; }
.stats-city-bar.other { background: linear-gradient(90deg, #555, #777); }
.stats-city-count { width: 24px; text-align: right; font-size: 0.82rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.stats-city-pct { width: 32px; text-align: right; font-size: 0.72rem; color: var(--gray); flex-shrink: 0; }

.stats-geo-insight {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.82rem; color: var(--gray-light); line-height: 1.5;
}
.stats-geo-insight i { flex-shrink: 0; margin-top: 0.1rem; }

@media(max-width:575px){
    .stats-city-name { width: 100px; font-size: 0.72rem; }
    .stats-geo-legend { flex-direction: column; gap: 0.5rem; }
}

/* Admin radio tabs */
.adminradio-tab-content { display: none; }
.adminradio-tab-content.active { display: block; }

/* Admin interview cards */
.admin-interview-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.1);
    border-radius: 16px; overflow: hidden;
}
.admin-interview-header {
    display: flex; align-items: center; gap: 0.8rem; padding: 1.2rem;
    background: rgba(245,219,48,0.03); border-bottom: 1px solid rgba(245,219,48,0.06);
}
.admin-interview-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center center; flex-shrink: 0; }
.admin-interview-header div:nth-child(2) { flex: 1; }
.admin-interview-header strong { display: block; font-size: 0.95rem; }
.admin-interview-header span { display: block; font-size: 0.8rem; color: var(--gold); }
.admin-interview-header small { font-size: 0.72rem; color: var(--gray); }
.admin-interview-status {
    font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.25rem 0.6rem; border-radius: 50px; white-space: nowrap; display: flex; align-items: center; gap: 0.3rem;
}
.admin-interview-status.pending-itw { background: rgba(241,196,15,0.12); color: #f1c40f; }
.admin-interview-status.done-itw { background: rgba(46,204,113,0.12); color: #2ecc71; }

.admin-interview-responses { padding: 0.8rem 1.2rem; max-height: 350px; overflow-y: auto; }
.admin-itw-qa { margin-bottom: 0.8rem; }
.admin-itw-q {
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--gold); margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.4rem;
}
.admin-itw-q i { font-size: 0.65rem; }
.admin-itw-a {
    font-size: 0.85rem; color: var(--gray-light); line-height: 1.6;
    padding: 0.6rem 0.8rem; background: rgba(255,255,255,0.03);
    border-radius: 10px; border-left: 3px solid rgba(245,219,48,0.15);
}
.admin-itw-a.admin-itw-audio {
    display: flex; align-items: center; gap: 0.6rem;
    background: rgba(245,219,48,0.04); border-left-color: var(--gold);
}
.admin-itw-audio i.bi-soundwave { font-size: 1.3rem; color: var(--gold); }
.admin-itw-audio .audio-duration { font-size: 0.75rem; color: var(--gray); }

.admin-interview-actions {
    display: flex; gap: 0.5rem; padding: 1rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* CEVE Book */
.cevebook-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; overflow: hidden; transition: var(--transition);
}
.cevebook-card:hover { border-color: rgba(245,219,48,0.2); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.cevebook-card-top { position: relative; display: flex; justify-content: center; padding-top: 1.5rem; }
.cevebook-photo {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: center center;
    border: 3px solid rgba(245,219,48,0.2); transition: var(--transition);
}
.cevebook-photo-initials {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 3px solid rgba(245,219,48,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--black);
}
.cevebook-ambassador-badge {
    position: absolute; left: 0.8rem; top: 0.8rem;
    font-size: 0.7rem; color: var(--gold);
    background: rgba(0,0,0,0.6); padding: 0.2rem 0.4rem; border-radius: 6px;
}
.cevebook-card:hover .cevebook-photo { border-color: var(--gold); }
.cevebook-card-top .annuaire-fav { position: absolute; right: 0.8rem; top: 0.8rem; }
.cevebook-new-badge {
    position: absolute; left: 0.8rem; top: 0.8rem;
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    background: var(--gold); color: var(--black); padding: 0.2rem 0.5rem; border-radius: 6px;
    display: flex; align-items: center; gap: 0.2rem;
}
.cevebook-card-body { padding: 1rem 1.2rem 1.3rem; text-align: center; }
.cevebook-card-body h5 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.15rem; }
.cevebook-company { display: block; color: var(--gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.1rem; }
.cevebook-role { display: block; color: var(--gray-light); font-size: 0.78rem; margin-bottom: 0.3rem; }
.cevebook-location { display: block; color: var(--gray); font-size: 0.72rem; margin-bottom: 0.7rem; }
.cevebook-location i { font-size: 0.7rem; }
.cevebook-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem; margin-bottom: 0.8rem; }
.cevebook-tags span {
    font-size: 0.65rem; font-weight: 500; padding: 0.2rem 0.55rem; border-radius: 50px;
    background: rgba(245,219,48,0.06); border: 1px solid rgba(245,219,48,0.12); color: var(--gold);
}
.cevebook-socials { display: flex; justify-content: center; gap: 0.5rem; }
.cevebook-socials a {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; color: var(--gray) !important;
    font-size: 0.85rem; transition: var(--transition);
}
.cevebook-socials a:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(245,219,48,0.06); }
.cevebook-pagination {
    display: flex; align-items: center; justify-content: space-between; margin-top: 2rem;
    padding: 1rem; background: var(--black-card); border-radius: 12px;
    border: 1px solid rgba(245,219,48,0.06);
}
.cevebook-count { font-size: 0.82rem; color: var(--gray); }
.cevebook-pages { display: flex; gap: 0.3rem; }
.cevebook-page {
    width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08);
    background: none; color: var(--gray-light); font-size: 0.85rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.cevebook-page:hover { border-color: var(--gold); color: var(--gold); }
.cevebook-page.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Radio tabs */
.radio-tabs {
    display: flex; gap: 0; background: var(--black-card);
    border: 1px solid rgba(245,219,48,0.08); border-radius: 14px;
    overflow: hidden; margin-bottom: 1.5rem;
}
.radio-tab {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 0.8rem; background: none; border: none;
    color: var(--gray-light); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.radio-tab i { font-size: 1rem; }
.radio-tab:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.radio-tab.active { color: var(--black); background: var(--gold); }
.radio-tab.active .sidebar-new-badge { background: var(--black); color: var(--gold); }
.radio-tab-content { display: none; }
.radio-tab-content.active { display: block; }
@media (max-width: 575px) {
    .radio-tab span:not(.sidebar-new-badge) { display: none; }
    .radio-tab i { font-size: 1.2rem; }
}

/* Interview how-to */
.interview-how { display: flex; flex-direction: column; gap: 1rem; }
.interview-how-step { display: flex; gap: 0.8rem; align-items: flex-start; }
.interview-how-num {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: rgba(245,219,48,0.1); border: 1px solid rgba(245,219,48,0.2);
    color: var(--gold); font-family: var(--font-display); font-weight: 900;
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.interview-how-step strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.interview-how-step p { font-size: 0.8rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* Diffusion list */
.diffusion-list { display: flex; flex-direction: column; gap: 0.6rem; }
.diffusion-item {
    display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem;
    background: rgba(255,255,255,0.02); border-radius: 10px; transition: var(--transition);
}
.diffusion-item:hover { background: rgba(245,219,48,0.04); }
.diffusion-item.mini { padding: 0.5rem 0.7rem; }
.diffusion-item .profil-avatar { border-radius: 50% !important; min-width: 28px !important; min-height: 28px !important; flex-shrink: 0; }
.diffusion-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: rgba(245,219,48,0.08); color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.diffusion-item div { flex: 1; }
.diffusion-item strong { display: block; font-size: 0.88rem; }
.diffusion-item span { font-size: 0.75rem; color: var(--gray); }
.diffusion-status { font-size: 0.72rem; font-weight: 600; white-space: nowrap; }
.diffusion-status.onair { color: #2ecc71; }
.diffusion-status.done { color: var(--gray); }
.diffusion-status.pending-diff { color: var(--gold); }

.diffusion-quota {
    display: flex; align-items: center; gap: 1rem; padding: 1rem;
    background: rgba(245,219,48,0.04); border: 1px solid rgba(245,219,48,0.12);
    border-radius: 12px; margin-bottom: 1.5rem;
}
.diffusion-quota-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.diffusion-quota div:nth-child(2) { flex: 1; }
.diffusion-quota strong { display: block; font-size: 0.88rem; color: var(--white); }
.diffusion-quota span { font-size: 0.78rem; color: var(--gray); }
.diffusion-quota-count { text-align: center; flex-shrink: 0; }
.diffusion-quota-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: #2ecc71; }
.diffusion-quota-max { font-size: 0.9rem; color: var(--gray); }
.diffusion-quota-count small { display: block; font-size: 0.65rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================
   PODCASTS
   ============================================ */
.podcast-hero {
    display: flex; gap: 2.5rem; align-items: center;
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 20px; padding: 2rem; margin-bottom: 2rem;
}
.podcast-hero-visual { flex-shrink: 0; text-align: center; }
.podcast-hero-cover {
    width: 160px; height: 160px; border-radius: 20px; overflow: hidden;
    position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.podcast-hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast-hero-play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3); opacity: 0; transition: var(--transition); cursor: pointer;
}
.podcast-hero-play i { font-size: 2.5rem; color: var(--gold); }
.podcast-hero-cover:hover .podcast-hero-play { opacity: 1; }
.podcast-eq-anim {
    display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 16px; margin-top: 0.8rem;
}
.podcast-eq-anim span {
    width: 3px; border-radius: 2px; background: var(--gold);
    animation: eqBounce 0.8s ease-in-out infinite alternate;
}
.podcast-eq-anim span:nth-child(1){height:6px;animation-delay:0s;}
.podcast-eq-anim span:nth-child(2){height:12px;animation-delay:0.1s;}
.podcast-eq-anim span:nth-child(3){height:8px;animation-delay:0.2s;}
.podcast-eq-anim span:nth-child(4){height:14px;animation-delay:0.15s;}
.podcast-eq-anim span:nth-child(5){height:10px;animation-delay:0.05s;}
@keyframes eqBounce{0%{height:4px;}100%{height:16px;}}

.podcast-hero-info { flex: 1; }
.podcast-hero-badge {
    display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gold); background: rgba(245,219,48,0.08);
    border: 1px solid rgba(245,219,48,0.15); padding: 0.25rem 0.7rem; border-radius: 50px;
    margin-bottom: 0.8rem;
}
.podcast-hero-info h2 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.5rem; }
.podcast-hero-info p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.podcast-hero-platforms { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.podcast-platform {
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1); color: var(--gray-light) !important; font-size: 1rem;
    transition: var(--transition);
}
.podcast-platform:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(245,219,48,0.06); }

@media (max-width: 767px) {
    .podcast-hero { flex-direction: column; text-align: center; }
    .podcast-hero-cover { width: 120px; height: 120px; margin: 0 auto; }
    .podcast-hero-platforms { justify-content: center; }
}

/* Filters */
.podcast-filters {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem;
}
.podcast-filter {
    padding: 0.5rem 1rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.08);
    background: none; color: var(--gray-light); font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.podcast-filter:hover { border-color: var(--gold); color: var(--gold); }
.podcast-filter.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Podcast EP badge */
.podcast-ep-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; background: var(--gold); color: var(--black);
    padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.8rem; width: fit-content;
}
.podcast-meta { display: flex; flex-wrap: wrap; gap: 1rem; }
.podcast-meta span { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 0.3rem; }
.podcast-meta i { color: var(--gold); }

/* YouTube embed responsive */
.podcast-yt-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 16px 0 0 16px; overflow: hidden; }
.podcast-yt-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.podcast-yt-wrap-card { position: relative; width: 100%; padding-top: 56.25%; overflow: hidden; }
.podcast-yt-wrap-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
@media(max-width:991px){ .podcast-yt-wrap { border-radius: 16px 16px 0 0; } }

/* Video featured */
.podcast-video-featured {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.1);
    border-radius: 16px; overflow: hidden; margin-bottom: 1rem;
}
.podcast-video-info {
    padding: 2rem; display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.podcast-video-info h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.6rem; line-height: 1.4; }
.podcast-video-info p { color: var(--gray-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.8rem; }

/* Cards */
.podcast-card {
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; overflow: hidden; transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.podcast-card:hover { border-color: rgba(245,219,48,0.2); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.podcast-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.podcast-card-tag {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold); margin-bottom: 0.4rem;
}
.podcast-card-body h5 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.4rem; line-height: 1.4; }
.podcast-card-body p { font-size: 0.82rem; color: var(--gray-light); line-height: 1.6; flex: 1; }
.podcast-card-meta { font-size: 0.72rem; color: var(--gray); }
.podcast-card-meta i { color: var(--gold); margin-right: 0.2rem; }

/* Audio list */
.podcast-audio-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.podcast-audio-card {
    display: flex; align-items: stretch; gap: 0;
    background: var(--black-card); border: 1px solid rgba(245,219,48,0.08);
    border-radius: 16px; overflow: hidden; transition: var(--transition);
}
.podcast-audio-card:hover { border-color: rgba(245,219,48,0.15); }
.podcast-audio-cover {
    width: 120px; height: auto; min-height: 120px; object-fit: cover; flex-shrink: 0;
    border-radius: 8px 0 0 8px;
}
.podcast-play-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.45); cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px 0 0 8px;
}
.podcast-play-overlay:hover { background: rgba(0,0,0,0.25); }
.podcast-play-overlay i {
    font-size: 2.5rem; color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.15s;
}
.podcast-play-overlay:hover i { transform: scale(1.15); }
.podcast-audio-body { flex: 1; padding: 1rem 1.2rem; display: flex; flex-direction: column; justify-content: center; }
.podcast-audio-info { margin-bottom: 0.6rem; }
.podcast-audio-info h5 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.2rem; line-height: 1.3; }

@media(max-width:575px){
    .podcast-audio-cover { width: 80px; min-height: 80px; }
    .podcast-audio-body { padding: 0.7rem; }
    .podcast-audio-info h5 { font-size: 0.85rem; }
    .podcast-play-overlay i { font-size: 1.8rem; }
    .podcast-play-overlay { border-radius: 8px 0 0 8px; }
}

/* Fake audio player */
.podcast-audio-player {
    display: flex; align-items: center; gap: 0.8rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 0.6rem 0.8rem;
}
.podcast-ap-play {
    width: 36px; height: 36px; border-radius: 50%; border: none; flex-shrink: 0;
    background: var(--gold); color: var(--black); font-size: 1rem;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition);
}
.podcast-ap-play:hover { transform: scale(1.1); }
.podcast-ap-play.playing { background: #e74c3c; color: #fff; }

.podcast-ap-track { flex: 1; min-width: 0; }
.podcast-ap-bar {
    position: relative; height: 6px; background: rgba(255,255,255,0.08);
    border-radius: 3px; cursor: pointer; margin-bottom: 0.3rem;
}
.podcast-ap-fill {
    height: 100%; border-radius: 3px; width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: width 0.3s linear;
}
.podcast-ap-dot {
    position: absolute; top: 50%; left: 0%; transform: translate(-50%, -50%);
    width: 14px; height: 14px; border-radius: 50%; background: var(--gold);
    box-shadow: 0 0 6px rgba(245,219,48,0.4); transition: left 0.3s linear;
    opacity: 0;
}
.podcast-audio-player.active .podcast-ap-dot { opacity: 1; }
.podcast-ap-times { display: flex; justify-content: space-between; }
.podcast-ap-times span { font-size: 0.62rem; color: var(--gray); font-variant-numeric: tabular-nums; }

.podcast-ap-vol { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.podcast-ap-vol i { font-size: 0.8rem; color: var(--gray); }
.podcast-ap-vol-bar { width: 50px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; position: relative; }
.podcast-ap-vol-fill { height: 100%; background: var(--gold); border-radius: 2px; }

.podcast-ap-speed {
    font-size: 0.62rem; font-weight: 700; color: var(--gray-light); background: rgba(255,255,255,0.06);
    padding: 0.2rem 0.4rem; border-radius: 4px; cursor: pointer; flex-shrink: 0;
    transition: var(--transition);
}
.podcast-ap-speed:hover { color: var(--gold); background: rgba(245,219,48,0.1); }

@media(max-width:767px){
    .podcast-audio-player { flex-wrap: wrap; }
    .podcast-ap-vol { display: none; }
}

/* CTA */
.podcast-cta { margin-top: 3rem; margin-bottom: 2rem; }
.podcast-cta-inner {
    display: flex; align-items: center; gap: 1.5rem;
    background: linear-gradient(135deg, rgba(245,219,48,0.06), rgba(245,219,48,0.02));
    border: 1px solid rgba(245,219,48,0.12); border-radius: 16px; padding: 2rem;
}
.podcast-cta-inner > i { font-size: 2.5rem; color: var(--gold); flex-shrink: 0; }
.podcast-cta-inner div { flex: 1; }
.podcast-cta-inner h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; }
.podcast-cta-inner p { font-size: 0.88rem; color: var(--gray-light); margin: 0; }
@media (max-width: 767px) {
    .podcast-cta-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   ADMIN MODAL
   ============================================ */
.admin-modal { position:fixed; top:0; left:0; width:100%; height:100%; z-index:99999; display:flex; align-items:center; justify-content:center; }
.admin-modal-backdrop { position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.8); backdrop-filter:blur(4px); }
.admin-modal-content { position:relative; z-index:1; background:#1a1a1a; border:1px solid rgba(245,219,48,0.15); border-radius:16px; width:90%; max-width:700px; max-height:85vh; overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,0.6); }
.admin-modal-header { display:flex; justify-content:space-between; align-items:center; padding:1.2rem 1.5rem; border-bottom:1px solid rgba(255,255,255,0.06); background:rgba(245,219,48,0.03); border-radius:16px 16px 0 0; }
.admin-modal-header h3 { margin:0; font-family:var(--font-display); color:var(--gold); font-size:1.2rem; }
.admin-modal-close { background:none; border:none; color:var(--gray); font-size:1.2rem; cursor:pointer; padding:0.3rem; }
.admin-modal-close:hover { color:#fff; }
.admin-modal-body { padding:1.5rem; }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.ceve-toast {
    position: fixed; bottom: 100px; right: 20px; z-index: 99999;
    padding: 0.8rem 1.2rem; border-radius: 12px;
    font-size: 0.88rem; font-weight: 600; color: #fff;
    display: flex; align-items: center; gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transform: translateX(120%); transition: transform 0.3s ease;
    max-width: 400px;
}
.ceve-toast.show { transform: translateX(0); }
.ceve-toast.success { background: #2ecc71; }
.ceve-toast.error { background: #e74c3c; }
.ceve-toast.info { background: #3498db; }

/* ============================================
   EVENT DETAIL PAGE
   ============================================ */
.evdetail-poster { border-radius: 16px; overflow: hidden; background: linear-gradient(135deg, rgba(245,219,48,0.08), rgba(245,219,48,0.02)); position: sticky; top: 100px; }
.evdetail-poster img { width: 100%; height: auto; display: block; border-radius: 16px; }
.evdetail-poster-placeholder { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.evdetail-poster-placeholder i { font-size: 4rem; color: var(--gold); opacity: 0.12; }
.evdetail-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.8rem; }
.evdetail-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.evdetail-badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.evdetail-badge.upcoming { background: rgba(46,204,113,0.1); color: #2ecc71; }
.evdetail-badge.past { background: rgba(149,165,166,0.1); color: #95a5a6; }
.evdetail-badge.cancelled { background: rgba(231,76,60,0.1); color: #e74c3c; }
.evdetail-badge.members-only { background: rgba(52,152,219,0.1); color: #3498db; }
.evdetail-description { color: var(--gray-light); font-size: 0.93rem; line-height: 1.75; white-space: pre-line; }
.evdetail-infocard { background: var(--black-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 1.5rem; position: sticky; top: 100px; }
.evdetail-infocard h5 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.evdetail-info-row { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.evdetail-info-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(245,219,48,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1rem; }
.evdetail-info-label { display: block; font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.evdetail-info-value { display: block; font-size: 0.92rem; font-weight: 500; }
.evdetail-info-sub { display: block; font-size: 0.8rem; color: var(--gray); margin-top: 0.15rem; }
.evdetail-infos-inline { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.2rem; margin-top: 0.5rem; }
.evdetail-guests-section { background: rgba(245,219,48,0.03); border: 1px solid rgba(245,219,48,0.08); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
.evdetail-price-recap { background: rgba(255,255,255,0.02); border-radius: 10px; padding: 0.8rem; }
.evdetail-pending-payment { background: rgba(245,219,48,0.03); border: 1px solid rgba(245,219,48,0.1); border-radius: 12px; padding: 1rem; margin-top: 0.5rem; }

/* Member events table - alternating inscrit rows */
.table-events-membre .ev-row-inscrit-gold { background: rgba(245,219,48,0.08) !important; }
.table-events-membre .ev-row-inscrit-gold td { border-bottom-color: rgba(245,219,48,0.12) !important; }
.table-events-membre .ev-row-inscrit-dark { background: rgba(26,26,26,0.95) !important; }
.table-events-membre .ev-row-inscrit-dark td { border-bottom-color: rgba(245,219,48,0.08) !important; }
.table-events-membre .ev-row-inscrit-gold td:first-child,
.table-events-membre .ev-row-inscrit-dark td:first-child { border-left: 3px solid var(--gold); }
.table-events-membre .ev-row-pending { background: rgba(241,196,15,0.04) !important; }
.table-events-membre .ev-row-pending td:first-child { border-left: 3px solid rgba(241,196,15,0.4); }

@media (max-width: 991.98px) {
    .evdetail-title { font-size: 1.3rem; }
    .evdetail-poster { position: static; max-width: 280px; margin: 0 auto 1rem; }
    .evdetail-infocard { position: static; }
}

/* ============================================
   QUILL EDITOR OVERRIDES
   ============================================ */
.ql-toolbar.ql-snow { background: #2a2a2a; border-color: rgba(255,255,255,0.1); border-radius: 8px 8px 0 0; }
.ql-toolbar .ql-stroke { stroke: #ccc; }
.ql-toolbar .ql-fill { fill: #ccc; }
.ql-toolbar .ql-picker-label { color: #ccc; }
.ql-toolbar .ql-picker-options { background: #2a2a2a; border-color: rgba(255,255,255,0.1); }
.ql-toolbar .ql-picker-item { color: #ccc; }
.ql-toolbar .ql-picker-item:hover { color: var(--gold); }
.ql-toolbar button:hover .ql-stroke, .ql-toolbar .ql-picker-label:hover { stroke: var(--gold); }
.ql-toolbar button:hover .ql-fill { fill: var(--gold); }
.ql-toolbar button.ql-active .ql-stroke { stroke: var(--gold); }
.ql-toolbar button.ql-active .ql-fill { fill: var(--gold); }
.ql-container.ql-snow { border-color: rgba(255,255,255,0.1); font-size: 14px; }
#quillEditorContainer .ql-editor { min-height: 280px; color: #1a1a1a; }
#quillEditorContainer .ql-editor.ql-blank::before { color: #999; }

/* Provider payment status modal */
.provider-pay-modal { background: rgba(0,0,0,0.7); position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.provider-pay-modal-inner { background: var(--black-card); border: 1px solid rgba(245,219,48,0.1); border-radius: 16px; padding: 2rem; max-width: 400px; width: 90%; }
.provider-pay-option { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; border-radius: 10px; cursor: pointer; transition: var(--transition); margin-bottom: 0.5rem; border: 1px solid rgba(255,255,255,0.06); }
.provider-pay-option:hover { border-color: rgba(245,219,48,0.2); background: rgba(245,219,48,0.03); }
.provider-pay-option.active { border-color: var(--gold); background: rgba(245,219,48,0.06); }
.provider-pay-option input[type="radio"] { accent-color: var(--gold); }

/* ============================================
   UTILITY
   ============================================ */
.text-gold { color: var(--gold) !important; }

/* Article content (public) */
.article-content h2 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin: 1.5rem 0 0.8rem; }
.article-content h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin: 1.2rem 0 0.6rem; }
.article-content p { margin-bottom: 1rem; }
.article-content a { color: var(--gold); text-decoration: underline; }
.article-content blockquote { border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1.5rem 0; color: var(--gray-light); font-style: italic; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content li { margin-bottom: 0.3rem; }
.article-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }

/* Articles slider (accueil) */
.articles-slider-wrap { position: relative; }
.articles-slider { overflow: hidden; cursor: grab; -webkit-user-select: none; user-select: none; }
.articles-slider:active { cursor: grabbing; }
.articles-slider-inner {
    display: flex; gap: 1.2rem; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.articles-slide {
    min-width: calc(25% - 0.9rem); max-width: calc(25% - 0.9rem);
    background: var(--black-card); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.articles-slide:hover { border-color: rgba(196,166,0,0.3); transform: translateY(-3px); }
.articles-slide-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.articles-slide-img-empty { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg,#1a1a1a,#2a2a2a); display: flex; align-items: center; justify-content: center; }
.articles-slide-body { padding: 1rem; }
.articles-slide-cat { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 3px; text-transform: uppercase; letter-spacing: 0.04em; }
.articles-slide-title { font-family: var(--font-display); font-size: 0.95rem; color: #fff; margin: 0.5rem 0 0.3rem; line-height: 1.25; letter-spacing: 0.1rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.articles-slide-date { font-size: 0.72rem; color: var(--gray); }

.articles-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(245,219,48,0.3);
    background: rgba(0,0,0,0.7); color: var(--gold); font-size: 1rem;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition);
}
.articles-slider-btn:hover { background: var(--gold); color: #1a1a1a; }
.articles-slider-prev { left: -12px; }
.articles-slider-next { right: -12px; }

@media (max-width: 991px) {
    .articles-slide { min-width: calc(33.333% - 0.8rem); max-width: calc(33.333% - 0.8rem); }
}
@media (max-width: 767px) {
    .articles-slide { min-width: calc(80% - 0.6rem); max-width: calc(80% - 0.6rem); }
    .articles-slider-prev { left: 4px; }
    .articles-slider-next { right: 4px; }
}
.bg-dark-card { background: var(--black-card); }
.border-gold { border-color: rgba(245,219,48,0.2) !important; }

/* Settings tabs */
#settingsTabs .btn.active { background:var(--gold);color:#1a1a1a;border-color:var(--gold); }
#settingsTabs .btn:not(.active) { opacity:0.7; }
#settingsTabs .btn:not(.active):hover { opacity:1; }

/* Fix button height consistency in tables */
.table-membre td .btn-sm,
.table-admin td .btn-sm {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    vertical-align: middle;
}
