/* ============================================================
   MONWÉ — Feuille de styles principale
   Violet MONWÉ : #7A1FA2  |  Rose MONWÉ : #EC4899
   Typographie   : Calibri / DM Sans / Playfair Display
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:       #7A1FA2;
  --violet-light: #9B3CC2;
  --violet-dark:  #5C1678;
  --rose:         #EC4899;
  --rose-light:   #F472B6;
  --bg:           #0D0414;
  --bg2:          #130820;
  --bg3:          #1A0D2E;
  --surface:      rgba(122,31,162,0.12);
  --surface2:     rgba(122,31,162,0.06);
  --text:         #F5EFFE;
  --text2:        #C4A8D8;
  --text3:        #8B6BAE;
  --border:       rgba(122,31,162,0.30);
  --border2:      rgba(236,72,153,0.20);
  --radius:       12px;
  --radius-lg:    18px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --tr:           0.2s ease;
}

html { scroll-behavior: smooth; }
body { background:var(--bg); color:var(--text); font-family:var(--font-body); font-size:15px; line-height:1.6; min-height:100vh; overflow-x:hidden; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--bg2); }
::-webkit-scrollbar-thumb { background:var(--border); border-radius:3px; }

/* ── ALERTES FLASH ── */
.flash { padding:12px 18px; border-radius:10px; font-size:13px; margin-bottom:1rem; }
.flash-success { background:rgba(34,197,94,.12); color:#4ADE80; border:0.5px solid rgba(34,197,94,.25); }
.flash-error   { background:rgba(239,68,68,.10); color:#F87171; border:0.5px solid rgba(239,68,68,.2); }
.flash-info    { background:var(--surface); color:#C084FC; border:0.5px solid var(--border); }

/* ── BOUTONS ── */
.btn-primary { display:inline-flex; align-items:center; justify-content:center; gap:8px; background:linear-gradient(135deg,var(--violet),var(--rose)); border:none; color:#fff; font-family:var(--font-body); font-size:14px; font-weight:500; padding:11px 26px; border-radius:24px; cursor:pointer; transition:opacity var(--tr); text-decoration:none; }
.btn-primary:hover { opacity:.85; }
.btn-outline { display:inline-flex; align-items:center; gap:8px; background:transparent; border:0.5px solid var(--border); color:var(--text2); font-family:var(--font-body); font-size:14px; padding:11px 26px; border-radius:24px; cursor:pointer; transition:all var(--tr); text-decoration:none; }
.btn-outline:hover { border-color:rgba(192,132,252,.5); color:#C084FC; background:rgba(192,132,252,.05); }
.btn-sm { display:inline-flex; align-items:center; gap:6px; font-size:12px; padding:6px 14px; border-radius:14px; background:var(--surface); border:0.5px solid var(--border); color:var(--text2); cursor:pointer; font-family:var(--font-body); transition:all var(--tr); text-decoration:none; }
.btn-sm:hover { background:rgba(192,132,252,.12); color:#C084FC; border-color:rgba(192,132,252,.4); }
.btn-danger { background:rgba(239,68,68,.12); border:0.5px solid rgba(239,68,68,.25); color:#F87171; font-family:var(--font-body); font-size:12px; padding:6px 14px; border-radius:10px; cursor:pointer; }
.btn-success { background:rgba(34,197,94,.1); border:0.5px solid rgba(34,197,94,.25); color:#4ADE80; font-family:var(--font-body); font-size:12px; padding:6px 14px; border-radius:10px; cursor:pointer; }

/* ── BADGES ── */
.badge { display:inline-flex; align-items:center; font-size:11px; padding:3px 9px; border-radius:8px; font-weight:500; }
.badge-green  { background:rgba(34,197,94,.12);  color:#4ADE80; border:0.5px solid rgba(34,197,94,.25); }
.badge-yellow { background:rgba(245,158,11,.12); color:#FCD34D; border:0.5px solid rgba(245,158,11,.2); }
.badge-red    { background:rgba(239,68,68,.10);  color:#F87171; border:0.5px solid rgba(239,68,68,.2); }
.badge-purple { background:var(--surface);       color:#C084FC; border:0.5px solid var(--border); }
.badge-rose   { background:rgba(236,72,153,.12); color:var(--rose-light); border:0.5px solid rgba(236,72,153,.2); }

/* ── FORMULAIRES ── */
.card { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius-lg); padding:1.4rem; }
.panel-title { font-size:14px; font-weight:500; margin-bottom:1rem; display:flex; justify-content:space-between; align-items:center; }
.panel-title small { font-size:11px; color:var(--text3); font-weight:400; }
.form-row { margin-bottom:1rem; }
.form-label { display:block; font-size:12px; color:var(--text2); margin-bottom:5px; }
.form-input { width:100%; background:var(--surface2); border:0.5px solid var(--border); color:var(--text); font-family:var(--font-body); font-size:13px; padding:10px 14px; border-radius:10px; outline:none; transition:border-color var(--tr); }
.form-input:focus { border-color:rgba(192,132,252,.5); }
.form-select { width:100%; background:var(--bg3); border:0.5px solid var(--border); color:var(--text); font-family:var(--font-body); font-size:13px; padding:10px 14px; border-radius:10px; outline:none; }
textarea.form-input { resize:vertical; }
.form-error { font-size:11px; color:#F87171; margin-top:4px; }

/* ── GRILLES ── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
@media(max-width:900px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

/* ── NAVIGATION ── */
.nav { display:flex; align-items:center; justify-content:space-between; padding:1rem 2rem; border-bottom:0.5px solid var(--border); position:sticky; top:0; background:rgba(13,4,20,.94); backdrop-filter:blur(14px); z-index:200; }
.nav-logo { font-family:var(--font-display); font-size:22px; font-weight:700; letter-spacing:3px; background:linear-gradient(135deg,#C084FC,var(--rose)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; text-decoration:none; }
.nav-links { display:flex; gap:4px; }
.nav-link { background:none; border:0.5px solid transparent; color:var(--text2); font-family:var(--font-body); font-size:13px; padding:7px 14px; border-radius:20px; cursor:pointer; transition:all var(--tr); text-decoration:none; display:inline-block; }
.nav-link:hover  { color:var(--text); border-color:var(--border); background:var(--surface2); }
.nav-link.active { color:#C084FC; border-color:rgba(192,132,252,.4); background:rgba(192,132,252,.08); }
@media(max-width:768px){ .nav-links{ display:none; } }

/* ── HERO ── */
.hero { position:relative; min-height:86vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:4rem 2rem; overflow:hidden; }
.orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; }
.orb-1 { width:520px; height:520px; background:radial-gradient(circle,rgba(122,31,162,.35) 0%,transparent 70%); top:-120px; left:-100px; }
.orb-2 { width:400px; height:400px; background:radial-gradient(circle,rgba(236,72,153,.20) 0%,transparent 70%); bottom:-60px; right:-80px; }
.hero-badge { display:inline-flex; align-items:center; gap:6px; background:var(--surface); border:0.5px solid var(--border); border-radius:20px; padding:6px 14px; font-size:12px; color:var(--rose-light); margin-bottom:2rem; }
.hero-badge .dot { width:6px; height:6px; background:var(--rose); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero-title { font-family:var(--font-display); font-size:clamp(2.6rem,6vw,5rem); font-weight:700; line-height:1.1; margin-bottom:1.5rem; }
.hero-title .gradient { background:linear-gradient(135deg,#C084FC 0%,var(--rose) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero-sub { font-size:16px; color:var(--text2); max-width:580px; line-height:1.75; margin-bottom:2.5rem; }
.hero-cta { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
.stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:0.5px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; max-width:700px; margin:3rem auto 0; }
.stat-cell { background:var(--bg2); padding:1.4rem 2rem; text-align:center; }
.stat-n { font-family:var(--font-display); font-size:2rem; font-weight:700; background:linear-gradient(135deg,#C084FC,var(--rose)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.stat-l { font-size:13px; color:var(--text3); margin-top:4px; }

/* ── SECTIONS ── */
.section { padding:4.5rem 2rem; max-width:1100px; margin:0 auto; }
.section-tag { font-size:11px; text-transform:uppercase; letter-spacing:2px; color:var(--rose); margin-bottom:.6rem; }
.section-title { font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:600; margin-bottom:.6rem; }
.section-sub { color:var(--text2); font-size:15px; line-height:1.7; max-width:500px; margin-bottom:2.5rem; }
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1rem; }
.feat-card { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius-lg); padding:1.5rem; transition:border-color var(--tr); }
.feat-card:hover { border-color:rgba(192,132,252,.4); }
.feat-icon { width:44px; height:44px; border-radius:12px; background:var(--surface); border:0.5px solid var(--border); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; font-size:20px; }
.feat-name { font-size:15px; font-weight:500; margin-bottom:5px; }
.feat-desc { font-size:13px; color:var(--text2); line-height:1.65; }

/* ── CAMPAGNES ── */
.filter-row { display:flex; gap:8px; margin-bottom:1.5rem; flex-wrap:wrap; }
.filter-btn { background:none; border:0.5px solid var(--border); color:var(--text2); font-family:var(--font-body); font-size:12px; padding:6px 14px; border-radius:14px; cursor:pointer; transition:all var(--tr); }
.filter-btn.active,.filter-btn:hover { background:var(--surface); color:#C084FC; border-color:rgba(192,132,252,.4); }
.camps-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1rem; }
.camp-card { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all var(--tr); }
.camp-card:hover { border-color:rgba(192,132,252,.5); transform:translateY(-2px); }
.camp-head { padding:1.1rem 1.4rem; border-bottom:0.5px solid var(--border); display:flex; justify-content:space-between; align-items:flex-start; }
.camp-type { font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:var(--rose-light); margin-bottom:3px; }
.camp-name { font-family:var(--font-display); font-size:1.1rem; font-weight:600; }
.camp-body { padding:1rem 1.4rem; }
.camp-meta { display:flex; gap:1rem; font-size:12px; color:var(--text3); margin-bottom:.8rem; flex-wrap:wrap; }
.prog-bar { height:3px; background:rgba(255,255,255,.06); border-radius:2px; overflow:hidden; }
.prog-fill { height:100%; background:linear-gradient(90deg,var(--violet),var(--rose)); border-radius:2px; }
.camp-foot { padding:.9rem 1.4rem; display:flex; justify-content:space-between; align-items:center; border-top:0.5px solid var(--border); }
.camp-price { font-size:15px; font-weight:600; color:#C084FC; }

/* ── DASHBOARD ── */
.dash-layout { display:grid; grid-template-columns:220px 1fr; min-height:calc(100vh - 61px); }
.sidebar { background:var(--bg2); border-right:0.5px solid var(--border); padding:1.4rem .9rem; position:sticky; top:61px; height:calc(100vh - 61px); overflow-y:auto; }
.sidebar-user { display:flex; align-items:center; gap:10px; padding:.6rem .7rem; margin-bottom:1.4rem; }
.avatar { display:flex; align-items:center; justify-content:center; border-radius:50%; background:linear-gradient(135deg,var(--violet),var(--rose)); color:#fff; font-weight:600; flex-shrink:0; }
.avatar-sm { width:36px; height:36px; font-size:13px; }
.avatar-lg { width:56px; height:56px; font-size:20px; }
.sidebar-name { font-size:13px; font-weight:500; }
.sidebar-code { font-size:11px; color:var(--rose-light); font-family:monospace; margin-top:1px; }
.sidebar-sep { font-size:10px; text-transform:uppercase; letter-spacing:1.5px; color:var(--text3); padding:0 .7rem; margin:1.2rem 0 5px; }
.sidebar-item { display:flex; align-items:center; gap:10px; padding:8px 10px; border-radius:10px; font-size:13px; color:var(--text2); cursor:pointer; margin-bottom:2px; border:0.5px solid transparent; transition:all var(--tr); text-decoration:none; }
.sidebar-item:hover  { background:var(--surface2); color:var(--text); }
.sidebar-item.active { background:var(--surface); color:#C084FC; border-color:var(--border); }
.sidebar-icon { font-size:14px; width:18px; text-align:center; }
.notif-badge { margin-left:auto; background:var(--rose); color:#fff; font-size:10px; padding:1px 6px; border-radius:8px; min-width:18px; text-align:center; }
.dash-main { padding:2rem; overflow-y:auto; }
.dash-heading { font-family:var(--font-display); font-size:1.5rem; font-weight:600; margin-bottom:.2rem; }
.dash-sub-text { font-size:13px; color:var(--text2); margin-bottom:1.8rem; }
.kpi-row { display:grid; grid-template-columns:repeat(auto-fit,minmax(145px,1fr)); gap:10px; margin-bottom:1.5rem; }
.kpi { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius); padding:1rem 1.2rem; }
.kpi-label { font-size:10px; text-transform:uppercase; letter-spacing:1px; color:var(--text3); }
.kpi-val { font-family:var(--font-display); font-size:1.7rem; font-weight:600; margin:4px 0 2px; }
.kpi-note { font-size:11px; color:var(--text3); }
@media(max-width:768px){ .dash-layout{ grid-template-columns:1fr; } .sidebar{ display:none; } }

/* ── MESSAGERIE ── */
.msg-thread { display:flex; flex-direction:column; gap:12px; overflow-y:auto; padding-right:4px; }
.msg { max-width:78%; }
.msg.in  { align-self:flex-start; }
.msg.out { align-self:flex-end; }
.msg-bubble { padding:10px 14px; border-radius:16px; font-size:13px; line-height:1.55; }
.msg.in  .msg-bubble { background:var(--surface); border:0.5px solid var(--border); color:var(--text); border-bottom-left-radius:4px; }
.msg.out .msg-bubble { background:linear-gradient(135deg,var(--violet-dark),var(--violet)); color:#fff; border-bottom-right-radius:4px; }
.msg-meta { font-size:10px; color:var(--text3); margin-top:3px; padding:0 4px; }
.msg-pending { font-size:10px; color:#F59E0B; background:rgba(245,158,11,.1); border:0.5px solid rgba(245,158,11,.2); padding:2px 8px; border-radius:8px; margin-top:5px; display:inline-block; }
.msg-input-row { display:flex; gap:8px; margin-top:1rem; }
.msg-field { flex:1; background:var(--surface2); border:0.5px solid var(--border); color:var(--text); font-family:var(--font-body); font-size:13px; padding:10px 14px; border-radius:20px; outline:none; }
.msg-send { background:linear-gradient(135deg,var(--violet),var(--rose)); border:none; color:#fff; font-size:15px; width:38px; height:38px; border-radius:50%; cursor:pointer; flex-shrink:0; }

/* ── BOUTIQUE ── */
.shop-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1rem; }
.shop-card { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius-lg); padding:1.3rem; text-align:center; transition:all var(--tr); }
.shop-card:hover { border-color:rgba(192,132,252,.4); }
.shop-emoji { font-size:36px; margin-bottom:.8rem; }
.shop-name { font-size:14px; font-weight:500; margin-bottom:4px; }
.shop-desc { font-size:12px; color:var(--text2); margin-bottom:.8rem; }
.shop-price { font-size:15px; font-weight:600; color:#C084FC; margin-bottom:.8rem; }

/* ── ADMIN ── */
.admin-header { background:var(--bg2); border-bottom:0.5px solid var(--border); padding:.9rem 1.5rem; display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.admin-title { font-family:var(--font-display); font-size:1rem; font-weight:600; white-space:nowrap; }
.admin-tabs { display:flex; gap:4px; flex-wrap:wrap; }
.admin-tab { background:none; border:0.5px solid transparent; color:var(--text2); font-family:var(--font-body); font-size:12px; padding:6px 13px; border-radius:18px; cursor:pointer; transition:all var(--tr); text-decoration:none; display:inline-block; }
.admin-tab:hover  { background:var(--surface2); }
.admin-tab.active { background:var(--surface); color:#C084FC; border-color:var(--border); }
.admin-body { padding:1.8rem; max-width:1250px; margin:0 auto; }

/* ── TABLEAUX ── */
.table-wrap { background:var(--bg3); border:0.5px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; overflow-x:auto; }
table { width:100%; border-collapse:collapse; font-size:13px; }
th { text-align:left; padding:11px 16px; font-size:10px; text-transform:uppercase; letter-spacing:1px; color:var(--text3); background:var(--bg2); font-weight:500; border-bottom:0.5px solid var(--border); }
td { padding:11px 16px; border-bottom:0.5px solid rgba(122,31,162,.10); color:var(--text2); vertical-align:middle; }
tr:last-child td { border-bottom:none; }
tr:hover td { background:rgba(122,31,162,.04); }
.act-btn { font-size:11px; padding:4px 9px; border-radius:7px; cursor:pointer; font-family:var(--font-body); border:0.5px solid; transition:opacity var(--tr); }
.act-btn:hover { opacity:.8; }
.act-ok  { background:rgba(34,197,94,.08);  color:#4ADE80; border-color:rgba(34,197,94,.25); }
.act-ko  { background:rgba(239,68,68,.08);  color:#F87171; border-color:rgba(239,68,68,.25); }
.act-see { background:var(--surface);       color:var(--text2); border-color:var(--border); }

/* ── FIL D'ACTIVITÉ ── */
.feed-item { display:flex; align-items:flex-start; gap:10px; padding:9px 0; border-bottom:0.5px solid rgba(122,31,162,.1); }
.feed-item:last-child { border-bottom:none; }
.feed-dot { width:8px; height:8px; border-radius:50%; margin-top:5px; flex-shrink:0; }
.feed-text { font-size:13px; color:var(--text2); line-height:1.5; flex:1; }
.feed-time { font-size:11px; color:var(--text3); white-space:nowrap; }

/* ── SOIRÉE RÉVÉLATION ── */
.reveal-stage { background:linear-gradient(135deg,rgba(122,31,162,.28),rgba(236,72,153,.18)); border:0.5px solid rgba(192,132,252,.4); border-radius:20px; padding:2rem; text-align:center; }
.couple-row { display:flex; align-items:center; justify-content:center; gap:2rem; flex-wrap:wrap; }
.invis-block { display:flex; flex-direction:column; align-items:center; gap:7px; }
.invis-avatar { width:68px; height:68px; border-radius:50%; background:var(--surface); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:26px; }
.invis-code { font-family:monospace; font-size:17px; font-weight:600; color:#C084FC; }
.invis-name { font-size:13px; color:var(--text2); }
.heart { font-size:30px; color:var(--rose); }

/* ── MODAL AUTH ── */
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.7); backdrop-filter:blur(6px); z-index:500; display:none; align-items:center; justify-content:center; }
.modal-overlay.open { display:flex; }
.modal { background:var(--bg3); border:0.5px solid var(--border); border-radius:20px; padding:2rem; width:100%; max-width:420px; position:relative; }
.modal-title { font-family:var(--font-display); font-size:1.4rem; font-weight:600; margin-bottom:.3rem; }
.modal-sub { font-size:13px; color:var(--text2); margin-bottom:1.5rem; }
.modal-close { position:absolute; top:1rem; right:1rem; background:none; border:none; color:var(--text3); font-size:20px; cursor:pointer; }
.tab-switch { display:flex; gap:4px; margin-bottom:1.5rem; background:var(--surface2); padding:4px; border-radius:12px; }
.tab-sw-btn { flex:1; background:none; border:none; color:var(--text2); font-family:var(--font-body); font-size:13px; padding:8px; border-radius:9px; cursor:pointer; transition:all var(--tr); }
.tab-sw-btn.active { background:var(--surface); color:#C084FC; }
.auth-panel { display:none; }
.auth-panel.active { display:block; }

/* ── PAGINATION ── */
.pagination { display:flex; gap:4px; margin-top:1rem; justify-content:center; }
.page-link { background:var(--surface2); border:0.5px solid var(--border); color:var(--text2); padding:6px 12px; border-radius:8px; font-size:13px; text-decoration:none; }
.page-link:hover,.page-link.active { background:var(--surface); color:#C084FC; border-color:rgba(192,132,252,.4); }

/* ── FOOTER ── */
.footer { text-align:center; padding:2rem; color:var(--text3); font-size:12px; border-top:0.5px solid var(--border); }

/* =============================================================
   MONWÉ v4.0 — Styles additionnels
   Améliorations : #3 Pages légales · #4 KYC Guard · #5 OAuth
   À ajouter à la fin de assets/css/style.css
   ============================================================= */

/* ── Pages légales (CGU, Confidentialité, Cookies) ── */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.legal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-badge {
  display: inline-block;
  background: rgba(122,31,162,.12);
  color: #C084FC;
  border: 1px solid rgba(192,132,252,.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.legal-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  font-family: var(--font-display);
}
.legal-meta {
  font-size: 12px;
  color: var(--text3);
}
.legal-toc {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.legal-toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: .8rem;
}
.legal-toc a {
  display: block;
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: #C084FC; }

.legal-section {
  margin-bottom: 2rem;
  scroll-margin-top: 80px;
}
.legal-section h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .8rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: .6rem;
}
.legal-section ul {
  padding-left: 1.4rem;
  margin-bottom: .6rem;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: .3rem;
}
.legal-section ul li::marker { color: #C084FC; }
.legal-section a { color: #C084FC; }
.legal-alert {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: #FCD34D;
  margin-top: .8rem;
}

/* ── KYC Banner dans le dashboard ── */
.kyc-banner-grace    { border-left: 3px solid #C084FC; }
.kyc-banner-limited  { border-left: 3px solid #FCD34D; }
.kyc-banner-rejected { border-left: 3px solid #F87171; }

/* ── Bouton fonctionnalité verrouillée ── */
.feature-locked {
  position: relative;
  cursor: not-allowed;
  opacity: .6;
}
.feature-locked::after {
  content: '🔒';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 14px;
}
