/* ==========================================================================
   FANTASME.CH - DESIGN SYSTEM GLOBAL
   ========================================================================== */

/* --- 1. VARIABLES & RESET --- */
:root {
    --bg-primary: #030303;
    --bg-glass: rgba(10, 5, 8, 0.65);
    --bg-card: linear-gradient(145deg, rgba(20, 10, 14, 0.7), rgba(5, 2, 4, 0.9));
    --bg-input: #0a0508;
    --text-primary: #ededed;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --text-hint: #4b5563;
    --accent: #e11d48;
    --accent-dark: #9f1239;
    --accent-glow: rgba(225, 29, 72, 0.3);
    --accent-border: rgba(225, 29, 72, 0.15);
    --gold: #eab308;
    --gold-glow: rgba(234, 179, 8, 0.3);
    --silver: #9ca3af;
    --bronze: #f97316;
    --online: #10b981;
    --radius-full: 9999px;
    --radius-card: 2.5rem;
    --radius-lg: 1.5rem;
    --radius-input: 1rem;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    
    /* Variables de Thème Dynamique (ex: success.html) */
    --theme-color: #e11d48;
    --theme-icon: #fda4af;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background-color: var(--bg-primary); 
    color: var(--text-primary); 
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    -webkit-font-smoothing: antialiased; 
    min-height: 100svh; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    padding-top: var(--safe-top); 
    padding-bottom: calc(var(--safe-bottom) + 5rem); 
    line-height: 1.5; 
    overflow-x: hidden; 
}

/* Annule l'espace du menu mobile pour les pages qui n'en ont pas */
body.no-mobile-nav {
    padding-bottom: var(--safe-bottom) !important;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }
::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }


/* ==========================================================================
   2. CLASSES UTILITAIRES & EFFETS VISUELS
   ========================================================================== */

/* Glassmorphism & Cartes */
.glass { background: var(--bg-glass); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border-bottom: 1px solid var(--accent-border); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.glass-card { background: var(--bg-card); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 40px rgba(0,0,0,0.9); transition: border-color 0.3s; }
.glass-card:hover { border-color: rgba(159,18,57,0.5); }

/* Accessibilité */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Objets Vides et Censure */
.empty-state { grid-column: 1 / -1; padding: 8rem 2rem; text-align: center; color: var(--text-hint); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; border: 2px dashed rgba(255,255,255,0.05); border-radius: 3rem; font-style: italic; }
.empty-block { grid-column: 1 / -1; padding: 3rem 2rem; text-align: center; color: var(--text-hint); font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; font-style: italic; border: 1px dashed rgba(255,255,255,0.05); border-radius: 2rem; background: rgba(0,0,0,0.2); }
.censored { color: var(--gold); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; border: 1px solid rgba(234,179,8,0.3); padding: 0.125rem 0.5rem; border-radius: 0.375rem; box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); background: rgba(234,179,8,0.1); margin: 0 0.25rem; }


