/* ============================================================================
   TCHATOU — light "portal" theme, modelled on chatzona.com
   Light slate background · white cards · blue primary · Plus Jakarta Sans
   ========================================================================== */

:root {
  --bg:        #f7f8fc;   /* cool paper page background         */
  --bg-alt:    #eef1f8;   /* alternating sections              */
  --card:      #ffffff;   /* white cards                       */
  --border:    #e6e9f2;   /* hairline                          */
  --border-2:  #d2d8e6;   /* stronger                          */

  --ink:       #161a2e;   /* deep midnight ink                 */
  --muted:     #5b6480;   /* secondary                         */
  --faint:     #9aa3bd;   /* tertiary                          */

  --blue:      #1452cc;   /* electric bleu de France primary    */
  --blue-dark: #0d3aa0;   /* hover                              */
  --blue-soft: #eaf0ff;   /* light tint                         */
  --blue-ring: rgba(20, 82, 204, 0.22);

  --rose:      #ff4d7d;   /* warm "rencontre" accent           */
  --rose-dark: #e23566;
  --rose-soft: #ffeaf0;
  --gold:      #ffb347;   /* warm highlight                    */
  --green:     #18b466;   /* online dot                        */

  /* glow-tinted depth */
  --shadow-sm: 0 1px 2px rgba(22, 26, 46, 0.06);
  --shadow:    0 8px 24px -10px rgba(22, 26, 46, 0.16);
  --shadow-lg: 0 28px 60px -24px rgba(20, 40, 110, 0.30);
  --glow-blue: 0 18px 50px -16px rgba(20, 82, 204, 0.45);
  --glow-rose: 0 18px 50px -18px rgba(255, 77, 125, 0.42);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;

  --font:         "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  margin: 0; font-family: var(--font-display);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink);
  font-optical-sizing: auto;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================================
   ATMOSPHERE — soft drifting aurora + fine grain (light, top-anchored)
   ========================================================================== */
.aurora {
  position: fixed; inset: -10vh -10vw auto -10vw; height: 92vh; z-index: -2;
  pointer-events: none; overflow: hidden;
  -webkit-mask: linear-gradient(180deg, #000 0%, #000 38%, transparent 92%);
          mask: linear-gradient(180deg, #000 0%, #000 38%, transparent 92%);
}
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.aurora__blob--1 { width: 46vw; height: 46vw; left: -6vw; top: -14vh;
  background: radial-gradient(circle at 30% 30%, #5b8cff, transparent 70%); animation: drift1 26s ease-in-out infinite; }
.aurora__blob--2 { width: 40vw; height: 40vw; right: -8vw; top: -18vh;
  background: radial-gradient(circle at 60% 40%, #ff7aa6, transparent 70%); opacity: 0.5; animation: drift2 30s ease-in-out infinite; }
.aurora__blob--3 { width: 34vw; height: 34vw; left: 42vw; top: 4vh;
  background: radial-gradient(circle at 50% 50%, #9b8bff, transparent 70%); opacity: 0.4; animation: drift3 34s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw, 4vh) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6vw, 5vh) scale(1.08); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3vw, -4vh) scale(1.15); } }
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose);
}
.eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; border-radius: 2px; opacity: 0.7; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(24, 180, 102, 0.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(24, 180, 102, 0.5); } 70% { box-shadow: 0 0 0 7px rgba(24, 180, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(24, 180, 102, 0); } }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  --pad: 0.72rem 1.3rem;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: var(--pad); border-radius: 12px; font-family: var(--font);
  font-weight: 700; font-size: 0.97rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s ease, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--primary {
  color: #fff; border: 0;
  background: linear-gradient(135deg, #2a6bff 0%, var(--blue) 55%, #0d3aa0 100%);
  box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
/* sliding sheen */
.btn--primary::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.6s ease;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -16px rgba(20, 82, 204, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { background: rgba(255, 255, 255, 0.8); color: var(--ink); border-color: var(--border-2); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { --pad: 0.95rem 1.7rem; font-size: 1.05rem; border-radius: 14px; }
.btn--block { width: 100%; }

/* ---- Nav ----------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1.4rem;
  width: 100%; padding: 0.7rem max(1rem, calc((100vw - var(--maxw)) / 2));
  background: rgba(247, 248, 252, 0.72);
  border-bottom: 1px solid rgba(230, 233, 242, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.nav__brand { display: flex; align-items: center; gap: 0.55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.nav__mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(140deg, #2a6bff, var(--blue) 60%, var(--rose)); color: #fff;
  box-shadow: 0 4px 14px -2px rgba(20, 82, 204, 0.5);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
}
.nav__brand:hover .nav__mark { transform: rotate(-8deg) scale(1.06); }
.nav__mark svg.brandmark { width: 68%; height: 68%; display: block; }
/* @Tchatou@ wordmark — the @ in warm rose */
.at { color: var(--rose); font-weight: 700; }
.nav__word { letter-spacing: -0.01em; color: var(--ink); }
.nav__links { display: flex; gap: 1.4rem; margin-left: 0.8rem; }
.nav__links a { color: var(--muted); font-size: 0.95rem; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: var(--blue); }
.nav__cta { margin-left: auto; }

/* "Plus" dropdown */
.nav__more { position: relative; }
.nav__morebtn { display: inline-flex; align-items: center; gap: .3rem; background: none; border: 0; font: inherit; font-size: .95rem; font-weight: 600; color: var(--muted); cursor: pointer; padding: 0; }
.nav__morebtn:hover { color: var(--blue); }
.nav__morebtn svg { transition: transform .15s; }
.nav__more:hover .nav__morebtn svg, .nav__more:focus-within .nav__morebtn svg { transform: rotate(180deg); }
.nav__menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 200px; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: .4rem; opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s, visibility .16s; z-index: 60; }
.nav__more:hover .nav__menu, .nav__more:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a { display: block; padding: .55rem .8rem; border-radius: 9px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.nav__menu a:hover { background: var(--blue-soft); color: var(--blue); }

/* burger + mobile menu */
.nav__burger { display: none; flex-direction: column; gap: 4px; width: 40px; height: 40px; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border-2); border-radius: 10px; cursor: pointer; margin-left: .6rem; }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobmenu { position: sticky; top: 49px; z-index: 49; flex-direction: column; padding: .6rem max(1rem, calc((100vw - var(--maxw)) / 2)) 1.1rem; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
.mobmenu[hidden] { display: none; }
.mobmenu.is-open { display: flex; }
.mobmenu a { padding: .75rem .3rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobmenu a:last-child { border-bottom: 0; }
.mobmenu a.btn { justify-content: center; margin-top: .7rem; color: #fff; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (min-width: 821px) { .mobmenu { display: none !important; } }

/* ---- Accessibility: visible focus ---------------------------------------- */
:focus-visible { outline: 3px solid var(--blue-ring); outline-offset: 2px; border-radius: 4px; }
a:focus-visible, .btn:focus-visible, button:focus-visible { outline: 3px solid var(--blue-ring); outline-offset: 2px; }
.skiplink { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--blue); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0; font-weight: 700; }
.skiplink:focus { left: 0; }

/* ---- Flash --------------------------------------------------------------- */
.flash { width: min(var(--maxw), 92vw); margin: 1rem auto 0; display: grid; gap: 0.5rem; }
.flash__item { padding: 0.8rem 1.1rem; border-radius: var(--radius-sm); font-size: 0.95rem; border: 1px solid var(--border); background: #fff; }
.flash__item--error { border-color: #fecaca; background: #fef2f2; color: #b91c1c; }
.flash__item--success { border-color: #bbf7d0; background: #f0fdf4; color: #15803d; }

/* ---- Section scaffolding ------------------------------------------------- */
.section { padding: 3.2rem 0; }
.section__head { max-width: 42rem; margin-bottom: 1.8rem; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0.5rem 0 0.5rem; }
.section__head p { color: var(--muted); font-size: 1.05rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 2.6rem 0 1.4rem; }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.4rem; align-items: start; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.3rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; margin: 0.3rem 0 1.1rem; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero__lede { font-size: 1.12rem; color: var(--muted); max-width: 34rem; margin-bottom: 1.4rem; }
.hero__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.6rem; }

/* stats trio */
.hstats { display: flex; gap: 2.2rem; flex-wrap: wrap; padding-top: 0.4rem; border-top: 1px solid var(--border); }
.hstat { padding-top: 1rem; }
.hstat b { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; color: var(--ink); }
.hstat span { font-size: 0.85rem; color: var(--muted); }

/* ---- Entry card (right) -------------------------------------------------- */
.entry {
  position: relative; padding: 1.6rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.entry h2 { font-size: 1.3rem; }
.entry__sub { color: var(--muted); font-size: 0.94rem; margin: 0.25rem 0 1.1rem; }
.entry__sub b { color: var(--ink); }
.presence { display: none; } /* drop the floating chips in the clean light look */

.field { margin-bottom: 0.85rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.35rem; }
.field input, .field select {
  width: 100%; padding: 0.8rem 0.9rem; font: inherit; color: var(--ink);
  background: #fff; border: 1px solid var(--border-2); border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s; appearance: none;
}
.field input::placeholder { color: var(--faint); }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-ring); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; }
.entry__note { font-size: 0.8rem; color: var(--faint); margin-top: 0.9rem; text-align: center; }
.entry__note b { color: var(--muted); }

/* ==========================================================================
   FEATURED ROW  ("Salons populaires")
   ========================================================================== */
.feated { padding-top: 2.2rem; }
.feated__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.feated__head h2 { font-size: 1.4rem; }
.feated__all { color: var(--blue); font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.feated__all:hover { color: var(--blue-dark); }
.feated__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr);
  gap: 0.8rem; overflow-x: auto; padding-bottom: 0.6rem; scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.feated__row::-webkit-scrollbar { height: 6px; }
.feated__row::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
.fsalon {
  scroll-snap-align: start; display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 0.9rem; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border); cursor: pointer; text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.fsalon:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.fsalon__emoji {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; font-size: 1.25rem;
  border-radius: 10px; background: var(--blue-soft); border: 1px solid var(--border);
}
.fsalon__name { font-weight: 700; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fsalon__name b { color: var(--blue); }
.fsalon__count {
  display: inline-flex; align-items: center; gap: 0.35rem; flex: none;
  font-size: 0.82rem; font-weight: 700; color: var(--green);
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 999px; padding: 0.2rem 0.55rem;
}

/* ==========================================================================
   DIRECTORY  ("Les plus actifs maintenant")  + filter tabs
   ========================================================================== */
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.filter {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 700;
  color: var(--muted); background: #fff; border: 1px solid var(--border-2); cursor: pointer;
  transition: all 0.15s;
}
.filter:hover { border-color: var(--blue); color: var(--blue); }
.filter.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }

.salons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.salon {
  display: flex; flex-direction: column; padding: 1.2rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border); cursor: pointer; text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.salon:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.salon__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.85rem; }
.salon__emoji {
  width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.45rem;
  border-radius: 12px; background: var(--blue-soft); border: 1px solid var(--border);
}
.salon__badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green); background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 999px; padding: 0.28rem 0.6rem;
}
.salon h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.salon h3 span { color: var(--blue); }
.salon p { color: var(--muted); font-size: 0.93rem; }
.salon__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  margin-top: auto; padding-top: 0.9rem; font-size: 0.85rem; color: var(--muted);
}
.salon__cat {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); background: var(--bg-alt); border-radius: 6px; padding: 0.22rem 0.5rem;
}
.salon__count { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; }
.salon__go { margin-top: 0.9rem; color: var(--blue); font-weight: 700; font-size: 0.92rem; }
@media (max-width: 920px) { .salons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .salons { grid-template-columns: 1fr; } }

/* ==========================================================================
   STEPS · FEATURES · SAFETY · STATS · CTA
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: s; }
.step { padding: 1.4rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); font-weight: 800; margin-bottom: 0.7rem; }
.step h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.step p { color: var(--muted); }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1rem; }
.feat { padding: 1.4rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); transition: border-color 0.15s, box-shadow 0.15s; }
.feat:hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.feat__ico { width: 44px; height: 44px; display: grid; place-items: center; font-size: 1.4rem; border-radius: 11px; background: var(--blue-soft); margin-bottom: 0.7rem; }
.feat h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.feat p { color: var(--muted); font-size: 0.95rem; }
.feat--wide { grid-column: span 2; }
.feat--tall { grid-row: span 2; }
.feat--accent { background: var(--blue); border-color: var(--blue); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.feat--accent .feat__ico { background: rgba(255, 255, 255, 0.16); }
.feat--accent p { color: rgba(255, 255, 255, 0.9); }
.feat--accent h3 { color: #fff; font-size: 1.45rem; }
@media (max-width: 920px) { .bento { grid-template-columns: repeat(2, 1fr); } .feat--wide, .feat--tall { grid-column: auto; grid-row: auto; } .steps { grid-template-columns: 1fr; } }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; padding: 1.6rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.stat b { display: block; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--blue); }
.stat span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 560px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.safety { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; padding: 2.2rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.safety h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0.6rem 0; }
.safety ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.7rem; }
.safety li { display: flex; gap: 0.6rem; color: var(--muted); }
.safety li b { color: var(--ink); font-weight: 700; }
.safety li::before { content: "✓"; color: var(--green); font-weight: 800; }
@media (max-width: 760px) { .safety { grid-template-columns: 1fr; padding: 1.5rem; } }

.cta {
  position: relative; overflow: hidden; text-align: center; padding: 3.4rem 2rem; border-radius: 26px;
  background: linear-gradient(135deg, #1a3aa8 0%, var(--blue) 45%, #6a2bd0 100%);
  color: #fff; box-shadow: var(--glow-blue);
}
.cta::before { content: ""; position: absolute; width: 60%; height: 200%; top: -50%; right: -10%;
  background: radial-gradient(circle, rgba(255, 77, 125, 0.45), transparent 65%); pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 0.6rem; }
.cta p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 1.6rem; }
.cta .btn--primary { background: #fff; color: var(--blue); box-shadow: 0 12px 30px -10px rgba(0,0,0,.4); }
.cta .btn--primary:hover { background: #fff; color: var(--blue-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  width: 100%; margin: 4rem 0 0;
  padding: 3.2rem max(1rem, calc((100vw - var(--maxw)) / 2)) 1.8rem;
  background: linear-gradient(180deg, #0a6fd0 0%, #0055a4 42%, #00407e 100%);
  color: #fff; border-top: 0;
}
.foot__top { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; }
.foot__brand { font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; color: #fff; }
.foot__brand .at, .foot__brand .nav__word { color: #fff; }
.foot__brand .nav__mark { background: rgba(255, 255, 255, 0.16); box-shadow: none; }
.foot__tag { width: 100%; font-weight: 400; font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); margin-top: 0.3rem; }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.foot__cols h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.62); margin-bottom: 0.8rem; }
.foot__cols a { display: block; color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; padding: 0.22rem 0; transition: color 0.15s; }
.foot__cols a:hover { color: #fff; }
.foot__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; }
@media (max-width: 760px) { .foot__top { grid-template-columns: 1fr; } .foot__cols { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   HERO responsive + CHAT WRAPPER
   ========================================================================== */
@media (max-width: 920px) { .hero__grid { grid-template-columns: 1fr; } }

body.is-chat { overflow: hidden; background: var(--bg); }
.chatwrap { display: flex; flex-direction: column; height: 100dvh; }
.chatbar { display: flex; align-items: center; gap: 1rem; padding: 0.6rem 1.1rem; background: #fff; border-bottom: 1px solid var(--border); }
.chatbar__brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.15rem; }
.chatbar__room { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.3rem 0.8rem; border-radius: 999px; background: var(--blue-soft); border: 1px solid var(--border); font-size: 0.9rem; font-weight: 700; color: var(--blue); }
.chatbar__spacer { margin-left: auto; }
.chatbar__who { color: var(--muted); font-size: 0.9rem; }
.chatbar__who b { color: var(--ink); }
.chatframe { flex: 1; border: 0; width: 100%; background: var(--bg); }
.chat-fallback { flex: 1; display: grid; place-items: center; text-align: center; padding: 2rem; }
.chat-fallback div { max-width: 30rem; }
.chat-fallback h2 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.chat-fallback p { color: var(--muted); margin-bottom: 1.5rem; }
.chat-fallback code { background: var(--bg-alt); padding: 0.2rem 0.5rem; border-radius: 6px; color: var(--blue); }

/* ==========================================================================
   PORTAL PAGES — Actualités (news) + Horoscope
   ========================================================================== */
.pagehead { max-width: 44rem; margin-bottom: 1.4rem; }
.pagehead h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0.5rem 0 0.4rem; }
.pagehead p { color: var(--muted); font-size: 1.05rem; }

/* ---- News grid ----------------------------------------------------------- */
.newsgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ncard {
  display: flex; flex-direction: column; gap: 0.6rem; padding: 1.2rem;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.ncard:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.ncard--lead { grid-column: span 3; flex-direction: column; background: var(--blue-soft); border-color: #dbeafe; }
.ncard__meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.ncard__src {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--blue); background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.22rem 0.5rem;
}
.ncard__ago { font-size: 0.8rem; color: var(--faint); }
.ncard__title { font-size: 1.06rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
.ncard--lead .ncard__title { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.ncard__go { margin-top: auto; color: var(--blue); font-weight: 700; font-size: 0.9rem; }
.newsnote { margin-top: 1.2rem; color: var(--faint); font-size: 0.85rem; text-align: center; }
.emptybox { padding: 2.5rem; text-align: center; color: var(--muted); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
@media (max-width: 920px) { .newsgrid { grid-template-columns: repeat(2, 1fr); } .ncard--lead { grid-column: span 2; } }
@media (max-width: 560px) { .newsgrid { grid-template-columns: 1fr; } .ncard--lead { grid-column: auto; } }

/* ---- Horoscope grid ------------------------------------------------------ */
.hsigns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hsign { padding: 1.2rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.15s, box-shadow 0.15s; }
.hsign:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.hsign__head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.hsign__emoji { width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 1.5rem; border-radius: 12px; background: var(--blue-soft); border: 1px solid var(--border); }
.hsign__head h3 { font-size: 1.1rem; }
.hsign__dates { font-size: 0.8rem; color: var(--muted); }
.hsign__stars { margin-left: auto; color: #f59e0b; font-size: 0.95rem; letter-spacing: 1px; }
.hsign__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.hsign__list li { font-size: 0.92rem; color: var(--muted); }
.hsign__list b { display: block; color: var(--ink); font-size: 0.82rem; }
@media (max-width: 920px) { .hsigns { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hsigns { grid-template-columns: 1fr; } }

/* horoscope index card (link) */
.hsign { display: flex; flex-direction: column; color: inherit; }
.hsign__teaser { color: var(--muted); font-size: .92rem; margin: .6rem 0; flex: 1; }
.hsign__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: auto; }
.hsign__energy { display: flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 700; color: var(--muted); flex: 1; }
.hbar { flex: 1; max-width: 90px; height: 6px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.hbar span { display: block; height: 100%; background: var(--blue); }
.hsign__go { color: var(--blue); font-weight: 700; font-size: .9rem; }

/* ---- Horoscope per-sign page -------------------------------------------- */
.horo-hero { display: flex; align-items: center; gap: 1.2rem; padding: 1.6rem 1.8rem; border-radius: var(--radius);
  background: linear-gradient(135deg, #0a6fd0, #0055a4); color: #fff; margin-bottom: 1.4rem; }
.horo-hero__emoji { font-size: 3rem; line-height: 1; }
.horo-hero__id { flex: 1; }
.horo-hero__id h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.horo-hero__dates { color: rgba(255,255,255,.85); font-weight: 600; font-size: .92rem; }
.horo-hero__energy { text-align: center; }
.horo-hero__pct { display: block; font-size: 1.8rem; font-weight: 800; }
.horo-hero__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.8); }

.horo-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 1.4rem; align-items: start; }
.horo-main { display: grid; gap: 1.2rem; min-width: 0; }
.horo-intro { font-size: 1.2rem; line-height: 1.6; color: var(--ink); font-weight: 600; }
.horo-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.horo-cat { padding: 1.1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.horo-cat__ic { font-size: 1.4rem; }
.horo-cat h3 { font-size: 1.02rem; margin: .3rem 0 .2rem; }
.horo-cat p { color: var(--muted); font-size: .92rem; }
.horo-facts { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.horo-facts__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--faint); }
.horo-traits { display: flex; flex-wrap: wrap; gap: .5rem; }
.horo-compat { display: grid; gap: 1rem; }
.horo-compat__lbl { font-weight: 700; font-size: .92rem; }
.horo-compat__row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .5rem; }
.horo-chip { padding: .35rem .8rem; border-radius: 999px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; font-weight: 700; font-size: .88rem; }
.horo-chip--no { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.horo-side { display: grid; gap: 1rem; position: sticky; top: 70px; }
.luck__row { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid var(--border); }
.luck__row:last-of-type { border-bottom: 0; }
.luck__bar { height: 8px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; margin: .7rem 0 .3rem; }
.luck__bar span { display: block; height: 100%; background: linear-gradient(90deg, #0a6fd0, #0055a4); }
.luck__energy { font-size: .82rem; color: var(--muted); font-weight: 700; }
.sign-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
.sign-picker a { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .5rem .2rem; border-radius: 10px; border: 1px solid var(--border); font-size: 1.3rem; color: var(--ink); }
.sign-picker a span { font-size: .62rem; font-weight: 700; color: var(--muted); }
.sign-picker a:hover { border-color: var(--blue); background: var(--blue-soft); }
.sign-picker a.is-active { background: var(--blue); border-color: var(--blue); }
.sign-picker a.is-active span { color: #fff; }
@media (max-width: 980px) { .horo-grid { grid-template-columns: 1fr; } .horo-side { position: static; } }
@media (max-width: 520px) { .horo-cats { grid-template-columns: 1fr; } }

/* ---- Shared page CTA ----------------------------------------------------- */
.newscta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
  margin: 2.5rem 0 1rem; padding: 1.8rem 2rem; background: var(--blue); border-radius: var(--radius); color: #fff;
}
.newscta h2 { color: #fff; font-size: 1.5rem; }
.newscta p { color: rgba(255, 255, 255, 0.88); }
.newscta .btn--primary { background: #fff; color: var(--blue); }
.newscta .btn--primary:hover { background: #f1f5f9; }

/* ---- Météo --------------------------------------------------------------- */
.wgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.wcard { padding: 1.3rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: border-color .15s, box-shadow .15s; }
.wcard:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.wcard__top { display: flex; align-items: center; justify-content: space-between; }
.wcard__city { font-weight: 800; }
.wcard__emoji { font-size: 1.7rem; }
.wcard__temp { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1.1; margin-top: .3rem; }
.wcard__label { color: var(--muted); font-size: .92rem; }
.wcard__wind { color: var(--faint); font-size: .85rem; margin-top: .35rem; }
@media (max-width: 920px) { .wgrid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Cuisine ------------------------------------------------------------- */
.rgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.rcard { display: flex; gap: 1rem; padding: 1.1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .15s, box-shadow .15s; }
.rcard:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.rcard__emoji { width: 52px; height: 52px; flex: none; display: grid; place-items: center; font-size: 1.8rem; border-radius: 13px; background: var(--blue-soft); border: 1px solid var(--border); }
.rcard__body h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.rcard__body p { color: var(--muted); font-size: .9rem; }
.rcard__meta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .6rem; font-size: .82rem; color: var(--faint); }
.rcard__note { color: #f59e0b; font-weight: 700; }
@media (max-width: 920px) { .rgrid { grid-template-columns: 1fr; } }

/* ---- Jeux ---------------------------------------------------------------- */
.games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: start; }
.game { padding: 1.4rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.game h3 { font-size: 1.15rem; }
.game__hint { color: var(--muted); font-size: .9rem; margin: .35rem 0 1rem; }
.game__row { display: flex; gap: .5rem; }
.game__row input { flex: 1; padding: .7rem .9rem; border: 1px solid var(--border-2); border-radius: 10px; font: inherit; font-weight: 700; }
.game__row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-ring); }
.game__row--rps { justify-content: space-between; }
.rps { flex: 1; font-size: 1.8rem; padding: .6rem; background: #fff; border: 1px solid var(--border-2); border-radius: 12px; cursor: pointer; transition: all .15s; }
.rps:hover { border-color: var(--blue); background: var(--blue-soft); transform: translateY(-2px); }
.game__out { margin-top: 1rem; font-weight: 700; min-height: 1.5em; }
.game__reset { margin-top: .6rem; background: none; border: 0; color: var(--blue); font-weight: 700; cursor: pointer; padding: 0; font-size: .9rem; }
.ttt { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; max-width: 220px; }
.ttt__cell { aspect-ratio: 1; font-size: 1.8rem; font-weight: 800; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; color: var(--blue); }
.ttt__cell:hover { background: var(--blue-soft); }
@media (max-width: 920px) { .games { grid-template-columns: 1fr; } }

/* ---- Blog / news articles (image cards + detail) ------------------------- */
.artgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.artcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s; }
.artcard:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.artcard__img { display: block; height: 170px; background: var(--bg-alt) center/cover no-repeat; }
.artcard__body { display: flex; flex-direction: column; gap: .45rem; padding: 1rem 1.1rem 1.2rem; }
.artcard__cat { font-size: .72rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--blue); }
.artcard__title { font-weight: 700; font-size: 1.05rem; line-height: 1.3; color: var(--ink); }
.artcard__sum { color: var(--muted); font-size: .9rem; }
.artcard__meta { margin-top: auto; padding-top: .3rem; color: var(--faint); font-size: .82rem; }
/* lead = full-width hero card with side image */
.artcard--lead { grid-column: span 3; flex-direction: row; }
.artcard--lead .artcard__img { height: auto; flex: 0 0 52%; min-height: 280px; }
.artcard--lead .artcard__body { justify-content: center; gap: .6rem; padding: 2rem; }
.artcard--lead .artcard__title { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.artcard--lead .artcard__sum { font-size: 1.02rem; }
@media (max-width: 920px) { .artgrid { grid-template-columns: repeat(2, 1fr); } .artcard--lead { grid-column: span 2; flex-direction: column; } .artcard--lead .artcard__img { flex: none; height: 220px; min-height: 0; } }
@media (max-width: 560px) { .artgrid { grid-template-columns: 1fr; } .artcard--lead { grid-column: auto; } }

.pager { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.pager__btn { padding: .6rem 1.1rem; border: 1px solid var(--border-2); border-radius: 10px; font-weight: 700; color: var(--blue); background: #fff; }
.pager__btn:hover { border-color: var(--blue); background: var(--blue-soft); }
.pager__info { color: var(--muted); font-size: .9rem; }

/* article detail — two-column (content + sidebar), chatzona-style */
.article__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2.6rem; align-items: start; }
.post { min-width: 0; }
.post__deck { font-size: 1.2rem; line-height: 1.6; color: var(--muted); margin: .3rem 0 1.2rem; }
.crumbs { color: var(--faint); font-size: .9rem; margin-bottom: 1rem; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--blue); }
.post__cat { font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
.post__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .5rem 0 .6rem; line-height: 1.12; }
.post__meta { color: var(--muted); font-size: .95rem; margin-bottom: 1.4rem; }
.post__meta b { color: var(--ink); }
.post__img { width: 100%; height: clamp(240px, 42vw, 420px); border-radius: var(--radius); background: var(--bg-alt) center/cover no-repeat; margin-bottom: 1.6rem; }
/* byline */
.post__byline { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.1rem; }
.post__avatar { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(140deg, #0a6fd0, #0055a4); color: #fff; font-weight: 800; }
.post__byline b { font-size: .95rem; }
.post__sub { display: block; color: var(--muted); font-size: .85rem; }
/* tags */
.post__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.post__tag { font-size: .8rem; font-weight: 700; color: var(--blue); background: var(--blue-soft); border: 1px solid #d6e4f3; border-radius: 999px; padding: .25rem .7rem; }
/* full body */
.post__body { font-size: 1.14rem; line-height: 1.68; color: #243244; max-width: 68ch; }
.post__body p { margin: 0 0 1rem; }
.post__body p:first-of-type { font-size: 1.22rem; line-height: 1.55; color: var(--ink); margin-bottom: 1.1rem; }
.post__body p:first-of-type::first-letter { float: left; font-size: 3.4rem; line-height: .82; font-weight: 800; color: var(--blue); padding: .25rem .5rem 0 0; }
.post__body h2 { font-size: 1.4rem; line-height: 1.25; margin: 1.9rem 0 .6rem; color: var(--ink); }
.post__body a { color: var(--blue); text-decoration: underline; }
/* foot: sources + share */
.post__foot { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.post__sources { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.post__sources a { color: var(--blue); font-weight: 600; }
.share { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.share__label { color: var(--muted); font-size: .9rem; font-weight: 600; }
.share__btn { display: inline-flex; align-items: center; gap: .3rem; padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--border-2); background: #fff; color: var(--ink); font: inherit; font-weight: 700; font-size: .88rem; cursor: pointer; }
.share__btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.related { margin-top: 3rem; }
.related h2 { font-size: 1.4rem; margin-bottom: 1.1rem; }

/* article sidebar */
.sidebar { position: sticky; top: 70px; display: grid; gap: 1rem; }
.side-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.side-card__h { font-size: 1.05rem; margin-bottom: .9rem; }
.side-card__txt { color: var(--muted); font-size: .9rem; margin-bottom: .8rem; }
.side-news { display: grid; gap: .9rem; }
.side-item { display: flex; gap: .7rem; align-items: flex-start; }
.side-item:hover .side-item__title { color: var(--blue); }
.side-item__img { width: 64px; height: 48px; flex: none; border-radius: 9px; background: var(--bg-alt) center/cover no-repeat; }
.side-item__body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.side-item__cat { font-size: .68rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--blue); }
.side-item__title { font-size: .9rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.side-news-signup input { width: 100%; padding: .7rem .9rem; margin-bottom: .6rem; border: 1px solid var(--border-2); border-radius: 10px; font: inherit; }
.side-news-signup input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-ring); }
.nl-ok { display: block; color: var(--green); font-weight: 700; }
.side-cats { display: flex; flex-direction: column; }
.side-cats a { padding: .55rem .2rem; border-bottom: 1px solid var(--border); color: var(--ink); font-weight: 600; font-size: .92rem; }
.side-cats a:last-child { border-bottom: 0; }
.side-cats a:hover { color: var(--blue); }
@media (max-width: 980px) {
  .article__grid { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .side-news-signup { grid-column: span 2; }
}
@media (max-width: 600px) { .sidebar { grid-template-columns: 1fr; } .side-news-signup { grid-column: auto; } }

/* ---- Legal / prose ------------------------------------------------------- */
.legalpage { max-width: 760px; }
.prose { color: var(--ink); }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .6rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--muted); }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ==========================================================================
   SWAYGO-STYLE STUNNING HERO — centered, floating entry pill, marquee
   ========================================================================== */
.annbar {
  background: var(--blue); color: #fff; text-align: center;
  font-size: 0.86rem; font-weight: 600; padding: 0.5rem 1rem;
}
.annbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.annbar a:hover { opacity: 0.85; }

.hero--center { text-align: center; padding: 3.6rem 0 0; }
.eyebrow--center { justify-content: center; color: var(--blue); }
.eyebrow--center::before { width: 7px; height: 7px; border-radius: 50%; opacity: 1; }

.hero--center .hero__title {
  font-size: clamp(2.7rem, 6.4vw, 5rem); line-height: 1.02; letter-spacing: -0.03em;
  margin: 1rem auto 0; max-width: 18ch; text-align: center;
}
.hero--center .hero__title em { font-style: normal; color: var(--blue); }
.hero__lede--center { margin: 1.2rem auto 0; max-width: 40rem; text-align: center; font-size: 1.15rem; }

/* floating pill entry bar */
.entrybar {
  display: flex; align-items: stretch;
  max-width: 780px; margin: 2.3rem auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  box-shadow: 0 26px 60px -20px rgba(15, 23, 42, 0.28);
  padding: 0.5rem 0.5rem 0.5rem 0.7rem; text-align: left;
}
.entrybar__field { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 0.5rem 1.3rem; min-width: 0; }
.entrybar__field--main { flex: 1.7; }
.entrybar__field--sm { flex: 0.65; }
.entrybar__field > span { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--faint); }
.entrybar__field input, .entrybar__field select { border: 0; outline: 0; background: transparent; font: inherit; font-weight: 700; color: var(--ink); width: 100%; padding: 2px 0; appearance: none; }
.entrybar__field input::placeholder { color: var(--faint); font-weight: 600; }
.entrybar__sep { width: 1px; align-self: center; height: 34px; background: var(--border); flex: none; }
.entrybar__btn { flex: none; align-self: stretch; border-radius: 999px; padding: 0 1.8rem; font-size: 1.02rem; white-space: nowrap; }
@media (max-width: 720px) {
  .entrybar { flex-direction: column; border-radius: 22px; padding: 0.6rem; box-shadow: var(--shadow-lg); }
  .entrybar__field { padding: 0.7rem 1rem; }
  .entrybar__sep { width: auto; height: 1px; align-self: stretch; }
  .entrybar__btn { padding: 0.95rem; margin-top: 0.4rem; }
}

.hero__pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.hpill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 1rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: 0.9rem; font-weight: 600; color: var(--muted); transition: all 0.15s; }
.hpill:hover { border-color: var(--blue); color: var(--blue); }
.hpill--live { color: var(--ink); }
.hpill--live b { color: var(--blue); }

/* dark marquee strip */
.marquee { margin-top: 2.8rem; padding: 0.95rem 0; background: #0f172a; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 2.4rem; width: max-content; animation: marq 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.mtag { color: rgba(255, 255, 255, 0.82); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ==========================================================================
   MEGA-MENU · JOKES · QUIZ · TOOLS  (full-portal extras)
   ========================================================================== */
.nav__mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(6px);
  display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); gap: 1.2rem;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.4rem; opacity: 0; visibility: hidden; z-index: 60;
  transition: opacity .16s, transform .16s, visibility .16s;
}
.nav__more:hover .nav__mega, .nav__more:focus-within .nav__mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__mega-col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-bottom: .5rem; }
.nav__mega-col a { display: block; padding: .4rem .5rem; border-radius: 8px; color: var(--ink); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.nav__mega-col a:hover { background: var(--blue-soft); color: var(--blue); }

/* jokes */
.jokes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.joke { text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; cursor: pointer; font: inherit; transition: border-color .15s, box-shadow .15s, transform .15s; }
.joke:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.joke__q { display: block; font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.4; }
.joke__a { display: block; margin-top: .8rem; padding-top: .8rem; border-top: 1px dashed var(--border-2); color: var(--blue); font-weight: 700; }
.joke__a[hidden] { display: none; }
.joke__cta { display: inline-block; margin-top: .8rem; color: var(--muted); font-size: .85rem; font-weight: 700; }
@media (max-width: 920px) { .jokes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .jokes { grid-template-columns: 1fr; } }

/* quiz / tests */
.quiz { max-width: 620px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quiz__bar { height: 8px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; margin-bottom: 1.6rem; }
.quiz__bar span { display: block; height: 100%; background: var(--blue); border-radius: 99px; transition: width .25s ease; }
.quiz__q { font-size: 1.3rem; margin-bottom: 1.1rem; }
.quiz__opts { display: grid; gap: .6rem; }
.quiz__opt { text-align: left; padding: .95rem 1.1rem; border: 1px solid var(--border-2); border-radius: 12px; background: #fff; font: inherit; font-weight: 600; cursor: pointer; transition: all .15s; }
.quiz__opt:hover { border-color: var(--blue); background: var(--blue-soft); color: var(--blue); transform: translateX(3px); }
.quiz__result { text-align: center; padding: 1rem 0; }
.quiz__badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--blue-soft); border-radius: 99px; padding: .3rem .8rem; }
.quiz__result h3 { font-size: 2rem; margin: .8rem 0 .4rem; color: var(--blue); }
.quiz__result p { color: var(--muted); margin-bottom: 1.4rem; }

/* tool select reuse */
.tool-sel { padding: .7rem .9rem; border: 1px solid var(--border-2); border-radius: 10px; font: inherit; font-weight: 700; background: #fff; }

/* ---- Outils hub (12 tools) ---------------------------------------------- */
.toolgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.1rem; }
.tool { display: flex; flex-direction: column; gap: .6rem; padding: 1.3rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.tool:hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.tool__head { display: flex; align-items: center; gap: .6rem; }
.tool__ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; font-size: 1.3rem; border-radius: 11px; background: var(--blue-soft); border: 1px solid var(--border); }
.tool__head h3 { font-size: 1.06rem; }
.tool__desc { color: var(--muted); font-size: .88rem; margin-top: -.2rem; }
.tool__lbl { font-size: .85rem; color: var(--muted); font-weight: 600; }
.tool__range { width: 100%; accent-color: var(--blue); }
.tool__checks { display: flex; gap: 1rem; font-size: .9rem; font-weight: 600; }
.tool__checks input { accent-color: var(--blue); }
.tool__input { width: 100%; min-width: 0; padding: .7rem .85rem; border: 1px solid var(--border-2); border-radius: 10px; font: inherit; background: #fff; }
.tool__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-ring); }
textarea.tool__input { resize: vertical; }
.tool__row { display: flex; gap: .5rem; align-items: center; }
.tool__row--wrap { flex-wrap: wrap; }
.tool__row .btn { white-space: nowrap; }
.tool__eq { color: var(--faint); font-weight: 800; flex: none; }
.tool__color { width: 48px; height: 44px; flex: none; border: 1px solid var(--border-2); border-radius: 10px; background: #fff; cursor: pointer; padding: 2px; }
.tool__out { display: block; margin-top: auto; padding: .7rem .85rem; background: var(--bg-alt); border-radius: 10px; font-weight: 700; color: var(--ink); min-height: 1.2em; word-break: break-word; }
.tool__out--mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .95rem; letter-spacing: .01em; }
.tool__qr { display: grid; place-items: center; min-height: 60px; }
.tool__qr img { border-radius: 10px; border: 1px solid var(--border); }

/* ---- Bourse dashboard --------------------------------------------------- */
.tv-ticker { border-bottom: 1px solid var(--border); }
.bcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.bcard__h { font-size: 1.05rem; margin-bottom: .8rem; }
.btable { width: 100%; border-collapse: collapse; }
.btable tr { border-top: 1px solid var(--border); }
.btable tbody tr:first-child { border-top: 0; }
.btable th, .btable td { padding: .55rem .3rem; text-align: left; }
.btable th[scope=row] { font-weight: 600; color: var(--ink); }
.btable__val { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.btable__u { color: var(--faint); font-weight: 600; font-size: .78rem; }
.btable__chg { text-align: right; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.is-up { color: #16a34a; }
.is-down { color: #dc2626; }

/* index cards */
.idxgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-bottom: 1.4rem; }
.idxcard { display: flex; flex-direction: column; gap: .2rem; padding: .9rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.idxcard__name { font-size: .82rem; color: var(--muted); font-weight: 600; }
.idxcard__val { font-size: 1.25rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.idxcard__chg { font-size: .85rem; font-weight: 800; }
@media (max-width: 920px) { .idxgrid { grid-template-columns: repeat(2, 1fr); } }

/* dashboard layout */
.bourse-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 1.4rem; align-items: start; }
.bourse-main { display: grid; gap: 1.2rem; min-width: 0; }
.movers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.bourse-side { display: grid; gap: 1rem; position: sticky; top: 70px; }
.invest .side-card__txt { margin-bottom: .8rem; }
.side-cats button { display: block; width: 100%; text-align: left; padding: .55rem .6rem; border: 0; background: none; border-bottom: 1px solid var(--border); color: var(--ink); font: inherit; font-weight: 600; font-size: .92rem; cursor: pointer; border-radius: 8px; }
.side-cats button:last-child { border-bottom: 0; }
.side-cats button:hover { background: var(--blue-soft); color: var(--blue); }

/* full table */
.bcard--table { padding: .6rem; }
.btable-scroll { overflow-x: auto; }
.btable--full { min-width: 560px; }
.btable--full thead th { font-size: .72rem; text-transform: uppercase; letter-spacing: .03em; color: var(--faint); font-weight: 800; border-bottom: 1px solid var(--border); padding: .5rem .5rem; }
.btable--full th[scope=row] { padding-left: .6rem; }
.btable--full td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; padding-right: .6rem; }
.btable--full td.soft { color: var(--muted); font-weight: 600; }
.btable--full tbody tr:hover { background: var(--bg-alt); }

@media (max-width: 980px) {
  .bourse-grid { grid-template-columns: 1fr; }
  .bourse-side { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) { .movers { grid-template-columns: 1fr; } .bourse-side { grid-template-columns: 1fr; } }

/* ==========================================================================
   HERO (chatzona two-column) — badge, headline, popular-rooms card
   ========================================================================== */
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.7); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--muted);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
}
.hero__badge .dot { background: var(--rose); box-shadow: 0 0 0 0 rgba(255, 77, 125, 0.5); animation: pulse-rose 2.4s ease-out infinite; }
@keyframes pulse-rose { 0% { box-shadow: 0 0 0 0 rgba(255, 77, 125, 0.5); } 70% { box-shadow: 0 0 0 7px rgba(255, 77, 125, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 77, 125, 0); } }
.hero__badge b { color: var(--ink); font-weight: 800; }
.hero__h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; margin: .3rem 0 1.1rem;
  text-wrap: balance;
}
.hero__h1 em {
  font-style: italic; font-weight: 600;
  background: linear-gradient(115deg, var(--rose) 0%, #b14bff 45%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hstats { flex-wrap: wrap; }
.hstat b { font-family: var(--font-display); }

/* staggered hero reveal on load */
.hero__copy > *, .h-card { animation: rise .7s cubic-bezier(.2,.75,.3,1) both; }
.hero__copy > *:nth-child(1) { animation-delay: .02s; }
.hero__copy > *:nth-child(2) { animation-delay: .10s; }
.hero__copy > *:nth-child(3) { animation-delay: .18s; }
.hero__copy > *:nth-child(4) { animation-delay: .26s; }
.hero__copy > *:nth-child(5) { animation-delay: .34s; }
.h-card { animation-delay: .22s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.field__hint { float: right; font-weight: 600; color: var(--faint); font-size: .76rem; }
.entry__micro { font-size: .8rem; color: var(--faint); margin: -.3rem 0 1rem; }
.entry__legal { font-size: .78rem; color: var(--faint); text-align: center; margin-top: .9rem; }
.entry__legal a { color: var(--blue); font-weight: 600; }

/* popular rooms inside the entry card */
.poprooms { border: 1px solid var(--border); border-radius: 12px; padding: .7rem; margin-bottom: 1rem; background: var(--bg); }
.poprooms__head { display: flex; align-items: center; justify-content: space-between; margin: 0 .3rem .5rem; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--faint); }
.poprooms__on { display: inline-flex; align-items: center; gap: .35rem; text-transform: none; letter-spacing: 0; color: var(--green); }
.poprooms__on b { color: var(--green); }
.poprooms__list { display: grid; gap: .25rem; }
.poproom { display: flex; align-items: center; gap: .6rem; width: 100%; text-align: left; padding: .5rem .6rem; border: 1px solid transparent; border-radius: 9px; background: none; font: inherit; cursor: pointer; transition: background .12s, border-color .12s; }
.poproom:hover { background: #fff; border-color: var(--border); }
.poproom.is-sel { background: var(--blue-soft); border-color: #bcd5f3; }
.poproom__emoji { width: 26px; text-align: center; font-size: 1.1rem; flex: none; }
.poproom__name { flex: 1; font-weight: 600; color: var(--ink); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.poproom__count { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 700; color: var(--green); }

/* ==========================================================================
   ENTRY CARD — exact chatzona ".h-card" recipe
   ========================================================================== */
.h-card {
  position: relative; isolation: isolate;
  background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px; padding: 28px; color: var(--ink);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px) saturate(140%);
}
/* gradient halo edge */
.h-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  padding: 1px; background: linear-gradient(140deg, var(--rose), #b14bff 40%, var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.55;
}
.h-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; }
.h-card-sub { font-size: 13.5px; color: #64748b; margin: .3rem 0 1.2rem; }
.h-card-lab { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; font-weight: 700; font-size: .95rem; color: var(--ink); }
.h-card-lab label { font-weight: 700; }
.count { font-size: 11.5px; font-weight: 700; color: #94a3b8; }
.cz-input {
  width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 14px 16px; font-size: 16px; color: var(--ink); outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.cz-input::placeholder { color: #94a3b8; }
.cz-input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px var(--blue-ring); }
.cz-input--mono { font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace; letter-spacing: .01em; }
.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; }
.h-card-rooms { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.h-card-room {
  display: flex; align-items: center; gap: 7px; width: 100%; text-align: left;
  background: #f8fafc; border: 1px solid transparent; border-radius: 10px;
  padding: 10px 12px; font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; transition: border-color .12s, background .12s;
}
.h-card-room:hover { border-color: var(--blue); background: #fff; }
.h-card-room em { margin-left: auto; font-style: normal; font-size: 11.5px; font-weight: 700; color: #94a3b8; }
.h-card .cz-btn--enter { margin-top: 16px; padding: .85rem 1.4rem; font-size: 1rem; }
.h-card-foot { font-size: 11.5px; color: #94a3b8; text-align: center; margin-top: 12px; }
.h-card-foot a { color: var(--blue); font-weight: 600; }
@media (max-width: 420px) { .h-card-rooms { grid-template-columns: 1fr; } }

/* ==========================================================================
   SALONS directory page (/salons)
   ========================================================================== */
.salonshero { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.salonshero .eyebrow { margin-bottom: .4rem; }
.salonshero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .4rem; }
.salonshero p { color: var(--muted); font-size: 1.05rem; }
.salonshero p b { color: var(--blue); }
.cat-block { margin-bottom: 2.4rem; }
.cat-h { display: flex; align-items: baseline; gap: .6rem; font-size: 1.4rem; margin-bottom: 1rem; }
.cat-h__n { font-size: .85rem; font-weight: 700; color: var(--faint); }
.salons-more { text-align: center; margin-top: 1.4rem; }

/* ==========================================================================
   SALON detail page (/salon/<key>)
   ========================================================================== */
.salon__link { color: inherit; text-decoration: none; }
.salon__link:hover { text-decoration: underline; }
.cn-hero { display: flex; align-items: center; gap: 1.3rem; padding: 1.8rem; border-radius: var(--radius); background: linear-gradient(135deg, #0a6fd0, #0055a4); color: #fff; margin-bottom: 1.4rem; }
.cn-hero__emoji { font-size: 3rem; line-height: 1; flex: none; }
.cn-hero__id { flex: 1; min-width: 0; }
.cn-hero__id h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cn-hero__id p { color: rgba(255, 255, 255, .9); margin: .2rem 0 .7rem; }
.cn-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.cn-badges span { font-size: .8rem; font-weight: 700; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; padding: .25rem .7rem; }
.cn-hero__on { text-align: center; flex: none; }
.cn-hero__on b { display: block; font-size: 1.8rem; font-weight: 800; }
.cn-hero__on span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255, 255, 255, .8); }
.cn-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 1.4rem; align-items: start; }
.cn-main { display: grid; gap: 1.4rem; min-width: 0; }
.cn-enter { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; }
.cn-enter__lab { display: block; font-weight: 700; margin-bottom: .7rem; }
.cn-enter__row { display: flex; gap: .6rem; }
.cn-enter__row .cz-input { flex: 1; }
.cn-enter__row .btn { white-space: nowrap; }
.cn-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .9rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.cn-about h2, .cn-related h2, .cn-faq h2 { font-size: 1.4rem; margin-bottom: .8rem; }
.cn-about p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.cn-about p b, .cn-about strong { color: var(--ink); }
.cn-faq details { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: .9rem 1.1rem; margin-bottom: .6rem; }
.cn-faq summary { font-weight: 700; cursor: pointer; }
.cn-faq details p { color: var(--muted); margin-top: .6rem; }
.cn-side { display: grid; gap: 1rem; position: sticky; top: 70px; }
@media (max-width: 980px) { .cn-grid { grid-template-columns: 1fr; } .cn-side { position: static; } }
@media (max-width: 560px) { .cn-enter__row { flex-direction: column; } .cn-hero { flex-wrap: wrap; } }

/* ==========================================================================
   "BLEU NUIT" ELEVATION LAYER — applied on top of the base portal styles
   ========================================================================== */

/* Emoji/icon tiles everywhere: soft gradient chips instead of flat blue-soft */
.fsalon__emoji, .salon__emoji, .hsign__emoji, .feat__ico, .rcard__emoji,
.tool__ico, .wcard__emoji, .step::before {
  background: linear-gradient(140deg, var(--blue-soft), #fff) !important;
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 #fff, 0 4px 12px -8px rgba(20, 82, 204, 0.4);
}

/* Card hover: lift with a blue→rose glow (shared across the site) */
.salon:hover, .fsalon:hover, .artcard:hover, .ncard:hover {
  border-color: transparent !important;
  box-shadow: 0 24px 50px -22px rgba(20, 40, 110, 0.4), 0 0 0 1px rgba(20, 82, 204, 0.18) !important;
}
.salon:hover .salon__emoji, .fsalon:hover .fsalon__emoji {
  background: linear-gradient(140deg, #2a6bff, var(--blue) 60%, var(--rose)) !important; color: #fff;
}

/* Accent bento tile → vivid gradient with rose warmth */
.feat--accent {
  background: linear-gradient(140deg, #1a3aa8, var(--blue) 50%, #7a2bd0) !important;
  border-color: transparent !important; box-shadow: var(--glow-blue);
}
.feat--accent h3 { font-family: var(--font-display); }

/* Section headings: editorial display serif, a touch larger */
.section__head h2, .pagehead h1, .salonshero h1 { letter-spacing: -0.015em; }
.section__head h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }

/* Filter pills + featured "all" link adopt the rose↔blue duo */
.filter.is-active { background: linear-gradient(135deg, #2a6bff, var(--blue)); border-color: transparent; box-shadow: var(--glow-blue); }
.feated__all { color: var(--rose); }
.feated__all:hover { color: var(--rose-dark); }

/* Online-count chips: warmer green glass */
.fsalon__count, .salon__badge { box-shadow: inset 0 1px 0 #fff; }

/* Announcement bar: gradient ribbon */
.annbar { background: linear-gradient(90deg, var(--blue), #6a2bd0 50%, var(--rose)); }

/* Marquee: tags get a subtle gradient sheen + rose hashes */
.mtag { color: rgba(255, 255, 255, 0.9); }

/* Drop-caps & accents on article body switch to rose for warmth */
.post__body p:first-of-type::first-letter { color: var(--rose); }

/* Salon detail + horoscope heroes: richer tri-tone gradient */
.cn-hero, .horo-hero { background: linear-gradient(135deg, #1a3aa8 0%, var(--blue) 48%, #7a2bd0 100%) !important; box-shadow: var(--glow-blue); }

/* Plain links lean to warm rose on hover (chips/menus keep their blue tint) */
.crumbs a:hover, .side-cats a:hover, .nav__links a:hover, .feated__all:hover { color: var(--rose); }

/* ==========================================================================
   LA FRANCE EN DIRECT — live interactive map (signature section)
   ========================================================================== */
.livefr-wrap { padding-top: 1.4rem; }
.livefr {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 30px; padding: 2.6rem clamp(1rem, 4vw, 3.2rem) 2.2rem; color: #fff;
  background: radial-gradient(125% 120% at 50% -10%, #1b2350, #0c1230 72%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
/* internal aura glows */
.livefr::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(48% 40% at 26% 8%, rgba(42, 107, 255, 0.32), transparent 62%),
    radial-gradient(46% 46% at 82% 92%, rgba(255, 77, 125, 0.26), transparent 60%),
    radial-gradient(40% 40% at 60% 40%, rgba(155, 110, 255, 0.18), transparent 64%);
}
.livefr__head { text-align: center; max-width: 42rem; margin: 0 auto 0.6rem; }
.livefr__head .eyebrow { color: #ff9bb6; }
.livefr__head h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 0.5rem; }
.livefr__head h2 em {
  font-style: italic;
  background: linear-gradient(115deg, var(--rose), #b14bff 50%, #5b8cff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.livefr__head p { color: rgba(255, 255, 255, 0.72); margin-top: 0.55rem; font-size: 1.05rem; }
.livefr__head b { color: #fff; font-weight: 800; }

.livefr__stage { position: relative; }
.frmap { display: block; width: 100%; max-width: 600px; height: auto; margin: 0.6rem auto 0; overflow: visible; }
.frmap__land {
  fill: rgba(255, 255, 255, 0.025); stroke: url(#frstroke); stroke-width: 2.2; stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(91, 140, 255, 0.45));
  stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: frdraw 2.4s ease forwards 0.25s;
}
@keyframes frdraw { to { stroke-dashoffset: 0; } }

.city { cursor: pointer; transition: transform 0.2s cubic-bezier(.2,.8,.2,1); opacity: 0;
        animation: cityin 0.5s ease forwards; animation-delay: calc(1.5s + var(--i) * 0.07s); }
@keyframes cityin { to { opacity: 1; } }
.city:hover, .city:focus-visible { transform: scale(1.18); outline: none; }
.city__halo { fill: var(--halo); opacity: 0.4; transform-box: fill-box; transform-origin: center;
              animation: cityping 2.8s ease-out infinite; animation-delay: calc(var(--i) * 0.2s); }
@keyframes cityping { 0% { transform: scale(1); opacity: 0.45; } 70%, 100% { transform: scale(2.6); opacity: 0; } }
.city__dot { fill: var(--halo); stroke: rgba(255, 255, 255, 0.9); stroke-width: 1.5;
             filter: drop-shadow(0 0 7px var(--halo)); }
.city__core { fill: rgba(255, 255, 255, 0.92); }
.city__name { fill: #fff; font-family: var(--font); font-size: 12.5px; font-weight: 700;
              paint-order: stroke; stroke: rgba(8, 12, 30, 0.55); stroke-width: 3px; }
.city__num { fill: var(--halo); font-family: var(--font); font-size: 11px; font-weight: 800;
             paint-order: stroke; stroke: rgba(8, 12, 30, 0.55); stroke-width: 3px; }
.city--hot  { --halo: #ff4d7d; }
.city--warm { --halo: #b88bff; }
.city--calm { --halo: #5b8cff; }
.city--calm .city__name { opacity: 0.7; }
.city--calm .city__num,
.city--warm .city__num { fill: #cdd7ff; }

.livefr__legend { display: flex; justify-content: center; gap: 1.3rem; list-style: none;
                  margin: 0.4rem 0 0; padding: 0; }
.lg { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600;
      color: rgba(255, 255, 255, 0.66); }
.lg::before { content: ""; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }
.lg--hot::before { background: #ff4d7d; color: #ff4d7d; }
.lg--warm::before { background: #b88bff; color: #b88bff; }
.lg--calm::before { background: #5b8cff; color: #5b8cff; }

.livefr__far { display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
               gap: 0.55rem; margin-top: 1.4rem; }
.livefr__far > span { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; font-weight: 600; }
.farpill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem;
           border-radius: 999px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14);
           color: #fff; font-size: 0.88rem; font-weight: 600; transition: all 0.15s; }
.farpill b { color: #ff9bb6; font-weight: 800; }
.farpill:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }

@media (max-width: 560px) {
  .livefr { padding: 2rem 1rem 1.6rem; border-radius: 24px; }
  .city__name { font-size: 14px; } .city__num { font-size: 13px; }
  .livefr__legend { gap: 0.9rem; }
}

/* ==========================================================================
   LE POULS — live activity feed band
   ========================================================================== */
.pouls-wrap { padding-top: 1.8rem; }
.pouls {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 1.4rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 1.6rem; box-shadow: var(--shadow); overflow: hidden;
}
.pouls__pulse { display: flex; flex-direction: column; }
.pouls__big { margin: 0.6rem 0 0.9rem; }
.pouls__big b { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 600; line-height: 1; color: var(--blue); font-variant-numeric: tabular-nums; }
.pouls__big span { color: var(--muted); font-size: 0.95rem; }
/* equalizer heartbeat */
.beat { display: flex; align-items: flex-end; gap: 3px; height: 46px; margin: 0.3rem 0 1.1rem; }
.beat__b { flex: 1; min-width: 0; border-radius: 3px; background: linear-gradient(180deg, var(--rose), var(--blue)); height: 20%; animation: beat 1.3s ease-in-out infinite; }
.beat__b:nth-child(3n) { animation-duration: 1.7s; } .beat__b:nth-child(3n+1) { animation-duration: 1.05s; }
.beat__b:nth-child(2n) { animation-delay: -0.4s; } .beat__b:nth-child(4n) { animation-delay: -0.8s; } .beat__b:nth-child(5n) { animation-delay: -0.2s; }
@keyframes beat { 0%, 100% { height: 18%; } 50% { height: 90%; } }
.pouls__stats { display: flex; gap: 1.6rem; margin-top: auto; padding-top: 0.6rem; border-top: 1px solid var(--border); }
.pstat b { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.pstat span { font-size: 0.8rem; color: var(--muted); }

.pouls__live { display: flex; flex-direction: column; min-width: 0; }
.pouls__livehead { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.pevents { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; min-height: 232px; }
.pevent { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0.2rem; border-bottom: 1px dashed var(--border); animation: slidein 0.5s cubic-bezier(.2,.8,.2,1) both; }
.pevent:last-child { border-bottom: 0; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.pevent__ic { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 9px; background: var(--blue-soft); font-size: 0.95rem; }
.pevent--hot .pevent__ic { background: var(--rose-soft); }
.pevent--talk .pevent__ic { background: #f0e8ff; }
.pevent--new .pevent__ic { background: #e9fbf1; }
.pevent__tx { flex: 1; min-width: 0; font-size: 0.93rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pevent__tx b { color: var(--ink); font-weight: 700; }
.pevent__tx .ps { color: var(--blue); font-weight: 700; }
.pevent__tx em { color: var(--rose); font-style: normal; font-weight: 800; }
.pevent__t { flex: none; font-size: 0.72rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.pevent:first-child .pevent__t { color: var(--green); font-weight: 700; }

.pouls__hot { display: flex; align-items: center; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--border); }
.pouls__hotlbl { font-size: 0.82rem; font-weight: 700; color: var(--faint); }
.hotchip { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.32rem 0.7rem; border-radius: 999px; background: var(--bg-alt); border: 1px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--ink); transition: all 0.15s; }
.hotchip em { font-style: normal; font-weight: 800; color: var(--green); }
.hotchip:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
@media (max-width: 760px) { .pouls { grid-template-columns: 1fr; } .pevent__tx { white-space: normal; } }

/* ==========================================================================
   MON ESPACE — no-signup browser profile (level, streak, badges, mood)
   ========================================================================== */
.espace { max-width: 900px; }
.esp-hero {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 1.4rem;
  padding: 1.8rem; border-radius: 24px; color: #fff; margin: 0.6rem 0 1.2rem;
  background: radial-gradient(120% 130% at 0% 0%, #1b2350, #0c1230 75%);
  border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-lg);
}
.esp-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 60% at 85% 20%, rgba(255, 77, 125, 0.28), transparent 60%),
              radial-gradient(40% 60% at 15% 90%, rgba(42, 107, 255, 0.3), transparent 60%); }
.esp-ava { position: relative; width: 84px; height: 84px; flex: none; display: grid; place-items: center;
  border-radius: 24px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, #2a6bff, var(--rose)); box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5); }
.esp-id { position: relative; flex: 1; min-width: 0; }
.esp-id .eyebrow { color: #ff9bb6; }
.esp-id h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.2rem); cursor: pointer; display: inline-block; }
.esp-id h1:hover { text-decoration: underline dotted; text-underline-offset: 4px; }
.esp-titleline { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin: 0.15rem 0 0.7rem; }
.esp-titleline b { color: #fff; }
.esp-xp { display: flex; align-items: center; gap: 0.7rem; max-width: 420px; }
.esp-xpbar { flex: 1; height: 10px; border-radius: 99px; background: rgba(255, 255, 255, 0.14); overflow: hidden; }
.esp-xpbar i { display: block; height: 100%; border-radius: 99px; width: 6%;
  background: linear-gradient(90deg, #5b8cff, var(--rose)); transition: width 0.7s cubic-bezier(.2,.8,.2,1); }
.esp-xptxt { font-size: 0.76rem; color: rgba(255, 255, 255, 0.7); white-space: nowrap; font-variant-numeric: tabular-nums; }
.esp-flame { position: relative; flex: none; text-align: center; padding: 0.6rem 1.1rem; border-radius: 18px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); }
.esp-flame__ic { font-size: 1.5rem; display: block; }
.esp-flame b { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.esp-flame span { display: block; font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); }

.esp-row { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.esp-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; margin-bottom: 1rem; }
.esp-card h2 { font-size: 1.2rem; }
.esp-cardhead { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.esp-count { font-size: 0.85rem; font-weight: 800; color: var(--rose); }
.esp-sub { color: var(--muted); font-size: 0.92rem; margin-top: 0.2rem; }
.moods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.mood { width: 48px; height: 48px; font-size: 1.5rem; border-radius: 14px; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--border); transition: all 0.15s; }
.mood:hover { transform: translateY(-3px) scale(1.06); border-color: var(--rose); background: var(--rose-soft); }
.mood.is-on { background: linear-gradient(140deg, var(--blue-soft), var(--rose-soft)); border-color: var(--rose); box-shadow: var(--glow-rose); transform: translateY(-2px); }
.esp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; align-content: center; }
.esp-stat { text-align: center; padding: 0.4rem; }
.esp-stat b { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 600; color: var(--blue); font-variant-numeric: tabular-nums; }
.esp-stat span { font-size: 0.8rem; color: var(--muted); }

.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 1rem; }
.badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.25rem;
  padding: 1rem 0.6rem; border-radius: 14px; background: var(--bg-alt); border: 1px solid var(--border);
  opacity: 0.55; filter: grayscale(0.7); transition: all 0.18s; }
.badge.is-got { opacity: 1; filter: none; background: linear-gradient(160deg, #fff, var(--blue-soft));
  border-color: #cfe0ff; box-shadow: var(--shadow-sm); }
.badge.is-got:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.badge__e { font-size: 1.9rem; line-height: 1; }
.badge__l { font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.badge__h { font-size: 0.72rem; color: var(--faint); }
.badge.is-got .badge__h { color: var(--green); font-weight: 700; }
.esp-resume { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  background: linear-gradient(135deg, #1a3aa8, var(--blue) 55%, #6a2bd0); border-color: transparent; color: #fff; }
.esp-resume h2, .esp-resume .esp-sub { color: #fff; }
.esp-resume .esp-sub { opacity: 0.85; }
.esp-resume .btn--primary { background: #fff; color: var(--blue); }
.esp-note { color: var(--faint); font-size: 0.85rem; text-align: center; margin: 0.4rem 0 1rem; }
.esp-note b { color: var(--muted); }
@media (max-width: 720px) { .esp-row { grid-template-columns: 1fr; } .esp-hero { flex-wrap: wrap; } .badges { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CINÉ & SÉRIES portal (/cine)
   ========================================================================== */
.cine-hero {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 1.5rem;
  margin: 0.6rem 0 1.8rem; padding: 2.4rem clamp(1.2rem, 4vw, 2.8rem); border-radius: 26px;
  background: radial-gradient(120% 130% at 0% 0%, #221a3e, #0c0f24 72%); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-lg);
}
.cine-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(45% 60% at 88% 10%, rgba(255, 77, 125, 0.3), transparent 60%),
              radial-gradient(45% 60% at 10% 95%, rgba(42, 107, 255, 0.32), transparent 60%); }
.cine-hero__txt { position: relative; flex: 1; min-width: 0; }
.cine-hero__txt .eyebrow { color: #ff9bb6; }
.cine-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.4rem 0 0.6rem; }
.cine-hero h1 em { font-style: italic; background: linear-gradient(115deg, var(--rose), #b14bff 50%, #5b8cff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cine-hero p { color: rgba(255, 255, 255, 0.74); max-width: 40rem; }
.cine-hero p b { color: #fff; }
.cine-hero__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }
.cine-hero__cta .btn--ghost { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); color: #fff; }
.cine-hero__art { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; flex: none; }
.cine-hero__art span { width: 64px; height: 64px; display: grid; place-items: center; font-size: 2rem;
  border-radius: 18px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); }
@media (max-width: 720px) { .cine-hero__art { display: none; } }

.cine-sec { margin-bottom: 2.4rem; }
.cine-sechead { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1rem; }
.cine-sechead h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
.cine-sechead span { color: var(--faint); font-size: 0.9rem; }
.cine-sechead .cine-all { margin-left: auto; color: var(--rose); font-weight: 700; font-size: 0.92rem; }

/* genre poster gradients */
.pg-drame { background: linear-gradient(140deg, #4f5bd5, #1452cc); }
.pg-thriller { background: linear-gradient(140deg, #3a3f58, #11151f); }
.pg-comedie { background: linear-gradient(140deg, #ffb347, #ff7a59); }
.pg-sf { background: linear-gradient(140deg, #00b4d8, #1452cc); }
.pg-action { background: linear-gradient(140deg, #ff4d7d, #b1153e); }
.pg-horreur { background: linear-gradient(140deg, #6a2bd0, #14091f); }
.pg-animation { background: linear-gradient(140deg, #ff7ac6, #7a2bd0); }
.pg-romance { background: linear-gradient(140deg, #ff4d7d, #ff9bb6); }
.pg-aventure { background: linear-gradient(140deg, #18b466, #0a6f5b); }

/* TOP list */
.cine-top { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.ctop { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0.8rem; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border); transition: border-color .15s, transform .15s; }
.ctop:hover { border-color: var(--rose); transform: translateY(-2px); }
.ctop__rank { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--faint); width: 1.4rem; text-align: center; flex: none; }
.ctop__poster { width: 42px; height: 42px; flex: none; display: grid; place-items: center; font-size: 1.3rem; border-radius: 10px; color: #fff; }
.ctop__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.ctop__body b { font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ctop__body span { font-size: 0.78rem; color: var(--muted); }
.ctop__note { flex: none; font-weight: 800; color: #f5a623; font-size: 0.92rem; }
@media (max-width: 640px) { .cine-top { grid-template-columns: 1fr; } }

/* filters */
.cine-filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.2rem; align-items: center; }
.cfilter { padding: 0.42rem 0.9rem; border-radius: 999px; font-size: 0.86rem; font-weight: 700;
  color: var(--muted); background: #fff; border: 1px solid var(--border-2); cursor: pointer; transition: all .15s; }
.cfilter:hover { border-color: var(--blue); color: var(--blue); }
.cfilter.is-active { background: linear-gradient(135deg, #2a6bff, var(--blue)); color: #fff; border-color: transparent; box-shadow: var(--glow-blue); }
.cfilter--plat { font-weight: 600; color: var(--ink); }
.cfilter--plat.is-active { background: linear-gradient(135deg, var(--rose), #b14bff); }
.cfilter__sep { width: 1px; height: 22px; background: var(--border-2); margin: 0 0.3rem; }

/* catalogue grid */
.cine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cfilm { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .15s, box-shadow .15s, transform .15s; }
.cfilm:hover { border-color: transparent; box-shadow: 0 22px 46px -22px rgba(20, 40, 110, .4); transform: translateY(-4px); }
.cfilm__poster { position: relative; height: 128px; display: grid; place-items: center; }
.cfilm__emoji { font-size: 3rem; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35)); }
.cfilm__kind { position: absolute; top: 8px; left: 8px; font-size: 0.66rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: #fff; background: rgba(0, 0, 0, .35); border-radius: 6px; padding: .15rem .5rem; }
.cfilm__note { position: absolute; top: 8px; right: 8px; font-size: 0.8rem; font-weight: 800; color: #fff;
  background: rgba(0, 0, 0, .4); border-radius: 999px; padding: .15rem .5rem; }
.cfilm__body { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.9rem 1rem 1rem; flex: 1; }
.cfilm__body h3 { font-size: 1.02rem; line-height: 1.2; }
.cfilm__meta { font-size: 0.78rem; color: var(--faint); font-weight: 600; }
.cfilm__body p { color: var(--muted); font-size: 0.88rem; flex: 1; }
.cfilm__foot { margin-top: 0.3rem; }
.cfilm__plat { font-size: 0.76rem; font-weight: 800; color: var(--blue); background: var(--blue-soft);
  border-radius: 999px; padding: .2rem .6rem; }
.cine-empty { text-align: center; color: var(--muted); padding: 1.5rem; }
@media (max-width: 980px) { .cine-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cine-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cine-grid { grid-template-columns: 1fr; } }

/* poll */
.cine-poll { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.cine-poll h2 { font-size: 1.3rem; }
.cine-poll__sub { color: var(--muted); font-size: 0.9rem; margin: 0.2rem 0 1rem; }
.cine-poll__opts { display: grid; gap: 0.5rem; }
.cpoll { position: relative; overflow: hidden; display: flex; align-items: center; gap: 0.6rem; width: 100%;
  text-align: left; padding: 0.7rem 0.9rem; border: 1px solid var(--border-2); border-radius: 12px;
  background: #fff; font: inherit; font-weight: 700; cursor: pointer; transition: border-color .15s; }
.cpoll:hover { border-color: var(--blue); }
.cpoll.is-mine { border-color: var(--rose); }
.cpoll__bar { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, rgba(42,107,255,.16), rgba(255,77,125,.16));
  z-index: 0; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.cpoll.is-mine .cpoll__bar { background: linear-gradient(90deg, rgba(255,77,125,.22), rgba(177,75,255,.18)); }
.cpoll__name { position: relative; z-index: 1; flex: 1; color: var(--ink); }
.cpoll__pct { position: relative; z-index: 1; color: var(--muted); font-variant-numeric: tabular-nums; }

/* actu ciné mini-news */
.cine-news { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.cnews { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: border-color .15s, transform .15s; }
.cnews:hover { border-color: var(--rose); transform: translateY(-3px); }
.cnews__img { height: 96px; background: var(--bg-alt) center/cover no-repeat; }
.cnews__t { padding: 0.7rem 0.8rem; font-size: 0.88rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
@media (max-width: 880px) { .cine-news { grid-template-columns: repeat(2, 1fr); } }

.cine-cta { background: linear-gradient(135deg, #1a3aa8, var(--blue) 50%, #6a2bd0); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } .city { opacity: 1 !important; } .frmap__land { stroke-dashoffset: 0 !important; } }
