:root {
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text: #111827;
  --muted: #64748B;
  --primary: #7C3AED;
  --secondary: #0F766E;
  --border: #E2E8F0;
  --danger: #B91C1C;
  --shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.navbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(16px, 4vw, 56px); background: rgba(255,255,255,.92); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(12px); }
.brand img { height: 40px; width: 180px; }
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav-count { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; min-height: 22px; padding: 0 7px; border-radius: 999px; background: var(--danger); color: #fff; font-size: .78rem; font-weight: 900; }
.page { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 64px; }
.footer { display: flex; gap: 18px; justify-content: center; color: var(--muted); padding: 36px 16px; border-top: 1px solid var(--border); }

.hero { min-height: calc(100vh - 170px); display: grid; align-items: center; background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 44%, #ECFDF5 100%); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; padding: clamp(34px, 8vw, 88px); }
.hero-content { max-width: 760px; }
.eyebrow { color: var(--secondary); font-weight: 800; text-transform: uppercase; font-size: .78rem; }
h1 { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.02; margin: 0 0 18px; letter-spacing: 0; }
h2 { margin: 0 0 10px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 670px; line-height: 1.7; }
.actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 24px; }

.button, button { border: 0; border-radius: 8px; background: var(--primary); color: #fff; min-height: 44px; padding: 0 18px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover, button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(124, 58, 237, .22); }
.button.secondary { background: var(--secondary); }
.button.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.button.small { min-height: 36px; padding: 0 12px; font-size: .9rem; }
.button.danger, .danger button { background: var(--danger); }
.privacy-button { background: transparent; border-color: #CBD5E1; color: var(--text); box-shadow: none; }
.privacy-button:hover { transform: none; box-shadow: none; background: #F8FAFC; border-color: #94A3B8; }
.privacy-delete-box { margin-top: 18px; border-top: 1px solid var(--border); padding-top: 18px; }
.privacy-warning { background: #F8FAFC; border: 1px solid var(--border); border-radius: 8px; padding: 14px; color: var(--text); }
.privacy-warning p { margin: 6px 0 0; color: var(--muted); line-height: 1.55; }

.grid { display: grid; gap: 18px; margin-top: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid article, .form-shell, .profile-card, .match-card, .legal, .dashboard-head { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); }
.grid p, .dashboard-head p, .legal p { color: var(--muted); line-height: 1.65; }

.form-shell { max-width: 680px; margin: 0 auto; }
.form-shell.wide { max-width: 860px; }
.form { display: grid; gap: 14px; }
label, legend { font-weight: 800; color: var(--text); }
input, select, textarea { width: 100%; margin-top: 6px; min-height: 44px; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; background: #fff; color: var(--text); font: inherit; }
textarea { min-height: 120px; resize: vertical; }
fieldset { border: 1px solid var(--border); border-radius: 8px; display: flex; gap: 16px; flex-wrap: wrap; }
.check, fieldset label { font-weight: 600; color: var(--muted); }
.check input, fieldset input { width: auto; min-height: auto; margin-right: 8px; }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: end; }
.filters input, .filters select { width: auto; min-width: 130px; }
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.profile-card { padding: 0; overflow: hidden; }
.profile-card-photo { display: block; overflow: hidden; background: var(--border); }
.profile-card-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .2s ease; }
.profile-card-photo:hover img { transform: scale(1.025); }
.profile-card-body { padding: 18px; }
.profile-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.badge { background: #ECFDF5; color: var(--secondary); border-radius: 999px; padding: 5px 10px; font-weight: 800; }
.empty-state { margin-top: 18px; background: var(--card); border: 1px dashed var(--border); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.empty-state p { color: var(--muted); line-height: 1.65; max-width: 680px; }
.profile-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.photo-strip { display: grid; gap: 12px; }
.photo-strip img { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; background: var(--border); }
.profile-gallery { display: grid; gap: 12px; min-width: 0; }
.gallery-stage { position: relative; overflow: hidden; border-radius: 8px; background: var(--border); touch-action: pan-y; box-shadow: var(--shadow); }
.gallery-frame { display: none; width: 100%; min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; cursor: zoom-in; }
.gallery-frame:hover { transform: none; box-shadow: none; }
.gallery-frame.active { display: block; }
.gallery-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--border); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; min-height: 54px; padding: 0; border-radius: 8px; background: rgba(17, 24, 39, .72); color: #fff; font-size: 2.2rem; line-height: 1; z-index: 2; }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-count { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border-radius: 999px; background: rgba(17, 24, 39, .72); color: #fff; font-weight: 900; font-size: .88rem; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.gallery-thumb { padding: 0; border: 2px solid transparent; background: transparent; border-radius: 8px; min-height: 0; overflow: hidden; }
.gallery-thumb:hover { transform: none; box-shadow: none; }
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--border); }
.profile-info-panel { min-width: 0; }
.report-form { margin-top: 20px; }

.match-card { display: flex; gap: 16px; align-items: center; position: relative; }
.match-card.has-unread { border-color: #FCA5A5; box-shadow: 0 18px 45px rgba(185, 28, 28, .1); }
.match-photo-wrap { position: relative; flex: 0 0 auto; }
.match-photo-wrap img, .match-card > img { width: 96px; height: 96px; border-radius: 8px; object-fit: cover; }
.match-card-body { min-width: 0; flex: 1; }
.last-message { margin-top: 0; overflow-wrap: anywhere; }
.unread-dot { position: absolute; top: -8px; right: -8px; min-width: 26px; min-height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--danger); color: #fff; font-size: .82rem; font-weight: 900; border: 2px solid #fff; }
.unread-total, .unread-pill { background: #FEF2F2; color: var(--danger); }
.chat-shell { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 20px; box-shadow: var(--shadow); }
.chat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.chat-header h1 { font-size: clamp(1.7rem, 3vw, 2.8rem); margin-bottom: 6px; }
.chat-peer-avatar { flex: 0 0 auto; width: 72px; min-height: 72px; padding: 0; border-radius: 8px; overflow: hidden; background: var(--border); box-shadow: none; }
.chat-peer-avatar:hover { transform: none; box-shadow: none; }
.chat-peer-avatar img { width: 72px; height: 72px; object-fit: cover; }
.chat-peer-title { min-width: 0; }
.chat-messages { height: min(62vh, 640px); overflow: auto; display: flex; flex-direction: column; gap: 10px; padding: 10px; border: 1px solid var(--border); border-radius: 8px; background: #F8FAFC; }
.bubble { max-width: 72%; align-self: flex-start; background: #fff; border: 1px solid var(--border); padding: 10px 12px; border-radius: 8px; }
.bubble.mine { align-self: flex-end; background: var(--primary); color: #fff; border-color: var(--primary); }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 12px; align-items: end; }

.notification-list { display: grid; gap: 14px; margin-top: 22px; }
.compact-list { margin-top: 24px; }
.notification-card { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 18px; box-shadow: var(--shadow); }
.notification-card.unread { border-color: #99F6E4; }
.notification-card h2 { font-size: 1.05rem; margin: 0 0 8px; }
.notification-card p { color: var(--muted); line-height: 1.55; margin: 0 0 8px; }
.photo-preview { display: grid; gap: 8px; border: 1px dashed var(--border); border-radius: 8px; padding: 12px; background: #F8FAFC; }
.photo-preview img { width: min(220px, 100%); aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: var(--border); }
.photo-manager { margin: 28px 0; }
.photo-manager-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-list { display: grid; gap: 12px; }
.photo-item { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: start; }
.photo-item img { width: 84px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: var(--border); }
[data-lightbox] { cursor: zoom-in; }
body.lightbox-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(15, 23, 42, .86); }
.lightbox-view { position: relative; display: flex; align-items: center; justify-content: center; max-width: min(100%, 1080px); max-height: 86vh; }
.lightbox img { display: block; width: auto; height: auto; max-width: 100%; max-height: 86vh; margin: auto; border-radius: 8px; object-fit: contain; background: #fff; box-shadow: 0 24px 80px rgba(0, 0, 0, .36); }
.lightbox button { position: fixed; top: 18px; right: 18px; background: #fff; color: var(--text); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; min-height: 42px; padding: 0; border-radius: 999px; background: rgba(17, 24, 39, .68); color: #fff; font-size: 0; z-index: 1001; box-shadow: none; }
.lightbox-nav:hover { transform: translateY(-50%); box-shadow: none; background: rgba(17, 24, 39, .86); }
.lightbox-nav::before { content: ''; width: 12px; height: 12px; border-top: 3px solid currentColor; border-left: 3px solid currentColor; display: block; }
.lightbox-nav.prev::before { transform: rotate(-45deg); margin-left: 4px; }
.lightbox-nav.next::before { transform: rotate(135deg); margin-right: 4px; }
.lightbox-nav.prev { left: 12px; right: auto; }
.lightbox-nav.next { right: 12px; }
.lightbox-counter { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; background: rgba(255, 255, 255, .94); color: var(--text); font-weight: 900; z-index: 1001; }

.flash { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; border: 1px solid var(--border); background: #fff; }
.flash.success { border-color: #99F6E4; color: var(--secondary); }
.flash.error { border-color: #FECACA; color: var(--danger); }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.inline { display: flex; gap: 8px; align-items: center; }
.admin-nav { border-bottom-color: #DDD6FE; }
.admin-auth-page { min-height: 100vh; display: grid; place-items: center; padding: 32px 0; }
.muted { color: var(--muted); }
.compact { margin-top: 28px; margin-bottom: 12px; }
.table-wrap { width: 100%; overflow-x: auto; border-radius: 8px; }
.pill { display: inline-flex; align-items: center; min-height: 30px; border-radius: 999px; padding: 0 10px; background: #EEF2FF; color: #3730A3; font-weight: 800; }
.admin-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; margin-top: 24px; }
.admin-list { display: grid; gap: 16px; }
.admin-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 18px; box-shadow: var(--shadow); }
.admin-card h3 { margin: 0 0 8px; }
.admin-card-removable { position: relative; padding-right: 52px; }
.admin-delete-form { position: absolute; top: 12px; right: 12px; margin: 0; }
.admin-delete-button { width: 34px; min-height: 34px; padding: 0; border-radius: 999px; background: #FEF2F2; color: var(--danger); border: 1px solid #FECACA; font-size: 1.45rem; line-height: 1; box-shadow: none; }
.admin-delete-button:hover { transform: none; box-shadow: none; background: #FEE2E2; }
.admin-actions { display: flex; gap: 10px; align-items: center; }
.admin-actions.wrap { flex-wrap: wrap; }
.admin-actions input, .inline input { width: auto; min-width: 180px; }
.photo-review { display: grid; grid-template-columns: 132px 1fr; gap: 16px; align-items: start; }
.photo-review img, .evidence-photo { border-radius: 8px; aspect-ratio: 4 / 3; object-fit: cover; background: var(--border); }
.evidence-photo { width: min(260px, 100%); margin-top: 10px; }
.warning { background: #FEF2F2; color: #7F1D1D; border: 1px solid #FECACA; border-radius: 8px; padding: 12px; }
.admin-note { margin-top: 16px; }
.email-box { margin-top: 12px; }
.email-box summary { cursor: pointer; font-weight: 800; color: var(--secondary); }

@media (max-width: 820px) {
  .grid.two, .grid.three, .grid.four, .grid.five, .profile-detail, .admin-split, .photo-review, .photo-manager-grid { grid-template-columns: 1fr; }
  .navbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .chat-form { grid-template-columns: 1fr; }
  .chat-header { align-items: center; }
  .chat-peer-avatar { width: 60px; min-height: 60px; }
  .chat-peer-avatar img { width: 60px; height: 60px; }
  .chat-peer-photo { width: 72px; height: 72px; }
  .lightbox { padding: 14px; }
  .lightbox-nav { width: 38px; min-height: 38px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .match-card { align-items: flex-start; }
  .gallery-nav { width: 42px; min-height: 52px; font-size: 1.9rem; }
  .gallery-nav.prev { left: 8px; }
  .gallery-nav.next { right: 8px; }
  .gallery-count { bottom: 10px; right: 10px; }
  .bubble { max-width: 90%; }
  h1 { font-size: 2.2rem; }
  .admin-actions, .inline { align-items: stretch; flex-direction: column; }
  .admin-actions input, .inline input { width: 100%; }
}

/* CLUB_THEME_START */
/* Theme Club feutre - couche visuelle uniquement */
:root {
  --bg: #0d0b0f;
  --card: #191519;
  --text: #f4eef1;
  --muted: #b9adb4;
  --primary: #b64a6c;
  --secondary: #c8aa70;
  --border: #3a3038;
  --danger: #d5656c;
  --club-surface: #141116;
  --club-surface-raised: #201a20;
  --club-success: #6fa49c;
  --club-gold: #d7bd87;
  --shadow: 0 20px 48px rgba(0, 0, 0, .34);
  color-scheme: dark;
}

html { background: var(--bg); }
body {
  min-height: 100vh;
  background: #0d0b0f;
  color: var(--text);
}

::selection { background: rgba(182, 74, 108, .55); color: #fff; }
a { transition: color .18s ease, border-color .18s ease, opacity .18s ease; }

.navbar {
  background: rgba(13, 11, 15, .94);
  border-bottom-color: #443640;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(215, 189, 135, .25);
  border-radius: 8px;
  background: #f5f0f2;
}
.nav-links a:not(.button) { color: #ddd4d9; }
.nav-links a:not(.button):hover { color: var(--club-gold); }
.nav-count {
  background: var(--primary);
  color: #fff;
  border: 2px solid #171218;
  box-shadow: 0 0 0 1px rgba(215, 189, 135, .25);
}

.page { color: var(--text); }
.footer {
  color: #a99ca4;
  background: #100d11;
  border-top-color: #332a31;
}
.footer a:hover { color: var(--club-gold); }

.hero {
  position: relative;
  isolation: isolate;
  background: #171318;
  border-color: #493841;
  box-shadow: inset 0 1px 0 rgba(215, 189, 135, .14), 0 28px 70px rgba(0, 0, 0, .38);
}
.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--club-gold);
  box-shadow: 0 0 22px rgba(215, 189, 135, .42);
}
.hero-content { position: relative; }
.hero h1 {
  max-width: 820px;
  color: #fff8fb;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
}
.eyebrow { color: var(--club-gold); letter-spacing: 0; }
.lead { color: #c7bbc2; }
h1 { color: #fff8fb; }
h2, h3 { color: #f8f1f4; }

.button, button {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 22px rgba(112, 30, 57, .22);
}
.button:hover, button:hover {
  box-shadow: 0 12px 28px rgba(182, 74, 108, .28);
  filter: brightness(1.08);
}
.button.secondary {
  background: var(--secondary);
  color: #1b1519;
  border-color: #dcc28d;
  box-shadow: 0 8px 22px rgba(87, 67, 32, .2);
}
.button.ghost {
  background: transparent;
  border-color: #594752;
  color: #eee5ea;
  box-shadow: none;
}
.button.ghost:hover { background: #251d23; border-color: var(--club-gold); }
.button.danger, .danger button {
  background: transparent;
  color: #f0a2a7;
  border-color: #8d444b;
  box-shadow: none;
}

.grid article,
.form-shell,
.profile-card,
.match-card,
.legal,
.dashboard-head,
.chat-shell,
.notification-card,
.admin-card,
.empty-state {
  background: var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.grid article { border-top-color: rgba(215, 189, 135, .42); }
.grid p, .dashboard-head p, .legal p, .empty-state p { color: var(--muted); }

label, legend { color: #eee5ea; }
input, select, textarea {
  background: #110e12;
  color: var(--text);
  border-color: #493b44;
  caret-color: var(--club-gold);
}
input::placeholder, textarea::placeholder { color: #887b83; opacity: 1; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(215, 189, 135, .32);
  outline-offset: 1px;
  border-color: var(--club-gold);
}
select option { background: #171318; color: var(--text); }
fieldset { border-color: #493b44; }
.check, fieldset label { color: var(--muted); }
input[type='checkbox'], input[type='radio'] { accent-color: var(--primary); }

.profile-card { overflow: hidden; }
.profile-card-photo { background: #241e23; }
.profile-card-photo img { filter: saturate(.9) contrast(1.02); }
.profile-card-photo:hover img { filter: saturate(1.03) contrast(1.04); }
.profile-card-body { border-top: 1px solid #312830; }
.profile-card-body p, .muted { color: var(--muted); }
.badge {
  background: rgba(200, 170, 112, .12);
  color: #e2c991;
  border: 1px solid rgba(200, 170, 112, .32);
}

.gallery-stage, .gallery-frame img, .gallery-thumb img, .photo-strip img {
  background: #211b20;
}
.gallery-stage { border: 1px solid #43363f; }
.gallery-nav, .lightbox-nav {
  background: rgba(17, 13, 17, .82);
  color: #f4e5ec;
  border-color: rgba(215, 189, 135, .42);
}
.gallery-nav:hover, .lightbox-nav:hover {
  background: rgba(45, 31, 39, .96);
  transform: translateY(-50%);
  box-shadow: none;
  filter: none;
}
.gallery-count, .lightbox-counter {
  background: rgba(16, 12, 16, .9);
  color: #f4eef1;
  border: 1px solid rgba(215, 189, 135, .34);
}
.gallery-thumb.active { border-color: var(--club-gold); }

.match-card.has-unread {
  border-color: var(--primary);
  box-shadow: 0 18px 45px rgba(112, 30, 57, .2);
}
.unread-dot { background: var(--primary); border-color: var(--card); }
.unread-total, .unread-pill {
  background: rgba(182, 74, 108, .15);
  color: #f0a3bb;
  border-color: rgba(182, 74, 108, .34);
}

.chat-messages {
  background: #100d11;
  border-color: #3e323a;
}
.chat-peer-avatar { background: #241e23; border-color: #493a43; }
.bubble {
  background: #211a20;
  color: #eee6ea;
  border-color: #3c3038;
}
.bubble.mine {
  background: #84344f;
  color: #fff;
  border-color: #a34060;
}

.notification-card.unread { border-color: var(--club-gold); }
.notification-card p { color: var(--muted); }
.photo-preview, .privacy-warning {
  background: #120f13;
  border-color: #4a3b44;
  color: var(--text);
}
.photo-preview img, .photo-item img, .photo-review img, .evidence-photo { background: #251f24; }

.lightbox { background: rgba(7, 5, 7, .94); }
.lightbox img { background: #110e12; box-shadow: 0 28px 90px rgba(0, 0, 0, .68); }
.lightbox > button:not(.lightbox-nav) {
  background: #241c22;
  color: #fff;
  border-color: #5a4651;
}

.flash { background: #191519; color: var(--text); border-color: #493b44; }
.flash.success { border-color: var(--club-success); color: #a8d0c9; }
.flash.error { border-color: #9a4b52; color: #f0a2a7; }
.warning {
  background: rgba(213, 101, 108, .1);
  color: #f0b2b6;
  border-color: #804047;
}

.table { background: var(--card); color: var(--text); }
.table th, .table td { border-bottom-color: #3a3038; }
.table th { color: #e3c88f; background: #151116; }
.table tr:hover td { background: #201920; }
.table-wrap { border: 1px solid #3a3038; }
.pill {
  background: rgba(111, 164, 156, .14);
  color: #a9d1cb;
  border: 1px solid rgba(111, 164, 156, .32);
}
.admin-nav { border-bottom-color: #4a3943; }
.admin-delete-button {
  background: transparent;
  color: #e88b92;
  border-color: #754047;
}
.admin-delete-button:hover { background: rgba(213, 101, 108, .12); }
.email-box summary { color: var(--club-gold); }

.privacy-button {
  background: transparent;
  border-color: #594852;
  color: #e8dfe4;
}
.privacy-button:hover { background: #211a20; border-color: var(--club-gold); }
.privacy-delete-box { border-top-color: #3a3038; }

* {
  scrollbar-color: #654252 #151116;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #151116; }
::-webkit-scrollbar-thumb { background: #654252; border: 2px solid #151116; border-radius: 8px; }

@media (max-width: 820px) {
  .navbar { padding-top: 12px; padding-bottom: 12px; }
  .nav-links { width: 100%; gap: 8px 14px; }
  .hero { min-height: auto; padding: 42px 26px; }
  .hero::before { top: 12%; bottom: 12%; }
  .page { padding-top: 24px; }
  .profile-card-body { padding: 16px; }
}
/* CLUB_THEME_END */



/* PUBLIC_BACKGROUND_START */
body.public-site {
  --card: rgba(25, 21, 25, .94);
  min-height: 100vh;
  background-color: #0d0b0f;
  background-image: url('/assets/img/background-libre-echange.webp?v=20260715-background-v2');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

body.public-site .navbar {
  background: rgba(13, 11, 15, .92);
}

body.public-site .footer {
  background: rgba(16, 13, 17, .92);
}

body.public-site .hero {
  background: rgba(23, 19, 24, .9);
  backdrop-filter: blur(2px);
}

body.public-site .grid article,
body.public-site .form-shell,
body.public-site .profile-card,
body.public-site .match-card,
body.public-site .legal,
body.public-site .dashboard-head,
body.public-site .chat-shell,
body.public-site .notification-card,
body.public-site .empty-state {
  backdrop-filter: blur(3px);
}

@media (max-width: 820px) {
  body.public-site {
    background-size: auto 100vh;
    background-position: 27% center;
  }
}
/* PUBLIC_BACKGROUND_END */

/* LIBRE_ECHANGE_LOGO_START */
.navbar .brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}
.navbar .brand img {
  display: block;
  width: 218px;
  height: 40px;
  max-width: min(218px, 78vw);
}
/* LIBRE_ECHANGE_LOGO_END */