/* ==========================================================================
   3. ANIMATIONS & AMBIANCE D'ARRIÈRE-PLAN
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.anim-in { animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.anim-in-d { animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; opacity: 0; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.anim-fade { animation: slideUpFade 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
@keyframes floatUp { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-10vh) scale(1.5); opacity: 0; } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes blink { 0% { opacity:.2 } 20% { opacity:1 } 100% { opacity:.2 } }
@media (prefers-reduced-motion: reduce) { .anim-in, .anim-in-d, .anim-fade, .dust { animation: none; opacity: 1; display: none; } }

.ambient-glow { position: fixed; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(159,18,57,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; top: -10%; left: -20%; }
.ambient-gold { position: fixed; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(234,179,8,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; bottom: -10%; right: -20%; }
.ambient-purple { position: fixed; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(147,51,234,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; top: 20%; right: -10%; }
.dust { position: absolute; background: rgba(225, 29, 72, 0.4); border-radius: 50%; pointer-events: none; will-change: transform, opacity; animation: floatUp 8s infinite linear; }


/* ==========================================================================
   4. NAVIGATION (HEADER & DROPDOWN)
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
@media (min-width: 768px) { .site-header { padding: 1rem 2rem; } }
.header-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; justify-content: space-between; padding-right: 1rem;}
.header-left-inner { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
@media (min-width: 768px) { .header-left { gap: 1rem; justify-content: flex-start; flex: auto; padding-right: 0;} .header-left-inner { gap: 1.25rem; } }

.btn-back { color: var(--text-muted); font-size: 1.5rem; font-weight: 900; width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.btn-back:hover { color: var(--accent); background: rgba(255,255,255,0.05); transform: translateX(-2px); }
.logo { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.05em; text-transform: uppercase; color: white; font-style: italic; filter: drop-shadow(0 0 10px var(--accent-glow)); display: none; }
@media (min-width: 768px) { .logo { display: block; font-size: 1.5rem; } }
.logo-accent { color: #be123c; }
.logo-dot { color: var(--theme-color); filter: drop-shadow(0 0 10px var(--theme-color)); transition: all 1s; }

.mobile-title { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.3em; font-style: italic; background: rgba(76,5,25,0.2); padding: 0.375rem 0.75rem; border-radius: var(--radius-full); border: 1px solid rgba(159,18,57,0.3); }
@media (min-width: 768px) { .mobile-title { display: none; } }

.header-actions { display: flex; align-items: center; gap: 1rem; z-index: 10; }
.header-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 768px) { .header-actions, .header-right { gap: 1.5rem; } }

.header-auth { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .header-auth { gap: 1rem; } }
.header-auth.visible { display: flex; }
.header-guest { display: flex; align-items: center; gap: 1rem; z-index: 10; }
.btn-login-guest { font-size: 11px; font-weight: 900; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.2em; border: 1px solid rgba(55,65,81,0.8); padding: 0.625rem 1.5rem; border-radius: var(--radius-full); transition: all 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
.btn-login-guest:hover { color: var(--accent); border-color: #9f1239; }

.desktop-nav { display: none; align-items: center; gap: 2rem; margin-right: 1rem; padding-right: 2rem; border-right: 1px solid rgba(159,18,57,0.3); }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; color: var(--text-muted); transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active { border-bottom: 1px solid var(--accent); padding-bottom: 0.25rem; }

/* Boutons Spéciaux Header */
.btn-admin { display: none; background: rgba(76,5,25,0.4); color: var(--accent); font-size: 10px; font-weight: 900; padding: 0 1rem; border-radius: var(--radius-full); text-transform: uppercase; border: 1px solid rgba(136,19,55,0.5); letter-spacing: 0.1em; height: 40px; align-items: center; justify-content: center; transition: background 0.3s; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.btn-admin:hover { background: rgba(159,18,57,0.6); }
.btn-admin.visible { display: flex; }
@media (min-width: 768px) { .btn-admin { height: 44px; font-size: 11px; padding: 0 1.25rem; } }

.btn-vip { display: none; align-items: center; justify-content: center; gap: 0.5rem; padding: 0 0.75rem; border-radius: var(--radius-full); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; transition: all 0.3s; height: 44px; white-space: nowrap; flex-shrink: 0; }
.btn-vip.visible { display: flex; }
.btn-vip-gold { border: 1px solid var(--gold); color: var(--gold); box-shadow: 0 0 20px var(--gold-glow); background: rgba(234,179,8,0.1); }
.btn-vip-silver { border: 1px solid var(--text-secondary); color: #d1d5db; background: rgba(156,163,175,0.1); }
.btn-vip-bronze { border: 1px solid var(--bronze); color: var(--bronze); background: rgba(249,115,22,0.1); }
.btn-vip-cta { background: linear-gradient(to right, #ca8a04, #facc15); color: black; border: none; box-shadow: 0 0 20px rgba(202,138,4,0.4); animation: pulse 2s infinite; }
.btn-vip-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(202,138,4,0.6); }
@media (max-width: 767px) { .btn-vip .vip-text { display: none; } }
@media (min-width: 768px) { .btn-vip { height: 48px; font-size: 12px; padding: 0 1.5rem; } .btn-vip .vip-text { display: inline; } }

.btn-messages { display: none; position: relative; align-items: center; gap: 0.5rem; background: linear-gradient(to bottom right, #9f1239, #4c0519); border: 1px solid rgba(190,18,60,0.5); color: white; padding: 0.625rem 1.5rem; border-radius: var(--radius-full); box-shadow: 0 0 15px var(--accent-glow); transition: all 0.3s; min-height: 44px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }
@media (min-width: 768px) { .btn-messages { display: flex; } }
.btn-messages:hover { box-shadow: 0 0 25px rgba(225,29,72,0.5); transform: scale(1.05); }
.notif-badge { display: none; position: absolute; top: -0.5rem; right: -0.5rem; background: white; color: #9f1239; border: 2px solid #050505; font-size: 11px; width: 1.5rem; height: 1.5rem; align-items: center; justify-content: center; border-radius: 50%; font-weight: 900; }

.btn-securite { display: none; align-items: center; gap: 0.375rem; font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; background: rgba(10,5,8,0.8); padding: 0.5rem 1rem; border-radius: var(--radius-full); border: 1px solid rgba(159,18,57,0.5); backdrop-filter: blur(12px); box-shadow: 0 4px 12px rgba(0,0,0,0.5); min-height: 44px; flex-shrink: 0; z-index: 20; transition: all 0.2s; cursor: pointer; }
.btn-securite:hover { color: white; background: rgba(159,18,57,0.4); }
.btn-securite.visible { display: flex; }
.securite-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@media (max-width: 767px) {
    .btn-securite { font-size: 0; padding: 0; width: 44px; justify-content: center; gap: 0; }
    .btn-securite .securite-dot { display: none; }
    .btn-securite::after { content: "🛡️"; font-size: 16px; }
}

/* Avatar & Menu Déroulant */
.avatar-wrapper { position: relative; z-index: 50; flex-shrink: 0; }
.avatar-trigger { position: relative; cursor: pointer; padding: 0.25rem; flex-shrink: 0; }
.avatar-glow { position: absolute; inset: 0; background: #be123c; border-radius: 50%; filter: blur(16px); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.avatar-trigger:hover .avatar-glow { opacity: 0.6; }
.avatar-img, .avatar-static { width: 2.5rem; height: 2.5rem; object-fit: cover; border-radius: 50%; border: 1.5px solid #9f1239; position: relative; z-index: 10; box-shadow: 0 0 20px rgba(225,29,72,0.4); transition: all 1s; flex-shrink: 0; aspect-ratio: 1 / 1; }
@media (min-width: 768px) { .avatar-img, .avatar-static { width: 3rem; height: 3rem; } }

.dropdown-menu { display: none; position: absolute; right: 0; top: calc(100% + 0.75rem); width: 14rem; background: rgba(10,5,8,0.95); backdrop-filter: blur(24px); border: 1px solid rgba(159,18,57,0.5); border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.8); overflow: hidden; padding: 0.5rem 0; text-align: left; opacity: 0; transform: translateY(-10px); transition: opacity 0.3s, transform 0.3s; }
.dropdown-menu.open { display: block; opacity: 1; transform: translateY(0); }
.dropdown-header { padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 0.5rem; background: rgba(0,0,0,0.6); }
.dropdown-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.3em; font-weight: 900; font-style: italic; }
.dropdown-pseudo { font-size: 0.875rem; font-weight: 700; color: white; margin-top: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dropdown-item { display: flex; align-items: center; width: 100%; padding: 0.75rem 1.25rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 900; color: var(--text-secondary); transition: background 0.2s, color 0.2s; min-height: 44px; text-align: left; }
.dropdown-item:hover { background: rgba(255,255,255,0.05); color: white; }
.dropdown-sep { height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 0; }
.dropdown-item.danger { color: var(--accent); }
.dropdown-item.danger:hover { background: rgba(76,5,25,0.6); color: #fb7185; }


/* ==========================================================================
   5. NAVIGATION MOBILE (Barre inférieure)
   ========================================================================== */
.mobile-nav { display: flex; position: fixed; bottom: 0; left: 0; right: 0; justify-content: space-around; align-items: center; padding-top: 1rem; padding-bottom: calc(var(--safe-bottom) + 12px); z-index: 40; border-top: 1px solid rgba(159,18,57,0.3); }
@media (min-width: 768px) { .mobile-nav { display: none; } }
.mobile-nav.hidden-nav { display: none !important; }
.mnav-item { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; color: var(--text-muted); transition: color 0.2s; width: 100%; min-height: 44px; justify-content: center; position: relative; }
.mnav-item:hover { color: white; }
.mnav-item.active { color: var(--accent); }
.mnav-icon { width: 1.5rem; height: 1.5rem; }
.mnav-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }
.mnav-item.active .mnav-label { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.mnav-badge { display: none; position: absolute; top: 0; right: 25%; background: #be123c; color: white; font-size: 11px; width: 1rem; height: 1rem; align-items: center; justify-content: center; border-radius: 50%; font-weight: 900; border: 1px solid #050505; }


/* ==========================================================================
   6. FOOTERS (Légal et Standard)
   ========================================================================== */
.site-footer { border-top: 1px solid rgba(159,18,57,0.3); margin-top: auto; padding: 1.5rem 1rem; text-align: center; flex-shrink: 0; width: 100%; position: relative; z-index: 20; }
@media (min-width: 768px) { .site-footer { padding: 2.5rem 1.25rem; } }
.footer-inner { max-width: 72rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; gap: 2rem; } }
.footer-logo { font-size: 1.125rem; font-weight: 900; font-style: italic; letter-spacing: -0.05em; color: white; filter: drop-shadow(0 0 10px var(--accent-glow)); }
@media (min-width: 768px) { .footer-logo { font-size: 1.25rem; } }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
@media (min-width: 768px) { .footer-links { gap: 2.5rem; } }
.footer-links a { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; transition: color 0.2s; min-height: 32px; display: inline-flex; align-items: center; }
@media (min-width: 768px) { .footer-links a { font-size: 11px; letter-spacing: 0.2em; min-height: 44px; } }
.footer-links a:hover { color: var(--accent); }
.footer-links a.active { color: white; border-bottom: 1px solid white; padding-bottom: 0.125rem; }
.footer-copy { font-size: 9px; color: var(--text-hint); font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; font-style: italic; }
@media (min-width: 768px) { .footer-copy { font-size: 11px; letter-spacing: 0.3em; } }

/* Footer Légal (ex: sur la page de chat ou de paiement) */
.legal-footer { display: none; flex-shrink: 0; width: 100%; margin-top: auto; background: #050203; }
.legal-footer.visible { display: block; }
.legal-footer-inner { border-top: 1px solid rgba(159,18,57,0.3); padding: 2rem 1rem; text-align: center; max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .legal-footer-inner { flex-direction: row; justify-content: space-between; } }
.legal-footer-logo { font-size: 1.125rem; font-weight: 900; font-style: italic; letter-spacing: -0.05em; color: white; }
.legal-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
@media (min-width: 768px) { .legal-footer-links { gap: 2rem; } }
.legal-footer-links a { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; transition: color 0.2s; }
.legal-footer-links a:hover { color: var(--accent); }


/* ==========================================================================
   7. ÉLÉMENTS FLOTTANTS (TOASTS, ALERTES, CONFIRMATIONS)
   ========================================================================== */
.toast { position: fixed; top: 6rem; left: 50%; transform: translateX(-50%); padding: 1rem 2rem; border-radius: var(--radius-full); border: 1px solid; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 200; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.75rem; white-space: nowrap; max-width: calc(100vw - 2rem); animation: toastIn 0.4s ease forwards; }
.toast.hiding { animation: toastOut 0.4s ease forwards; }
.toast-icon { font-size: 1.125rem; flex-shrink: 0; }
.toast--error { background: rgba(76,5,25,0.9); border-color: var(--accent); color: #fb7185; box-shadow: 0 0 30px var(--accent-glow); }
.toast--success { background: rgba(6,78,59,0.9); border-color: var(--online); color: #6ee7b7; box-shadow: 0 0 30px rgba(16,185,129,0.3); }

.confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.confirm-overlay.visible { opacity: 1; }
.confirm-box { padding: 2rem 2.5rem; border-radius: var(--radius-card); max-width: 24rem; width: 100%; text-align: center; border: 1px solid rgba(159,18,57,0.5); box-shadow: 0 0 40px rgba(225,29,72,0.2); background: #0a0508; transform: scale(0.95); transition: transform 0.3s; }
.confirm-overlay.visible .confirm-box { transform: scale(1); }
.confirm-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.confirm-msg { color: white; font-size: 0.875rem; font-weight: 700; margin-bottom: 2rem; font-style: italic; line-height: 1.6; white-space: pre-wrap; }
.confirm-actions { display: flex; gap: 1rem; }
.confirm-btn { flex: 1; padding: 1rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.15em; min-height: 44px; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.confirm-cancel { border: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary); background: transparent; }
.confirm-cancel:hover { background: rgba(255,255,255,0.05); color: white; }
.confirm-ok { background: var(--accent-dark); color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 15px var(--accent-glow); }
.confirm-ok:hover { background: #be123c; }


/* ==========================================================================
   8. FORMULAIRES & BOUTONS GÉNÉRIQUES
   ========================================================================== */

/* Boutons principaux */
.btn-submit { display: inline-flex; align-items: center; justify-content: center; text-align: center; padding: 1.25rem 2.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; cursor: pointer; box-shadow: 0 0 25px rgba(225,29,72,0.4); transition: all 0.3s; min-height: 44px; font-family: inherit; background: var(--accent-dark); color: white; border: 1px solid rgba(190,18,60,0.5); text-decoration: none; }
@media (min-width: 768px) { .btn-submit { font-size: 12px; } }
.btn-submit:hover { background: #be123c; box-shadow: 0 0 35px rgba(225,29,72,0.6); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit.loading, .btn-loading { opacity: 0.5; pointer-events: none; cursor: wait; filter: grayscale(1); }

.btn-submit-white { display: inline-flex; align-items: center; justify-content: center; background: white; color: black; box-shadow: 0 0 20px rgba(255,255,255,0.2); }
.btn-submit-white:hover { background: var(--accent); color: white; box-shadow: 0 0 25px rgba(225,29,72,0.5); transform: scale(1.05); }
.btn-submit-accent { display: inline-flex; align-items: center; justify-content: center; background: #9f1239; color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 15px var(--accent-glow); }
.btn-submit-accent:hover { background: #be123c; transform: scale(1.05); }
.btn-submit-full { display: flex; align-items: center; justify-content: center; width: 100%; background: #9f1239; color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 30px var(--accent-glow); padding: 1.5rem; margin-top: 2rem; text-align: center; }
.btn-submit-full:hover { background: #be123c; transform: scale(1.02); }

/* Champs de texte et sélecteurs */
.form-input, .form-select, .form-textarea { width: 100%; background: var(--bg-input); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-input); padding: 1.25rem 1.5rem; color: white; outline: none; font-weight: 700; font-size: 16px !important; box-shadow: inset 0 2px 8px rgba(0,0,0,0.5); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s; font-family: inherit; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-hint); opacity: 0.5; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: rgba(225,29,72,0.05); box-shadow: inset 0 2px 8px rgba(0,0,0,0.5), 0 0 15px rgba(225,29,72,0.15); }
.form-input:disabled { color: var(--text-muted); cursor: not-allowed; opacity: 0.6; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.25rem center; padding-right: 3rem; }
.form-select option { background: var(--bg-input); color: white; }
.form-textarea { resize: none; height: 10rem; line-height: 1.7; font-style: italic; border-radius: var(--radius-lg); }

/* Structure des formulaires */
.form-body { display: flex; flex-direction: column; gap: 1.25rem; position: relative; z-index: 10; }
.form-fields { display: flex; flex-direction: column; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.form-grid-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.75rem; }
.form-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; padding-left: 0.5rem; }
.form-label-muted { color: rgba(136,19,55,0.8); }
.form-label-white { color: white; }
.form-protected { position: relative; }
.form-protected-tag { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 900; color: #881337; text-transform: uppercase; font-style: italic; letter-spacing: 0.15em; background: var(--bg-input); padding: 0 0.5rem; }

/* Input de type Fichier (Photo) */
.file-input { display: flex; align-items: center; width: 100%; font-size: 11px; color: var(--text-secondary); font-style: italic; outline: none; background: rgba(0,0,0,0.4); border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.05); padding: 0.375rem; padding-right: 1rem; overflow: hidden; }
.file-input::file-selector-button { margin-right: 1rem; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); border: none; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; transition: all 0.3s; font-family: inherit; flex-shrink: 0; }
.file-input-primary::file-selector-button { background: var(--accent-dark); color: white; box-shadow: 0 0 15px rgba(225,29,72,0.4); }
.file-input-primary::file-selector-button:hover { background: #be123c; }
.file-input-secondary::file-selector-button { background: var(--bg-input); color: var(--accent); border: 1px solid rgba(159,18,57,0.5); }
.file-input-secondary::file-selector-button:hover { color: white; background: rgba(159,18,57,0.4); }
.photo-form { flex-grow: 1; display: flex; flex-direction: column; gap: 1.25rem; width: 100%; justify-content: center; }
.galerie-form-row { display: flex; flex-direction: column; gap: 1.25rem; border-top: 1px solid rgba(159,18,57,0.3); padding-top: 1.5rem; }
@media (min-width: 768px) { .galerie-form-row { flex-direction: row; align-items: center; justify-content: space-between; } .galerie-form-row .file-input { max-width: 60%; } }

/* Checkboxes (ex: CGU) */
.rules-block { background: rgba(76,5,25,0.1); padding: 1.25rem; border-radius: var(--radius-input); border: 1px solid rgba(159,18,57,0.3); display: flex; align-items: flex-start; gap: 1rem; cursor: pointer; transition: all 0.3s; }
.rules-block:hover { background: rgba(76,5,25,0.2); border-color: rgba(159,18,57,0.5); }
.custom-check { -webkit-appearance: none; appearance: none; width: 1.5rem; height: 1.5rem; background-color: rgba(0,0,0,0.5); border: 1px solid rgba(225,29,72,0.5); border-radius: 0.375rem; cursor: pointer; flex-shrink: 0; margin-top: 0.125rem; position: relative; transition: all 0.2s; }
.custom-check:checked { background-color: var(--accent); border-color: var(--accent); box-shadow: 0 0 15px rgba(225,29,72,0.4); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 70%; background-position: center; background-repeat: no-repeat; }
.rules-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; text-align: left; }
.rules-text strong { display: block; color: white; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 900; margin-bottom: 0.25rem; }
.rules-highlight { color: #fb7185; font-style: italic; font-weight: 700; display: inline-block; margin-top: 0.25rem; }
.rules-text a { color: white; text-decoration: underline; text-underline-offset: 2px; }

/* Champs Spéciaux (Date, Mdp) */
input[type="date"] { color: #d1d5db; text-transform: uppercase; font-size: 14px !important; cursor: pointer; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; opacity: 0.4; transition: opacity 0.2s; }
input[type="date"]:focus::-webkit-calendar-picker-indicator { opacity: 1; filter: invert(0.5) sepia(1) saturate(5) hue-rotate(315deg); }
.dob-section { padding-top: 1rem; border-top: 1px solid var(--accent-border); margin-top: 0.5rem; }
.dob-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; padding: 0 0.5rem; }
.dob-label { font-size: 11px; font-weight: 900; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.15em; font-style: italic; }
.dob-badge { font-size: 11px; color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; display: inline-flex; align-items: center; gap: 0.25rem; background: rgba(159,18,57,0.15); padding: 0.25rem 0.5rem; border-radius: 0.375rem; border: 1px solid rgba(159,18,57,0.3); }
.pwd-strength { display: flex; gap: 0.25rem; margin-top: 0.5rem; padding: 0 0.25rem; }
.pwd-bar { height: 3px; flex: 1; border-radius: 2px; background: rgba(255,255,255,0.08); transition: background 0.3s; }
.pwd-bar.active-weak { background: #ef4444; }
.pwd-bar.active-medium { background: #f59e0b; }
.pwd-bar.active-strong { background: #22c55e; }
.pwd-hint { font-size: 11px; color: var(--text-hint); margin-top: 0.375rem; padding: 0 0.25rem; font-style: italic; transition: color 0.3s; }


/* ==========================================================================
   9. MODALES COMMUNES (Pop-ups)
   ========================================================================== */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 110; align-items: center; justify-content: center; padding: 1rem; padding-top: var(--safe-top); padding-bottom: var(--safe-bottom); }
.modal-overlay.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); }
.modal-wrapper { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 1rem; pointer-events: none; }
.modal-box { position: relative; z-index: 10; width: 100%; max-width: 28rem; padding: 2rem 2.5rem; border-radius: var(--radius-card); border: 1px solid rgba(159,18,57,0.5); box-shadow: 0 20px 50px rgba(225,29,72,0.15); background: #0a0508; pointer-events: auto; max-height: 85svh; overflow-y: auto; scrollbar-width: none; }
@media (min-width: 768px) { .modal-box { padding: 2.5rem; } }
.modal-box::-webkit-scrollbar { display: none; }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; border-bottom: 1px solid rgba(159,18,57,0.3); padding-bottom: 1.5rem; }
.modal-title { font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: var(--accent); letter-spacing: 0.15em; font-style: italic; display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 768px) { .modal-title { font-size: 1.5rem; } }
.modal-title-accent { color: #be123c; filter: drop-shadow(0 0 10px rgba(225,29,72,0.5)); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--text-muted); font-size: 1.25rem; width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); transition: all 0.2s; cursor: pointer; }
.modal-close:hover { color: white; background: rgba(159,18,57,0.4); }
.modal-label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.15em; font-style: italic; margin-bottom: 0.75rem; }
.modal-select { width: 100%; background: rgba(0,0,0,0.6); border: 1px solid rgba(159,18,57,0.3); border-radius: var(--radius-input); padding: 1rem 1.25rem; color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; outline: none; appearance: none; box-shadow: inset 0 2px 4px rgba(0,0,0,0.3); font-family: inherit; margin-bottom: 1rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.modal-select:focus { border-color: var(--accent); }
.modal-select option { background: var(--bg-input); color: white; }
.modal-btn { width: 100%; padding: 1rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.2em; min-height: 44px; font-family: inherit; transition: all 0.3s; cursor: pointer; }
.modal-btn-primary { background: var(--accent-dark); color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 15px var(--accent-glow); margin-bottom: 2rem; }
.modal-btn-primary:hover { background: #be123c; transform: scale(1.02); }
.modal-divider { height: 1px; background: rgba(159,18,57,0.3); margin-bottom: 2rem; }
.modal-btn-block { background: #050203; color: var(--accent); border: 1px solid var(--accent-dark); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.modal-btn-block:hover { background: rgba(76,5,25,0.4); box-shadow: 0 0 20px rgba(225,29,72,0.2); }
.author-banner { background: linear-gradient(to right, rgba(76,5,25,0.3), transparent); padding: 1.25rem; border-radius: var(--radius-input); border-left: 2px solid #be123c; margin-bottom: 1.5rem; }
.author-banner-label { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.3em; font-style: italic; margin-bottom: 0.25rem; }
.author-banner-name { color: white; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }


/* ==========================================================================
   10. PAGES AUTHENTIFICATION (Connexion / Inscription)
   ========================================================================== */
.login-main, .register-main { flex-grow: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.25rem; position: relative; z-index: 10; width: 100%; }
@media (min-width: 768px) { .login-main, .register-main { padding: 2rem; } }
.login-card { width: 100%; max-width: 28rem; border-radius: var(--radius-card); padding: 2rem; position: relative; overflow: hidden; }
.register-card { width: 100%; max-width: 32rem; border-radius: var(--radius-card); padding: 2rem; position: relative; overflow: hidden; margin: 1rem 0; }
@media (min-width: 768px) { .login-card, .register-card { padding: 3rem; } }
.login-header, .register-header { text-align: center; margin-bottom: 2.5rem; position: relative; z-index: 10; }
.login-title, .register-title { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.05em; color: white; font-style: italic; filter: drop-shadow(0 0 10px rgba(225,29,72,0.2)); }
@media (min-width: 768px) { .login-title, .register-title { font-size: 1.875rem; } }
.login-title-accent, .register-title-accent { color: #be123c; }
.login-subtitle, .register-subtitle { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4em; margin-top: 0.75rem; font-weight: 900; font-style: italic; }
.register-block, .login-block { margin-top: 2rem; text-align: center; border-top: 1px solid rgba(225, 29, 72, 0.3); padding-top: 2rem; position: relative; z-index: 10; }
.register-hint, .login-hint { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 900; letter-spacing: 0.15em; margin-bottom: 1rem; font-style: italic; }
.register-link, .login-link { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.3em; font-weight: 900; font-style: italic; border-bottom: 1px solid rgba(159,18,57,0.5); padding-bottom: 0.25rem; transition: color 0.2s; min-height: 44px; display: inline-flex; align-items: center; padding-left: 1rem; padding-right: 1rem; }
.register-link:hover, .login-link:hover { color: #fb7185; }
.ssl-badge { margin-top: 3rem; text-align: center; z-index: 10; }
.ssl-text { font-size: 11px; color: var(--text-hint); text-transform: uppercase; letter-spacing: 0.4em; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-style: italic; }
.ssl-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.submit-section { padding-top: 1.5rem; }
.legal-text { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; line-height: 1.8; }
.legal-link { color: var(--accent); border-bottom: 1px solid rgba(159,18,57,0.5); padding-bottom: 1px; transition: color 0.2s; }
.legal-link:hover { color: #fb7185; }


/* ==========================================================================
   11. LAYOUTS GLOBAUX & HEADER DE PAGES (Dashboard, Annonces...)
   ========================================================================== */
.main-content { flex-grow: 1; padding: 1rem; max-width: 80rem; margin: 0 auto; width: 100%; position: relative; z-index: 10; overflow-x: hidden; }
@media (min-width: 768px) { .main-content { padding: 2rem; } }

.section-header, .page-header { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(159,18,57,0.3); padding-bottom: 2rem; margin-top: 1rem; }
@media (min-width: 768px) { .section-header, .page-header { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.page-header { margin-bottom: 0; text-align: left; }

.section-title, .page-title { font-size: 1.875rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; filter: drop-shadow(0 0 15px rgba(225,29,72,0.2)); margin-bottom: 1rem; }
@media (min-width: 768px) { .section-title, .page-title { font-size: 3rem; } }
.section-title-accent, .page-title-accent { color: #be123c; }

.page-subtitle { font-size: 11px; color: rgba(225,29,72,0.6); text-transform: uppercase; letter-spacing: 0.4em; font-weight: 900; font-style: italic; margin-bottom: 0; }
@media (min-width: 768px) { .page-subtitle { font-size: 12px; } }
.page-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.page-link { font-size: 11px; font-weight: 900; text-transform: uppercase; padding: 0.875rem 1.5rem; border-radius: var(--radius-full); letter-spacing: 0.2em; font-style: italic; transition: all 0.3s; min-height: 44px; display: inline-flex; align-items: center; text-align: center; }
.page-link-accent { color: var(--accent); border: 1px solid rgba(159,18,57,0.5); box-shadow: 0 0 15px rgba(225,29,72,0.2); }
.page-link-accent:hover { background: rgba(159,18,57,0.2); color: white; }
.page-link-muted { color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.1); }
.page-link-muted:hover { background: rgba(255,255,255,0.05); color: white; }

/* Filtres de recherche */
.filters-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; background: rgba(0,0,0,0.4); padding: 0.5rem; border-radius: 2rem; border: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 640px) { .filters-bar { flex-wrap: nowrap; width: auto; } }
.filter-select { flex-grow: 1; background: transparent; color: white; padding: 0.75rem 1.25rem; border-radius: var(--radius-input); outline: none; border: none; cursor: pointer; appearance: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; min-height: 44px; font-family: inherit; transition: background 0.2s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
@media (min-width: 640px) { .filter-select { flex-grow: 0; } }
@media (min-width: 768px) { .filter-select { font-size: 12px; } }
.filter-select:focus { background-color: rgba(255,255,255,0.05); }
.filter-select option { background: black; color: white; }
.filter-sep { display: none; width: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 0; }
@media (min-width: 640px) { .filter-sep { display: block; } }

/* Sections Internes (boîtes génériques) */
.edit-section, .section-box { padding: 2rem; border-radius: var(--radius-card); box-shadow: 0 10px 30px rgba(0,0,0,0.6); position: relative; overflow: hidden; margin-top: 3rem; }
@media (min-width: 768px) { .edit-section, .section-box { padding: 3rem; } }
.section-watermark { position: absolute; right: -0.625rem; top: -0.625rem; font-size: 8rem; opacity: 0.04; transition: transform 0.5s; filter: grayscale(1); pointer-events: none; user-select: none; font-weight: 900; font-style: italic; }
.edit-section:hover .section-watermark, .section-box:hover .section-watermark { transform: scale(1.1); }
.section-heading { font-size: 11px; font-weight: 900; text-transform: uppercase; color: var(--accent); letter-spacing: 0.4em; display: flex; align-items: center; gap: 1rem; font-style: italic; position: relative; z-index: 10; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-heading { font-size: 12px; } }
.section-heading-white { color: white; }
.section-heading-danger { color: var(--accent); }
.section-bar { width: 0.5rem; height: 1.5rem; background: #be123c; border-radius: var(--radius-full); box-shadow: 0 0 10px rgba(225,29,72,0.5); flex-shrink: 0; }
.section-bar-danger { background: #9f1239; box-shadow: 0 0 15px rgba(225,29,72,0.6); }
.section-bar-orange { background: #ea580c; box-shadow: 0 0 10px rgba(234,88,12,0.5); }
.section-bar-gray { background: var(--text-hint); box-shadow: 0 0 10px rgba(156,163,175,0.3); }
.heading-accent { color: var(--accent); }
.heading-orange { color: var(--bronze); }
.heading-gray { color: var(--text-muted); }
.section-note { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; font-style: italic; border-left: 2px solid rgba(159,18,57,0.5); padding-left: 1rem; line-height: 1.8; margin-bottom: 2.5rem; position: relative; z-index: 10; }


/* ==========================================================================
   12. DASHBOARD & CARTES DE MEMBRES
   ========================================================================== */
.members-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .members-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1280px) { .members-grid { grid-template-columns: repeat(4, 1fr); } }

.member-card { border-radius: var(--radius-card); overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.6); transition: transform 0.3s; }
.member-card:hover { transform: translateY(-4px); }
.member-link { display: block; aspect-ratio: 4/5; position: relative; }
.member-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.member-card:hover .member-photo { transform: scale(1.1); }
.member-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #050203 0%, rgba(5,2,3,0.6) 50%, transparent 100%); opacity: 0.95; }
.online-dot { position: absolute; top: 12px; right: 12px; width: 10px; height: 10px; background-color: var(--online); border-radius: 50%; box-shadow: 0 0 10px rgba(16,185,129,0.8); border: 1.5px solid black; z-index: 10; animation: pulse 2s infinite; }

.card-badge { position: absolute; left: 1rem; background: rgba(10,5,8,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.375rem 0.75rem; border-radius: var(--radius-full); font-size: 11px; font-weight: 900; color: white; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); font-style: italic; letter-spacing: 0.15em; box-shadow: 0 4px 12px rgba(0,0,0,0.5); z-index: 10; }
.card-badge-role { top: 1rem; }
.card-badge-vip { top: 3.25rem; }
.card-badge-vip .gold { color: var(--gold); filter: drop-shadow(0 0 5px var(--gold-glow)); }
.card-badge-vip .silver { color: #d1d5db; }
.card-badge-vip .bronze { color: var(--bronze); }

.btn-like { position: absolute; top: 1rem; right: 1rem; z-index: 30; width: 2.5rem; height: 2.5rem; background: rgba(0,0,0,0.6); backdrop-filter: blur(12px); border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; transition: transform 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.5); cursor: pointer; }
.btn-like:hover { transform: scale(1.1); }
.btn-like:active { transform: scale(0.95); }

.card-info { position: relative; z-index: 10; padding: 1rem; padding-top: 2.5rem; width: 100%; position: absolute; bottom: 0; }
@media (min-width: 768px) { .card-info { padding: 1.25rem; padding-top: 2.5rem; } }
.card-name-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.5rem; }
.card-name { font-size: 1.125rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8)); }
@media (min-width: 640px) { .card-name { font-size: 1.25rem; } }
@media (min-width: 768px) { .card-name { font-size: 1.5rem; } }
.card-age { font-size: 11px; font-weight: 700; color: var(--text-secondary); font-style: italic; letter-spacing: 0.15em; flex-shrink: 0; margin-bottom: 2px; }
@media (min-width: 768px) { .card-age { font-size: 12px; } }
.card-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(159,18,57,0.4); padding-top: 0.5rem; }
@media (min-width: 768px) { .card-meta { padding-top: 0.75rem; } }
.card-pref { font-size: 11px; color: var(--accent); text-transform: uppercase; font-weight: 900; font-style: italic; letter-spacing: 0.15em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-right: 0.5rem; }
.card-region { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; font-weight: 700; letter-spacing: 0.15em; flex-shrink: 0; }

/* Squelettes de chargement (Dashboard) */
.skeleton-card { border-radius: var(--radius-card); overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.6); background: rgba(5,2,3,0.5); border: 1px solid rgba(255,255,255,0.05); }
.skeleton-body { aspect-ratio: 4/5; background: rgba(255,255,255,0.03); animation: shimmer 1.5s infinite; background-size: 200% 100%; background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%); }
.skeleton-info { position: absolute; bottom: 0; width: 100%; padding: 1rem 1.25rem 1.25rem; background: linear-gradient(to top, black, transparent); }
.skeleton-line { height: 1.25rem; background: rgba(255,255,255,0.1); border-radius: 0.375rem; margin-bottom: 0.75rem; }
.skeleton-line-half { width: 50%; }
.skeleton-line-third { width: 33%; }
.skeleton-line-quarter { width: 25%; }
.skeleton-meta { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 0.75rem; }
.skeleton-meta-item { height: 0.75rem; background: rgba(159,18,57,0.3); border-radius: 0.25rem; }


/* ==========================================================================
   13. ANNONCES & DÉSIRS
   ========================================================================== */
.btn-new-ad { background: #9f1239; color: white; padding: 1rem 2rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.2em; transition: all 0.3s; box-shadow: 0 0 20px var(--accent-glow); min-height: 44px; display: inline-flex; align-items: center; border: 1px solid rgba(190,18,60,0.5); cursor: pointer; }
@media (min-width: 768px) { .btn-new-ad { font-size: 12px; } }
.btn-new-ad:hover { background: #be123c; box-shadow: 0 0 30px rgba(225,29,72,0.6); transform: scale(1.05); }

.annonces-list { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .annonces-list { gap: 2rem; } }

.desire-card { padding: 1.5rem; border-radius: var(--radius-card); transition: transform 0.3s; box-shadow: 0 20px 40px rgba(0,0,0,0.6); position: relative; overflow: hidden; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-left: 4px solid #be123c; }
@media (min-width: 768px) { .desire-card { padding: 2.5rem; } }
.desire-card:hover { transform: translateY(-4px); border-color: rgba(159,18,57,0.5); }
.desire-card .hover-sheen { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(255,255,255,0.05), transparent); opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.desire-card:hover .hover-sheen { opacity: 1; }

.desire-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .desire-header { gap: 1.5rem; } }
.desire-avatar-link { position: relative; flex-shrink: 0; transition: transform 0.3s; display: block; }
.desire-avatar-link:hover { transform: scale(1.05); }
.desire-avatar { width: 4rem; height: 4rem; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.2); box-shadow: 0 4px 20px rgba(0,0,0,0.6); transition: border-color 0.3s; }
@media (min-width: 768px) { .desire-avatar { width: 5rem; height: 5rem; } }
.desire-card:hover .desire-avatar { border-color: var(--accent); }
.desire-online-dot { position: absolute; bottom: 0; right: 0; width: 1rem; height: 1rem; background: var(--online); border: 3px solid var(--bg-input); border-radius: 50%; box-shadow: 0 0 10px rgba(16,185,129,0.8); animation: pulse 2s infinite; }

.desire-info { min-width: 0; flex-grow: 1; }
.desire-cat { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .desire-cat { font-size: 0.875rem; } }
.desire-author-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .desire-author-row { gap: 0.75rem; } }
.desire-author { font-weight: 700; font-size: 0.875rem; color: #e5e7eb; transition: color 0.2s; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.desire-author:hover { color: white; }
.desire-tier-badge { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); font-size: 11px; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.15em; box-shadow: inset 0 1px 3px rgba(0,0,0,0.3); font-weight: 900; }
.desire-tier-gold { color: var(--gold); }
.desire-tier-silver { color: #d1d5db; }
.desire-tier-bronze { color: var(--bronze); }

.desire-body { font-size: 0.875rem; color: #d1d5db; font-style: italic; border-left: 2px solid rgba(159,18,57,0.5); padding-left: 1.25rem; padding-top: 0.5rem; padding-bottom: 0.5rem; white-space: pre-wrap; line-height: 1.8; position: relative; z-index: 10; margin-top: 1.5rem; border-top: 1px solid rgba(159,18,57,0.3); }
@media (min-width: 768px) { .desire-body { font-size: 1rem; } }

.desire-footer { margin-top: 2rem; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 10; flex-wrap: wrap; justify-content: space-between; align-items: center; }
@media (min-width: 640px) { .desire-footer { flex-direction: row; justify-content: space-between; align-items: center; } }
.desire-meta { display: flex; align-items: center; gap: 0.75rem; }
.desire-region { font-size: 11px; color: var(--text-muted); font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; background: rgba(0,0,0,0.4); padding: 0.375rem 0.75rem; border-radius: 0.375rem; border: 1px solid rgba(255,255,255,0.05); }
.desire-date { font-size: 11px; color: var(--text-hint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }

.desire-actions { display: flex; justify-content: flex-end; width: 100%; }
@media (min-width: 640px) { .desire-actions { width: auto; } }

.btn-reply { font-size: 11px; background: #9f1239; color: white; padding: 0.75rem 2rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; box-shadow: 0 0 15px var(--accent-glow); transition: all 0.3s; border: 1px solid rgba(190,18,60,0.5); min-height: 44px; display: inline-flex; align-items: center; cursor: pointer; }
.btn-reply:hover { background: #be123c; transform: scale(1.05); }
.btn-reply-locked { font-size: 11px; background: linear-gradient(to right, #a16207, #ca8a04); color: black; padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; box-shadow: 0 0 15px rgba(202,138,4,0.3); transition: transform 0.3s; min-height: 44px; display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer; }
.btn-reply-locked:hover { transform: scale(1.05); }
.btn-delete { font-size: 11px; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary); padding: 0.625rem 1.25rem; border-radius: var(--radius-full); text-transform: uppercase; font-weight: 900; letter-spacing: 0.2em; transition: all 0.3s; min-height: 44px; display: inline-flex; align-items: center; cursor: pointer; }
.btn-delete:hover { background: rgba(76,5,25,0.6); border-color: #be123c; color: white; }
.desire-mine-label { font-size: 11px; color: var(--text-muted); font-weight: 900; font-style: italic; letter-spacing: 0.15em; text-transform: uppercase; display: none; }
@media (min-width: 768px) { .desire-mine-label { display: inline; } }

/* Squelettes Annonces */
.skel-card { padding: 1.5rem 2.5rem; border-radius: var(--radius-card); background: rgba(5,2,3,0.5); border: 1px solid rgba(255,255,255,0.05); }
.skel-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem; }
.skel-avatar { width: 5rem; height: 5rem; border-radius: 50%; background: rgba(255,255,255,0.08); flex-shrink: 0; animation: shimmer 1.5s infinite; background-size: 200% 100%; background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%); }
.skel-lines { flex-grow: 1; }
.skel-line { height: 1rem; border-radius: 0.375rem; margin-bottom: 0.75rem; background: rgba(255,255,255,0.06); }
.skel-line-half { width: 50%; }
.skel-line-quarter { width: 25%; }
.skel-body { margin-bottom: 2rem; }
.skel-body-line { height: 0.75rem; background: rgba(255,255,255,0.04); border-radius: 0.25rem; margin-bottom: 0.5rem; }
.skel-body-line-75 { width: 75%; }
.skel-footer { display: flex; justify-content: space-between; align-items: center; }
.skel-tag { height: 0.75rem; background: rgba(255,255,255,0.08); border-radius: 0.25rem; width: 25%; }
.skel-btn { height: 2rem; background: rgba(159,18,57,0.2); border-radius: var(--radius-full); width: 6rem; }


/* ==========================================================================
   14. PROFIL DÉTAILLÉ (Vue Publique & Édition)
   ========================================================================== */
.profil-card { overflow: hidden; display: flex; flex-direction: column; min-height: 50vh; box-shadow: 0 20px 40px rgba(0,0,0,0.6); position: relative; border-top: 1px solid rgba(159,18,57,0.2); border-radius: 0; margin-top: 2rem; }
@media (min-width: 768px) { .profil-card { flex-direction: row; min-height: 550px; border-radius: 3rem; } }
.profil-photo-side { width: 100%; position: relative; aspect-ratio: 1; overflow: hidden; }
@media (min-width: 768px) { .profil-photo-side { width: 50%; aspect-ratio: auto; } }
.profil-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.profil-card:hover .profil-photo { transform: scale(1.05); }
.profil-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-primary) 0%, rgba(3,3,3,0.4) 40%, transparent 100%); }
.badge-vip { display: none; position: absolute; top: 1rem; left: 1rem; z-index: 20; padding: 0.625rem 1.25rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; box-shadow: 0 4px 20px rgba(0,0,0,0.5); font-style: italic; }
@media (min-width: 768px) { .badge-vip { top: 1.5rem; left: 1.5rem; } }
.badge-vip-gold { display: block; background: linear-gradient(to right, #ca8a04, #facc15); color: black; border: 1px solid rgba(250,204,21,0.5); }
.badge-vip-silver { display: block; background: #d1d5db; color: black; border: 1px solid rgba(209,213,219,0.5); }
.badge-vip-bronze { display: block; background: #c2410c; color: white; border: 1px solid rgba(249,115,22,0.5); }
.online-dot-profil { display: none; position: absolute; bottom: 1.5rem; right: 1.5rem; width: 1.5rem; height: 1.5rem; background: var(--online); border: 4px solid var(--bg-primary); border-radius: 50%; box-shadow: 0 0 15px rgba(16,185,129,0.8); animation: pulse 2s infinite; z-index: 20; }
.online-dot-profil.visible { display: block; }
.profil-info-side { width: 100%; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; margin-top: -5rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .profil-info-side { width: 50%; padding: 3.5rem; margin-top: 0; } }
.profil-pseudo { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.8)); line-height: 1.1; margin-bottom: 1rem; }
.profil-role { color: var(--accent); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; font-style: italic; border-left: 4px solid #be123c; padding-left: 1rem; padding-top: 0.25rem; padding-bottom: 0.25rem; }
@media (min-width: 768px) { .profil-role { font-size: 0.875rem; } }
.profil-role-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(159,18,57,0.3); padding-bottom: 1.5rem; }

/* Stats rapides (Age, Region, Role BDSM) */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .stats-grid { gap: 1.25rem; } }
.stat-box { background: rgba(10,5,8,0.6); padding: 1rem 1.25rem; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.05); text-align: center; box-shadow: inset 0 2px 8px rgba(0,0,0,0.3); }
.stat-label { font-size: 11px; font-weight: 900; color: #881337; text-transform: uppercase; display: block; margin-bottom: 0.375rem; letter-spacing: 0.15em; }
.stat-value { font-size: 12px; font-weight: 700; color: #e5e7eb; text-transform: uppercase; display: block; font-style: italic; letter-spacing: -0.05em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (min-width: 768px) { .stat-value { font-size: 0.875rem; } }

/* Boutons d'action sur le profil */
.profil-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
@media (min-width: 768px) { .profil-actions { margin-top: 2.5rem; } }
.btn-chat { display: none; align-items: center; justify-content: center; text-align: center; background: var(--accent-dark); color: white; padding: 1.25rem 2.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; transition: all 0.3s; box-shadow: 0 0 20px var(--accent-glow); border: 1px solid rgba(190,18,60,0.5); min-height: 44px; cursor: pointer; text-decoration: none; }
@media (min-width: 768px) { .btn-chat { font-size: 12px; } }
.btn-chat:hover { background: #be123c; box-shadow: 0 0 30px rgba(225,29,72,0.6); transform: scale(1.02); }
.btn-chat.visible { display: inline-flex; }
.btn-chat.locked { background: linear-gradient(to right, #a16207, #ca8a04); color: black; box-shadow: 0 0 20px rgba(202,138,4,0.4); border: none; }
.btn-chat.locked:hover { transform: scale(1.02); }

.btn-like-profil { display: none; align-items: center; justify-content: center; width: 100%; text-align: center; background: var(--bg-input); color: var(--accent); border: 1px solid rgba(159,18,57,0.5); padding: 1.25rem 2.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.5); min-height: 44px; cursor: pointer; }
@media (min-width: 768px) { .btn-like-profil { font-size: 12px; } }
.btn-like-profil:hover { background: rgba(76,5,25,0.4); box-shadow: 0 0 20px rgba(225,29,72,0.2); transform: scale(1.02); }
.btn-like-profil.visible { display: inline-flex; }
.btn-like-profil.loading { opacity: 0.5; pointer-events: none; }

/* Pratiques & Grilles */
.pratiques-container { background: rgba(5,2,3,0.8); padding: 1.25rem; border-radius: var(--radius-card); border: 1px solid rgba(255,255,255,0.05); max-height: 600px; overflow-y: auto; box-shadow: inset 0 0 30px rgba(0,0,0,0.8); }
@media (min-width: 768px) { .pratiques-container { padding: 2.5rem; } }
.pratiques-container::-webkit-scrollbar { width: 6px; }
.pratiques-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.3); border-radius: 10px; }
.pratiques-container::-webkit-scrollbar-thumb { background: #881337; border-radius: 10px; }
.pratiques-container::-webkit-scrollbar-thumb:hover { background: #be123c; }

.prat-category { margin-top: 2.5rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(159,18,57,0.3); padding-bottom: 0.5rem; }
.prat-category:first-child { margin-top: 0; }
.prat-category-title { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.4em; font-style: italic; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }

.prat-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.prat-label { cursor: pointer; flex: 1 1 auto; min-width: calc(50% - 0.5rem); }
@media (min-width: 768px) { .prat-label { min-width: auto; flex: 0 1 auto; } }
.prat-check { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.prat-pill { width: 100%; height: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-input); background: var(--bg-input); border: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); text-align: center; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; font-style: italic; display: flex; align-items: center; justify-content: center; transition: all 0.2s; white-space: normal; line-height: 1.4; }
.prat-label:hover .prat-pill { color: #d1d5db; border-color: rgba(255,255,255,0.2); }
.prat-check:checked + .prat-pill { background: rgba(76,5,25,0.6); border-color: var(--accent); color: white; box-shadow: inset 0 0 20px rgba(225,29,72,0.4); }

.pratiques-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.pratique-tag { display: inline-flex; align-items: center; background: var(--bg-input); border: 1px solid rgba(159,18,57,0.4); padding: 0.75rem 1.25rem; border-radius: var(--radius-full); font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; box-shadow: inset 0 2px 4px rgba(0,0,0,0.3); }
.pratique-empty { color: var(--text-muted); font-size: 12px; font-style: italic; font-weight: 500; }

/* Galerie (Profil public et Édition) */
.galerie-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .galerie-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.galerie-item, .galerie-thumb { aspect-ratio: 1; border-radius: 2rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); position: relative; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.galerie-thumb { border: 2px solid rgba(159,18,57,0.2); }
.galerie-item img, .galerie-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.galerie-item:hover img, .galerie-thumb:hover img { transform: scale(1.1); }

.galerie-empty { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 2rem; text-align: center; background: rgba(0,0,0,0.3); border: 1px dashed rgba(159,18,57,0.4); border-radius: var(--radius-lg); color: var(--text-hint); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; box-shadow: inset 0 4px 20px rgba(0,0,0,0.4); }
.galerie-empty::before { content: '📸'; font-size: 2rem; opacity: 0.4; margin-bottom: 0.75rem; display: block; filter: grayscale(1); }

.galerie-thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; backdrop-filter: blur(3px); }
.galerie-thumb:hover .galerie-thumb-overlay { opacity: 1; }

.galerie-delete { position: absolute; top: 0.5rem; right: 0.5rem; background: rgba(159, 18, 57, 0.9); color: white; border: none; border-radius: 50%; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); transition: transform 0.2s, background 0.2s; padding: 0; z-index: 20; }
.galerie-delete:hover, .galerie-delete:active { background: #be123c; transform: scale(1.1); }
.galerie-delete svg { width: 1.25rem; height: 1.25rem; pointer-events: none; }

.galerie-locked { display: block; aspect-ratio: 1; border-radius: 2rem; overflow: hidden; border: 1px solid rgba(202,138,4,0.4); position: relative; box-shadow: 0 0 20px rgba(202,138,4,0.15); background: rgba(113,63,18,0.1); }
.galerie-locked img { width: 100%; height: 100%; object-fit: cover; filter: blur(20px); transform: scale(1.1); opacity: 0.4; mix-blend-mode: luminosity; }
.galerie-locked-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), rgba(0,0,0,0.9)); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; text-align: center; }
.galerie-locked-icon { font-size: 2rem; margin-bottom: 0.75rem; filter: drop-shadow(0 0 10px var(--gold-glow)); }
.galerie-locked-text { font-size: 11px; font-weight: 900; text-transform: uppercase; color: var(--gold); letter-spacing: 0.3em; font-style: italic; line-height: 1.6; }


/* ==========================================================================
   15. MESSAGERIE (Chat.html & Boîte de réception)
   ========================================================================== */

/* Zone Principale et Contexte */
.zone-principale { flex-grow: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; width: 100%; max-width: 56rem; margin: 0 auto; position: relative; z-index: 10; scroll-behavior: smooth; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; gap: 0.75rem; }
@media (min-width: 768px) { .zone-principale { padding: 1.5rem; } }
.zone-principale.inbox-mode { gap: 1rem; padding-bottom: 6rem; }

.context-banner { display: none; background: linear-gradient(to right, rgba(76,5,25,0.8), rgba(10,5,8,0.8)); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(159,18,57,0.5); padding: 1rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.5); z-index: 40; }
.context-banner.visible { display: block; }
.context-inner { max-width: 56rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 0.5rem; }
.context-left { display: flex; align-items: center; gap: 1rem; min-width: 0; padding-right: 1rem; }
.context-icon { color: var(--accent); font-size: 1.25rem; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(225,29,72,0.5)); }
.context-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; font-weight: 900; letter-spacing: 0.15em; font-style: italic; margin-bottom: 0.25rem; }
.context-title { font-weight: 700; color: white; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: 0.1em; font-style: italic; }
.context-close { color: var(--text-muted); width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; cursor: pointer; }
.context-close:hover { color: white; background: rgba(159,18,57,0.4); }

/* Header Chat Spécifique */
.chat-target { display: flex; align-items: center; gap: 0.75rem; min-width: 0; pointer-events: none; }
.chat-target.linked { pointer-events: auto; }
.chat-target-info { display: flex; flex-direction: column; justify-content: center; overflow: hidden; min-width: 0; padding-right: 0.5rem; }
.chat-target-pseudo { font-weight: 900; color: white; text-transform: uppercase; font-size: 12px; letter-spacing: 0.15em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-style: italic; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .chat-target-pseudo { font-size: 0.875rem; } }
.chat-target-pseudo.gold { color: var(--gold); }
.chat-target-pseudo.silver { color: #d1d5db; }
.chat-target-status { font-size: 0.75rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.chat-target-avatar-wrap { position: relative !important; display: flex !important; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-target-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(159,18,57,0.8); box-shadow: 0 0 15px rgba(225,29,72,0.2); position: relative; z-index: 10; display: block; }
@media (min-width: 768px) { .chat-target-avatar { width: 2.75rem; height: 2.75rem; } }
.chat-target-online { display: none; position: absolute !important; top: 5% !important; right: 5% !important; bottom: auto !important; width: 14px !important; height: 14px !important; background-color: #10b981 !important; border: 2px solid #030303 !important; border-radius: 50% !important; z-index: 10 !important; transform: translate(25%, -25%); }
.chat-target-online.visible { display: block; }

/* Liste des discussions (Inbox) */
.inbox-item { position: relative; }
.inbox-link { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-card); border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; background: rgba(10,5,8,0.5); backdrop-filter: blur(25px); cursor: pointer; }
@media (min-width: 768px) { .inbox-link { padding: 1.5rem; gap: 1.5rem; } }
.inbox-link:hover { border-color: rgba(159,18,57,0.5); transform: translateY(-2px); }
.inbox-link.unread { border-color: var(--accent); box-shadow: 0 0 20px rgba(225,29,72,0.2); background: rgba(76,5,25,0.2); }
.inbox-avatar-wrap { position: relative; flex-shrink: 0; }
.inbox-avatar { width: 3.5rem; height: 3.5rem; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(159,18,57,0.5); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .inbox-avatar { width: 4rem; height: 4rem; } }
.inbox-online { position: absolute; top: 0; right: 0; width: 0.875rem; height: 0.875rem; background: var(--online); border-radius: 50%; border: 2px solid #050203; box-shadow: 0 0 8px rgba(16,185,129,0.8); animation: pulse 2s infinite; display: none; }
.inbox-online.visible { display: block; }
.inbox-info { flex-grow: 1; min-width: 0; padding-right: 3rem; }
.inbox-name-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.375rem; gap: 0.5rem; }
.inbox-name { font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.15em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-style: italic; color: #d1d5db; flex: 1; min-width: 0; }
@media (min-width: 768px) { .inbox-name { font-size: 12px; } }
.inbox-name.unread { color: white; }
.inbox-badge-new { background: #be123c; color: white; font-size: 11px; padding: 0.25rem 0.625rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; box-shadow: 0 0 10px rgba(225,29,72,0.5); flex-shrink: 0; }
.inbox-preview { font-size: 12px; color: var(--text-muted); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: 0.05em; font-style: italic; }
@media (min-width: 768px) { .inbox-preview { font-size: 0.875rem; } }
.inbox-preview.unread { color: #e5e7eb; font-weight: 700; }
.inbox-delete { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; background: rgba(0,0,0,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; z-index: 20; border: 1px solid rgba(159,18,57,0.5); backdrop-filter: blur(12px); box-shadow: 0 4px 12px rgba(0,0,0,0.5); min-height: 44px; cursor: pointer; }
.inbox-delete:hover { background: #9f1239; color: white; }
.inbox-delete svg { width: 1rem; height: 1rem; }
.inbox-empty { text-align: center; color: var(--text-hint); margin-top: 8rem; font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.4em; font-style: italic; border: 1px dashed rgba(159,18,57,0.3); padding: 2.5rem; border-radius: var(--radius-card); }

/* Bulles de Chat */
.bubble-row { display: flex; width: 100%; flex-shrink: 0; }
.bubble-row.me { justify-content: flex-end; }
.bubble-row.other { justify-content: flex-start; }
.bubble { padding: 1rem 1.25rem; max-width: 85%; font-size: 15px; line-height: 1.6; font-weight: 500; word-break: break-word; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
@media (min-width: 768px) { .bubble { max-width: 75%; padding: 1.25rem; } }
.bubble.me { border-radius: 1rem 1rem 0.25rem 1rem; color: white; background: linear-gradient(135deg,#881337,#4c0519); border: 1px solid rgba(225,29,72,0.3); }
.bubble.other { border-radius: 1rem 1rem 1rem 0.25rem; color: #e5e7eb; background: rgba(20,20,20,0.8); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.chat-empty { text-align: center; color: rgba(136,19,55,0.5); font-size: 11px; text-transform: uppercase; font-weight: 900; margin-top: 2.5rem; letter-spacing: 0.5em; font-style: italic; }

/* Barre d'envoi et Indicateur de frappe */
.typing-indicator { display: none; flex-shrink: 0; width: 100%; max-width: 56rem; margin: 0 auto; padding: 0 1rem 0.5rem; z-index: 10; }
.typing-indicator.visible { display: block; }
.typing-inner { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; margin-left: 0.5rem; }
.typing-dots { display: flex; gap: 0.25rem; padding-top: 0.25rem; }
.typing-dot { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }

.send-bar { display: none; flex-shrink: 0; padding-bottom: calc(var(--safe-bottom) + 12px); padding-top: 1rem; padding-left: 1rem; padding-right: 1rem; border-top: 1px solid rgba(159,18,57,0.3); z-index: 50; background: rgba(5,2,3,0.85); backdrop-filter: blur(30px); }
.send-bar.visible { display: block; }
.input-block { display: none; max-width: 56rem; margin: 0 auto; width: 100%; }
.input-block.visible { display: block; }
.send-form { display: flex; gap: 0.5rem; width: 100%; position: relative; }
.send-input { flex-grow: 1; background: var(--bg-input); border: 1px solid rgba(159,18,57,0.4); border-radius: var(--radius-full); padding: 1rem 6rem 1rem 1.5rem; color: white; outline: none; font-weight: 500; font-size: 16px !important; box-shadow: inset 0 2px 8px rgba(0,0,0,0.3); transition: border-color 0.3s; font-family: inherit; }
.send-input::placeholder { color: var(--text-hint); }
.send-input:focus { border-color: var(--accent); }
.btn-send { position: absolute; right: 0.375rem; top: 0.375rem; bottom: 0.375rem; background: #9f1239; color: white; padding: 0 1.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.2em; box-shadow: 0 0 15px var(--accent-glow); transition: all 0.3s; border: 1px solid rgba(190,18,60,0.7); min-height: 44px; font-family: inherit; cursor: pointer; }
.btn-send:hover { background: #be123c; }

/* Blocage VIP Chat */
.lock-block { display: none; max-width: 36rem; margin: 0 auto; width: 100%; }
.lock-block.visible { display: block; }
.lock-card { padding: 1.25rem; border-radius: 2rem; border: 1px solid rgba(202,138,4,0.4); text-align: center; box-shadow: 0 0 30px rgba(202,138,4,0.15); background: rgba(113,63,18,0.1); position: relative; overflow: hidden; }
.lock-title { font-size: 11px; color: var(--gold); margin-bottom: 0.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; font-style: italic; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); position: relative; z-index: 10; }
.lock-text { font-size: 11px; color: #d1d5db; margin-bottom: 1rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.15em; position: relative; z-index: 10; }
.lock-btn { display: inline-flex; align-items: center; background: linear-gradient(to right, #ca8a04, #eab308); color: black; padding: 0.875rem 2.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; box-shadow: 0 0 20px rgba(202,138,4,0.4); transition: transform 0.3s; min-height: 44px; border: none; position: relative; z-index: 10; cursor: pointer; text-decoration: none; }
.lock-btn:hover { transform: scale(1.05); }


/* ==========================================================================
   16. ABONNEMENTS VIP & PAIEMENT
   ========================================================================== */
.pricing-header { text-align: center; width: 100%; margin-bottom: 4rem; }
@media (min-width: 768px) { .pricing-header { margin-bottom: 5rem; } }
.pricing-title { font-size: 2rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; filter: drop-shadow(0 0 15px rgba(225,29,72,0.2)); margin-bottom: 1rem; }
@media (min-width: 768px) { .pricing-title { font-size: 3.5rem; } }
.pricing-title-accent { color: #be123c; }
.pricing-subtitle { font-size: 11px; color: rgba(225,29,72,0.6); text-transform: uppercase; letter-spacing: 0.4em; font-weight: 900; font-style: italic; }
@media (min-width: 768px) { .pricing-subtitle { font-size: 12px; } }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; width: 100%; max-width: 64rem; margin: 0 auto; align-items: stretch; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.price-card { border-radius: 3rem; padding: 2rem 2.5rem; display: flex; flex-direction: column; position: relative; transition: transform 0.4s; }
.price-card:hover { transform: translateY(-8px); z-index: 30; }
.card-watermark { position: absolute; right: -1.5rem; top: -2.5rem; font-size: 8rem; font-weight: 900; font-style: italic; user-select: none; pointer-events: none; }

.card-bronze { border-color: rgba(234,88,12,0.3); background: linear-gradient(145deg, rgba(25,10,5,0.8), rgba(10,5,2,0.95)); position: relative; z-index: 10; }
.card-bronze .card-watermark { color: rgba(154,52,18,0.08); }
.card-silver { border: 1px solid rgba(225,29,72,0.5); background: linear-gradient(145deg, rgba(30,10,15,0.9), rgba(15,5,8,0.95)); box-shadow: 0 0 50px rgba(225,29,72,0.15), inset 0 0 20px rgba(225,29,72,0.05); position: relative; z-index: 20; }
.card-silver .card-watermark { color: rgba(159,18,57,0.08); }
.card-gold { border: 2px solid rgba(234,179,8,0.4); background: linear-gradient(145deg, rgba(30,20,5,0.9), rgba(10,8,2,0.95)); box-shadow: 0 0 40px rgba(234,179,8,0.15), inset 0 0 20px rgba(234,179,8,0.05); position: relative; z-index: 10; }
.card-gold .card-watermark { color: rgba(202,138,4,0.08); }
@media (min-width: 1024px) { .card-silver { transform: scale(1.05); margin-top: -1.5rem; margin-bottom: -1.5rem; padding: 2.5rem 2.5rem; } .card-silver:hover { transform: scale(1.08); } }

.card-recommended { position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); background: #9f1239; color: white; font-size: 11px; text-transform: uppercase; font-weight: 900; padding: 0.5rem 1.5rem; border-radius: var(--radius-full); letter-spacing: 0.15em; box-shadow: 0 0 15px rgba(225,29,72,0.6); border: 1px solid rgba(190,18,60,0.5); z-index: 30; }
.pack-name { font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 1rem; font-size: 12px; font-style: italic; }
.pack-name-bronze { color: var(--bronze); }
.pack-name-silver { color: var(--accent); }
@media (min-width: 768px) { .pack-name-silver { font-size: 0.875rem; } }
.pack-name-gold { color: var(--gold); filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }

.pack-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 2.5rem; position: relative; z-index: 10; }
.pack-amount { font-weight: 900; color: white; letter-spacing: -0.05em; font-style: italic; }
.pack-amount-sm { font-size: 3.5rem; }
.pack-amount-md { font-size: 4.5rem; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.pack-currency { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.pack-currency-bronze { color: var(--text-muted); }
.pack-currency-silver { color: #881337; }
.pack-currency-gold { color: #854d0e; }

.pack-features { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem; flex-grow: 1; position: relative; z-index: 10; }
.pack-feature { display: flex; align-items: center; gap: 1rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }
.pf-icon { flex-shrink: 0; }
.pf-bronze { color: var(--text-secondary); }
.pf-bronze .pf-icon { color: #9a3412; font-size: 1.25rem; }
.pf-silver { color: #e5e7eb; }
.pf-silver .pf-icon { color: var(--accent); font-size: 1.5rem; font-weight: 900; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.pf-silver strong { color: white; }
.pf-gold { color: var(--text-secondary); }
.pf-gold .pf-icon { color: #ca8a04; font-size: 1.25rem; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.pf-gold.highlight { color: var(--gold); }
.pf-gold.highlight strong { color: var(--gold); }
.pf-gold-light { color: #d1d5db; }

.btn-pay { width: 100%; padding: 1.25rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; transition: all 0.3s; min-height: 44px; position: relative; z-index: 10; font-family: inherit; cursor: pointer; }
.btn-pay-bronze { background: #050203; color: white; border: 1px solid rgba(154,52,18,0.5); }
.btn-pay-bronze:hover { background: rgba(113,63,18,0.4); border-color: rgba(249,115,22,0.5); }
.btn-pay-silver { background: #9f1239; color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 25px var(--accent-glow); }
.btn-pay-silver:hover { background: #be123c; }
@media (min-width: 768px) { .btn-pay-silver { font-size: 12px; } }
.btn-pay-gold { background: linear-gradient(to right, #ca8a04, #eab308); color: black; border: none; box-shadow: 0 0 20px rgba(234,179,8,0.3); }
.btn-pay-gold:hover { transform: scale(1.03); }

.pricing-disclaimer { margin-top: 5rem; font-size: 11px; color: var(--text-hint); text-transform: uppercase; font-weight: 900; letter-spacing: 0.4em; text-align: center; max-width: 36rem; line-height: 1.8; font-style: italic; position: relative; z-index: 10; border: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.4); padding: 1.5rem; border-radius: var(--radius-lg); }

/* Cartes "Mon Abonnement Actif" */
.vip-main-card { border-radius: 3rem; padding: 2rem; position: relative; overflow: hidden; margin-bottom: 3rem; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .vip-main-card { padding: 3.5rem; } }
.vip-card-gold { background: linear-gradient(135deg, rgba(234,179,8,0.1), rgba(161,98,7,0.2)); border: 1px solid rgba(234,179,8,0.5); box-shadow: 0 0 50px rgba(234,179,8,0.15), inset 0 0 20px rgba(234,179,8,0.1); }
.vip-card-silver { background: linear-gradient(135deg, rgba(225,29,72,0.08), rgba(159,18,57,0.15)); border: 1px solid rgba(225,29,72,0.4); box-shadow: 0 0 30px rgba(225,29,72,0.1); }
.vip-card-bronze { background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(194,65,12,0.15)); border: 1px solid rgba(249,115,22,0.4); }
.vip-watermark { position: absolute; right: -1.5rem; top: -2.5rem; font-size: 8rem; font-weight: 900; color: rgba(255,255,255,0.04); font-style: italic; user-select: none; pointer-events: none; }
@media (min-width: 768px) { .vip-watermark { font-size: 12rem; } }
.vip-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .vip-header { margin-bottom: 6rem; } }
.vip-label { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; font-style: italic; margin-bottom: 0.5rem; }
.vip-pack-name { font-size: 1.875rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .vip-pack-name { font-size: 3rem; } }
.vip-icon-box { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 2rem; box-shadow: 0 0 20px rgba(0,0,0,0.8); font-size: 2.5rem; display: flex; align-items: center; justify-content: center; min-width: 5rem; backdrop-filter: blur(12px); }
.vip-footer { display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; position: relative; z-index: 10; flex-wrap: wrap; gap: 1.5rem; }
.vip-holder-label { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; font-style: italic; margin-bottom: 0.5rem; }
.vip-holder-name { font-size: 1.125rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }
@media (min-width: 768px) { .vip-holder-name { font-size: 1.25rem; } }
.vip-date-section { text-align: right; }
.vip-date-tag { color: white; background: rgba(0,0,0,0.4); padding: 0.25rem 0.5rem; border-radius: 0.375rem; margin-left: 0.25rem; font-weight: 700; }
.vip-renewal { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; margin-top: 0.5rem; }
.status-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }
.status-dot-green { background: var(--online); animation: pulse 2s infinite; box-shadow: 0 0 10px rgba(34,197,94,0.5); }
.status-dot-orange { background: var(--bronze); box-shadow: 0 0 10px rgba(249,115,22,0.5); }

/* Avantages Actifs */
.vip-details-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .vip-details-grid { grid-template-columns: 2fr 1fr; gap: 2rem; } }
.benefits-box { padding: 2rem; border-radius: var(--radius-card); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .benefits-box { padding: 3rem; } }
.benefits-title { color: white; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 2.5rem; font-size: 12px; display: flex; align-items: center; gap: 1rem; font-style: italic; }
.benefits-list { display: flex; flex-direction: column; gap: 1.5rem; list-style: none; }
.benefit-item { display: flex; align-items: center; gap: 1rem; font-size: 11px; font-weight: 700; color: #d1d5db; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; line-height: 1.6; }
@media (min-width: 768px) { .benefit-item { font-size: 12px; } }
.benefit-check { font-size: 1.25rem; flex-shrink: 0; }
.benefit-item.disabled { opacity: 0.3; }

/* Section Résiliation */
.resign-box { padding: 2rem; border-radius: var(--radius-card); display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(76,5,25,0.5); background: var(--bg-input); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .resign-box { padding: 3rem; } }
.resign-title { color: #be123c; font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 1.5rem; font-size: 12px; font-style: italic; }
.resign-text { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 2.5rem; line-height: 1.8; font-style: italic; border-left: 2px solid rgba(159,18,57,0.3); padding-left: 1rem; }
.btn-resign { width: 100%; background: transparent; border: 1px solid rgba(159,18,57,0.5); color: var(--accent); padding: 1.25rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; transition: all 0.3s; min-height: 44px; font-family: inherit; cursor: pointer; }
.btn-resign:hover { background: rgba(76,5,25,0.4); transform: translateY(-4px); }

/* Section Upgrade (Passer à un rang supérieur) */
.upgrade-section { margin-top: 6rem; border-top: 1px solid rgba(159,18,57,0.3); padding-top: 5rem; position: relative; display: none; }
.upgrade-section.visible { display: block; }
.upgrade-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 8rem; height: 0.25rem; background: rgba(190,18,60,0.5); filter: blur(2px); }
.upgrade-header { text-align: center; margin-bottom: 4rem; }
.upgrade-title { font-size: 1.875rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; margin-bottom: 1rem; }
@media (min-width: 768px) { .upgrade-title { font-size: 3rem; } }
.upgrade-title-accent { color: #be123c; filter: drop-shadow(0 0 15px var(--accent-glow)); }
.upgrade-subtitle { font-size: 11px; color: var(--text-muted); text-transform: uppercase; font-weight: 900; letter-spacing: 0.5em; font-style: italic; }
@media (min-width: 768px) { .upgrade-subtitle { font-size: 12px; } }
.upgrade-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; align-items: center; }
@media (min-width: 768px) { .upgrade-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.upgrade-grid.single { display: flex; justify-content: center; }
.upgrade-grid.single > * { max-width: 32rem; width: 100%; }

.btn-upgrade-silver { width: 100%; background: var(--accent-dark); color: white; padding: 1.25rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; box-shadow: 0 0 20px var(--accent-glow); transition: all 0.3s; border: 1px solid rgba(190,18,60,0.5); min-height: 44px; font-family: inherit; cursor: pointer; }
.btn-upgrade-silver:hover { background: #be123c; transform: scale(1.05); }
.btn-upgrade-gold { width: 100%; background: linear-gradient(to right, #ca8a04, #eab308); color: black; padding: 1.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; box-shadow: 0 0 30px rgba(202,138,4,0.4); transition: all 0.3s; border: none; min-height: 44px; font-family: inherit; position: relative; z-index: 10; cursor: pointer; }
@media (min-width: 768px) { .btn-upgrade-gold { font-size: 12px; } }
.btn-upgrade-gold:hover { transform: scale(1.05); }
.btn-upgrade-gold:active { transform: scale(0.95); }

/* État "Aucun Abonnement" */
.not-vip { display: none; text-align: center; padding: 6rem 2rem; border-radius: 3.5rem; border: 2px dashed rgba(159,18,57,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.6); position: relative; overflow: hidden; background: rgba(5,2,3,0.8); }
.not-vip.visible { display: block; }
.not-vip-icon { display: inline-flex; padding: 2rem; background: rgba(76,5,25,0.4); border: 1px solid rgba(159,18,57,0.5); border-radius: 50%; color: #be123c; box-shadow: inset 0 0 20px rgba(0,0,0,0.8); margin-bottom: 2.5rem; position: relative; z-index: 10; }
.not-vip-icon svg { width: 3.5rem; height: 3.5rem; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.not-vip-title { font-size: 1.875rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; margin-bottom: 1rem; position: relative; z-index: 10; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .not-vip-title { font-size: 3rem; } }
.not-vip-subtitle { color: var(--text-muted); font-size: 11px; text-transform: uppercase; font-weight: 900; letter-spacing: 0.4em; font-style: italic; margin-bottom: 3rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .not-vip-subtitle { font-size: 12px; } }
.btn-discover { display: inline-flex; align-items: center; background: var(--accent-dark); color: white; padding: 1.5rem 3.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; box-shadow: 0 0 30px var(--accent-glow); transition: all 0.3s; border: 1px solid rgba(190,18,60,0.5); min-height: 44px; position: relative; z-index: 10; cursor: pointer; }
@media (min-width: 768px) { .btn-discover { font-size: 12px; } }
.btn-discover:hover { background: #be123c; transform: scale(1.05); }


/* ==========================================================================
   17. ADMINISTRATION (TABLEAUX & STATS)
   ========================================================================== */
.table-wrap { border-radius: var(--radius-card); overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; text-align: left; font-size: 12px; white-space: nowrap; border-collapse: collapse; }
@media (min-width: 1024px) { table { white-space: normal; } }
thead { background: #050203; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; font-style: italic; }
thead.thead-accent { color: #881337; border-bottom: 1px solid rgba(159,18,57,0.3); }
thead.thead-orange { color: #9a3412; border-bottom: 1px solid rgba(154,52,18,0.3); }
thead.thead-gray { color: var(--text-hint); border-bottom: 1px solid rgba(255,255,255,0.1); }
th { padding: 1.5rem; }
td { padding: 1.25rem 1.5rem; }
tbody tr { border-bottom: 1px solid rgba(255,255,255,0.03); transition: background 0.2s; }
tbody tr:hover { background: rgba(255,255,255,0.03); }
.row-accent:hover { background: rgba(76,5,25,0.2) !important; }
.row-orange:hover { background: rgba(113,63,18,0.2) !important; }
.row-banned { opacity: 0.3; filter: grayscale(1); }

.cell-identity { min-width: 250px; }
.cell-pseudo { font-weight: 900; color: white; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; }
.cell-pseudo-banned { text-decoration: line-through; color: #be123c; }
.cell-email { font-size: 11px; color: var(--text-muted); margin-top: 0.25rem; letter-spacing: 0.15em; }
.cell-motif { font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.cell-motif-accent { color: var(--accent); }
.cell-motif-orange { color: var(--bronze); }
.cell-count { font-weight: 900; text-align: center; font-size: 1.875rem; font-style: italic; color: white; }
.cell-actions { text-align: right; }
.cell-actions > * + * { margin-left: 0.5rem; }
.cell-region { color: var(--text-secondary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-style: italic; }
.cell-content { min-width: 280px; }
.cell-cat { font-weight: 900; color: var(--accent); text-transform: uppercase; font-size: 11px; letter-spacing: 0.15em; font-style: italic; }
.cell-excerpt { font-size: 11px; color: var(--text-secondary); margin-top: 0.5rem; white-space: normal; word-break: break-word; padding-left: 0.75rem; border-left: 1px solid rgba(255,255,255,0.1); }
.cell-author { font-size: 11px; color: var(--text-hint); font-weight: 700; margin-top: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; }
.cell-author span { color: #d1d5db; }

/* Boutons d'Action Admin */
.btn-admin-action { padding: 0.75rem 1.25rem; border-radius: var(--radius-full); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; transition: all 0.3s; min-height: 44px; display: inline-flex; align-items: center; cursor: pointer; }
.btn-ignore { color: var(--text-muted); border: 1px solid rgba(55,65,81,0.8); }
.btn-ignore:hover { background: rgba(55,65,81,0.3); color: white; }
.btn-destroy { color: white; background: var(--accent-dark); box-shadow: 0 0 20px var(--accent-glow); border: none;}
.btn-destroy:hover { background: #be123c; }
.btn-sanction { color: white; background: #9a3412; box-shadow: 0 0 20px rgba(234,88,12,0.4); border: none; }
.btn-sanction:hover { background: #ea580c; }
.btn-tier { color: #ca8a04; border: 1px solid rgba(113,63,18,0.3); font-size: 11px; }
.btn-tier:hover { background: rgba(113,63,18,0.2); }
.btn-ban { color: var(--accent); border: 1px solid rgba(159,18,57,0.5); }
.btn-ban:hover { background: rgba(76,5,25,0.2); }
.btn-unban { color: #22c55e; border: 1px solid rgba(22,163,74,0.5); }
.btn-unban:hover { background: rgba(22,163,74,0.2); }

.tier-tag { font-size: 11px; font-weight: 900; text-transform: uppercase; font-style: italic; letter-spacing: 0.15em; padding: 0.375rem 0.75rem; border-radius: var(--radius-full); display: inline-flex; align-items: center; }
.tier-standard { color: var(--text-hint); border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.05); }
.tier-bronze { color: var(--bronze); border: 1px solid rgba(249,115,22,0.3); background: rgba(249,115,22,0.1); }
.tier-silver { color: var(--accent); border: 1px solid rgba(225,29,72,0.3); background: rgba(225,29,72,0.1); }
.tier-gold { color: var(--gold); border: 1px solid rgba(234,179,8,0.3); background: rgba(234,179,8,0.1); box-shadow: 0 0 10px rgba(234,179,8,0.2); }
.table-empty { padding: 2.5rem; text-align: center; color: var(--text-hint); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.15em; font-style: italic; }
.member-avatar { width: 3rem; height: 3rem; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.member-row { display: flex; align-items: center; gap: 1rem; }


/* ==========================================================================
   18. PAGES LÉGALES (CGU, Mentions Légales, etc.)
   ========================================================================== */
.legal-section { padding: 2rem; border-radius: var(--radius-card); position: relative; overflow: hidden; margin-top: 3rem; border: 1px solid transparent; transition: border-color 0.3s; }
@media (min-width: 768px) { .legal-section { padding: 3rem; } }
.legal-section:hover { border-color: rgba(107,114,128,0.5); }
.legal-watermark { position: absolute; right: -0.5rem; top: -0.5rem; font-size: 8rem; opacity: 0.04; transition: transform 0.5s; filter: grayscale(1); pointer-events: none; user-select: none; }
.legal-section:hover .legal-watermark { transform: scale(1.1); }
.legal-heading { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; font-style: italic; position: relative; z-index: 10; }
@media (min-width: 768px) { .legal-heading { font-size: 0.875rem; } }
.legal-bar { width: 0.5rem; height: 1.5rem; border-radius: var(--radius-full); flex-shrink: 0; }
.legal-bar-gray { background: var(--text-muted); box-shadow: 0 0 10px rgba(156,163,175,0.5); }
.legal-bar-accent { background: var(--accent); box-shadow: 0 0 15px rgba(225,29,72,0.6); }
.legal-bar-blue { background: #2563eb; box-shadow: 0 0 10px rgba(37,99,235,0.5); }
.legal-bar-purple { background: #9333ea; box-shadow: 0 0 10px rgba(147,51,234,0.5); }
.legal-bar-silver { background: var(--text-secondary); box-shadow: 0 0 10px rgba(156,163,175,0.5); }
.legal-bar-gold { background: #ca8a04; box-shadow: 0 0 15px rgba(202,138,4,0.6); }
.legal-heading-white { color: white; }
.legal-heading-accent { color: var(--accent); }
.legal-text { color: var(--text-secondary); line-height: 1.8; font-size: 0.875rem; font-weight: 500; font-style: italic; position: relative; z-index: 10; }
@media (min-width: 768px) { .legal-text { font-size: 1rem; } }
.legal-text strong { color: white; font-weight: 900; }
.legal-text strong.drop { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.legal-text a { color: var(--accent); font-weight: 900; border-bottom: 1px solid rgba(159,18,57,0.5); padding-bottom: 0.125rem; transition: color 0.2s; font-size: 1.125rem; }
.legal-text a:hover { color: #fb7185; }

/* Thèmes survol Légal */
.section-hover-purple:hover { border-color: rgba(88,28,135,0.5); }
.section-hover-blue:hover { border-color: rgba(30,58,138,0.5); }
.section-hover-white:hover { border-color: rgba(255,255,255,0.2); }
.section-danger { border: 1px solid rgba(225,29,72,0.4) !important; background: linear-gradient(145deg, rgba(20,10,14,0.7), rgba(5,2,4,0.9)), rgba(76,5,25,0.05); }
.section-danger:hover { border-color: rgba(225,29,72,0.6) !important; }
.section-danger .legal-watermark { color: rgba(225,29,72,0.04); filter: none; }
.section-gold { border: 1px solid rgba(113,63,18,0.3) !important; background: linear-gradient(145deg, rgba(20,10,14,0.7), rgba(5,2,4,0.9)), rgba(113,63,18,0.05); }
.section-gold:hover { border-color: rgba(202,138,4,0.4) !important; }
.section-gold .legal-watermark { color: rgba(202,138,4,0.04); filter: none; }

/* Listes Légales */
.legal-list { list-style: none; margin-top: 1rem; border-left: 2px solid rgba(159,18,57,0.4); padding-left: 1.25rem; background: rgba(0,0,0,0.2); padding-top: 1rem; padding-bottom: 1rem; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.legal-list li { margin-bottom: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); font-weight: 500; font-style: italic; }
@media (min-width: 768px) { .legal-list li { font-size: 1rem; } }
.legal-list li:last-child { margin-bottom: 0; }
.legal-list li strong { color: #e5e7eb; }
.cookie-list { list-style: none; margin-top: 1rem; }
.cookie-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: #d1d5db; font-size: 0.875rem; font-weight: 500; font-style: italic; }
@media (min-width: 768px) { .cookie-item { font-size: 1rem; } }
.cookie-item:last-child { margin-bottom: 0; }
.cookie-bullet { color: var(--text-muted); margin-top: 0.25rem; flex-shrink: 0; }
.cookie-note { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); margin-top: 1.25rem; }

.contact-section { border: 1px solid rgba(159,18,57,0.4); background: linear-gradient(145deg, rgba(20,10,14,0.7), rgba(5,2,4,0.9)), rgba(76,5,25,0.05); }
.contact-section:hover { border-color: rgba(225,29,72,0.6); }
.impressum { margin-top: 4rem; width: 100%; display: flex; justify-content: center; }
.impressum-text { font-size: 11px; color: rgba(255,255,255,0.04); text-transform: uppercase; letter-spacing: 0.15em; text-align: center; user-select: none; pointer-events: none; max-width: 24rem; }
.interdit-list { display: block; padding-left: 1rem; border-left: 2px solid rgba(159,18,57,0.5); margin-top: 1rem; }
.interdit-item { display: block; margin-bottom: 0.75rem; color: var(--text-secondary); }
.interdit-item:last-child { margin-bottom: 0; }
.interdit-bullet { color: var(--accent); font-weight: 700; }


/* ==========================================================================
   19. PAGE D'ACCUEIL (Landing Page / INDEX)
   ========================================================================== */
.hero { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; padding: 4rem 1.25rem; text-align: center; position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; }
.badge-elite { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(159,18,57,0.15); border: 1px solid rgba(159,18,57,0.3); padding: 0.375rem 1rem; border-radius: var(--radius-full); margin-bottom: 2rem; }
.badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.badge-text { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; }

.hero-title { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: -0.05em; font-style: italic; filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); }
.text-gradient { background: linear-gradient(to right, #fff, #9ca3af); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 40rem; line-height: 1.8; margin-bottom: 2.5rem; font-style: italic; font-weight: 500; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }

/* Boutons Header Accueil */
.auth-actions { display: none; align-items: center; gap: 1.5rem; }
.auth-actions.visible { display: flex; }
.link-login { font-size: 11px; font-weight: 900; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.2em; transition: color 0.2s; font-style: italic; }
.link-login:hover { color: white; }
.btn-join { background: var(--accent-dark); color: white; padding: 0.625rem 1.5rem; border-radius: var(--radius-full); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 15px var(--accent-glow); transition: all 0.3s; display: inline-flex; align-items: center; min-height: 44px; text-decoration: none;}
.btn-join:hover { background: #be123c; transform: scale(1.05); }

/* Gros Boutons Centraux (Appel à l'action) */
.cta-container { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 20rem; margin: 0 auto 4rem auto; opacity: 0; transition: opacity 0.5s; }
.cta-container.visible { opacity: 1; }
@media (min-width: 640px) { .cta-container { flex-direction: row; max-width: none; justify-content: center; } }
.btn-primary, .btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 1.25rem 2.5rem; border-radius: var(--radius-full); font-weight: 900; text-transform: uppercase; font-size: 11px; letter-spacing: 0.3em; transition: all 0.3s; min-height: 44px; font-family: inherit; cursor: pointer; text-decoration: none; }
@media (min-width: 768px) { .btn-primary, .btn-secondary { font-size: 12px; } }
.btn-primary { background: var(--accent-dark); color: white; border: 1px solid rgba(190,18,60,0.5); box-shadow: 0 0 25px rgba(225,29,72,0.4); }
.btn-primary:hover { background: #be123c; box-shadow: 0 0 35px rgba(225,29,72,0.6); transform: scale(1.05); }
.btn-secondary { background: rgba(0,0,0,0.6); color: white; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(12px); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); transform: scale(1.05); }

/* Blocs de réassurance */
.trust-block { background: rgba(10,5,8,0.6); border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; border-radius: var(--radius-lg); max-width: 32rem; margin: 0 auto 3rem auto; text-align: left; }
.trust-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.trust-icon { width: 1.25rem; height: 1.25rem; color: var(--online); }
.trust-title { font-size: 11px; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; }
.trust-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }
.trust-text strong { color: #d1d5db; }

/* Grille des caractéristiques */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; width: 100%; position: relative; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.features-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(225,29,72,0.05) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.feature-card { padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; position: relative; z-index: 10; }
.feature-icon { font-size: 2rem; }
.feature-label { font-size: 11px; font-weight: 900; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.2em; font-style: italic; line-height: 1.4; }

/* Utils spéciaux Accueil */
.gold-text { color: var(--gold); }
.gold-hover:hover { transform: scale(1.1); transition: transform 0.3s; }

/* SEO & FAQ (Accueil) */
.seo-section, .faq-section { max-width: 48rem; margin: 4rem auto; padding: 0 1.25rem; position: relative; z-index: 10; }
.seo-section h2, .faq-section h2 { font-size: 1.25rem; font-weight: 900; color: white; text-transform: uppercase; letter-spacing: 0.1em; font-style: italic; margin-bottom: 1.5rem; text-align: center; border-bottom: 1px solid rgba(159,18,57,0.3); padding-bottom: 1rem; }
.seo-content p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.8; margin-bottom: 1rem; text-align: justify; }
.seo-content strong { color: #d1d5db; }
.faq-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item h3 { font-size: 0.875rem; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.faq-item p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }