/* ================================
   KRISPFLIX — DESIGN SYSTEM
   ================================ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  /* Colors */
  --bg:        #07080f;
  --bg2:       #0b0d18;
  --bg3:       #0f1120;
  --surface:   rgba(255,255,255,0.04);
  --surface2:  rgba(255,255,255,0.07);
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(108,99,255,0.3);

  /* Accent */
  --purple:    #6c63ff;
  --purple-d:  #4f46e5;
  --purple-l:  #a5a0ff;
  --cyan:      #22d3ee;
  --pink:      #f472b6;
  --green:     #4ade80;

  /* Text */
  --text:      #f1f2f8;
  --text-2:    #9299b8;
  --text-3:    #555d80;

  /* Effects */
  --glow-purple: 0 0 60px rgba(108,99,255,0.2);
  --shadow:      0 20px 60px rgba(0,0,0,0.5);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.3);

  /* Shape */
  --r:    12px;
  --r-sm: 8px;
  --r-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== SNOW ===== */
#snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 40px;
  background: rgba(7,8,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--purple);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 0 16px rgba(108,99,255,0.5);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.25s;
}

.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after { width: 100%; }

.btn-nav {
  background: var(--purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(108,99,255,0.3);
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--purple-d);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(108,99,255,0.5);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--purple-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--purple-l);
  background: rgba(108,99,255,0.08);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 80px;
  gap: 60px;
  overflow: hidden;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4f46e5, transparent);
  top: -200px; left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7c3aed, transparent);
  bottom: -100px; right: 100px;
  animation-delay: -3s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #06b6d4, transparent);
  top: 200px; right: -50px;
  opacity: 0.2;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(20px,-30px) scale(1.05); }
  66%     { transform: translate(-15px,20px) scale(0.97); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  color: var(--purple-l);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.neon-text {
  display: block;
  background: linear-gradient(135deg, #a5a0ff 0%, #6c63ff 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(108,99,255,0.4));
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-n {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.stat-l {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-card-preview {
  width: 100%;
  max-width: 500px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(108,99,255,0.25);
  box-shadow: var(--shadow), 0 0 80px rgba(108,99,255,0.15);
  animation: cardFloat 5s ease-in-out infinite;
  background: var(--bg3);
}

@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(0.5deg); }
  50%      { transform: translateY(-12px) rotate(-0.5deg); }
}

.hero-preview-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.hero-preview-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.4);
}

.preview-tag {
  background: rgba(250,190,50,0.15);
  border: 1px solid rgba(250,190,50,0.35);
  color: #fbbf24;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.hero-preview-info p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

/* ===== FEATURED ===== */
.featured-section {
  padding: 100px 48px;
  background: var(--bg2);
  position: relative;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.section-wrap { max-width: 1280px; margin: 0 auto; }

/* ===== SECTION HEADER ===== */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-head-left { display: flex; flex-direction: column; gap: 8px; }

.title-underline {
  width: 48px;
  height: 3px;
  background: var(--purple);
  border-radius: 3px;
}

.section-head-right {}

.btn-voir-moment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-voir-moment:hover {
  background: rgba(108,99,255,0.1);
  border-color: var(--border2);
  transform: translateY(-1px);
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.filter-tab {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 30px;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.2s;
}

.filter-tab:hover {
  color: #fff;
  border-color: var(--border2);
  background: rgba(108,99,255,0.08);
}

.filter-tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 16px rgba(108,99,255,0.4);
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ===== GAME CARD ===== */
.game-card {
  background: #12152a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(.2,.8,.3,1), box-shadow 0.28s, border-color 0.28s;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 40px rgba(108,99,255,0.15);
  border-color: rgba(108,99,255,0.35);
}

/* --- Media --- */
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0d18;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(.2,.8,.3,1);
}

.game-card:hover .card-img { transform: scale(1.05); }

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.28s;
}

.game-card:hover .card-overlay { background: rgba(0,0,0,0.42); }

.card-play-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(108,99,255,0.95);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 40px;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 24px rgba(108,99,255,0.55);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.game-card:hover .card-play-pill {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card-ribbon {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(245,158,11,0.45);
}

/* --- Body --- */
.card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

/* --- Label badge (style de la capture : fond coloré plein, pas de bordure gauche) --- */
.card-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 5px;
  align-self: flex-start;
  letter-spacing: 0.2px;
}

.label-purple { background: #6c63ff;            color: #fff; }
.label-cyan   { background: #0ea5b0;            color: #fff; }
.label-yellow { background: rgba(234,179,8,0.9); color: #fff; }
.label-green  { background: rgba(34,197,94,0.9); color: #fff; }

/* --- Title --- */
.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* --- Desc --- */
.card-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

/* --- Buttons --- */
.card-btns {
  display: flex;
  gap: 9px;
  margin-top: 4px;
}

.cBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 7px;
  transition: all 0.2s;
  white-space: nowrap;
  flex: 1;
}

.cBtn-fill {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 3px 14px rgba(108,99,255,0.4);
}

.cBtn-fill:hover {
  background: var(--purple-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108,99,255,0.55);
}

.cBtn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
}

.cBtn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

/* legacy compat */
.cbtn { display: inline-flex; align-items: center; justify-content: center;
        font-size: 0.8rem; font-weight: 600; padding: 9px 20px; border-radius: 7px;
        background: var(--purple); color: #fff; transition: all 0.2s; flex: 1; white-space: nowrap; }
.cbtn:hover { background: var(--purple-d); transform: translateY(-1px); }
.card-featured { border-color: rgba(108,99,255,0.28); }

/* ===== STATUS ON / OFF ===== */
.status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* OFF — rouge/gris */
.status-off {
  background: rgba(20, 20, 30, 0.75);
  border: 1px solid rgba(239,68,68,0.45);
  color: #f87171;
}
.status-off .status-dot {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239,68,68,0.8);
}

/* ON — vert pulsé */
.status-on {
  background: rgba(20, 20, 30, 0.75);
  border: 1px solid rgba(74,222,128,0.5);
  color: #4ade80;
}
.status-on .status-dot {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.9);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 5px rgba(74,222,128,0.8); transform: scale(1); }
  50%       { box-shadow: 0 0 14px rgba(74,222,128,1);  transform: scale(1.3); }
}

/* Carte OFF — image légèrement grisée */
.card-offline .card-img {
  filter: grayscale(30%) brightness(0.8);
}

.card-offline:hover .card-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Boutons désactivés — cliquables mais visuellement off */
.cBtn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Carte ON — légère lueur verte */
.card-online {
  border-color: rgba(74,222,128,0.2);
}
.card-online:hover {
  border-color: rgba(74,222,128,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 40px rgba(74,222,128,0.12);
}

/* ===== TOAST "PAS DISPONIBLE" ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1c2e;
  border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  min-width: 300px;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.toast strong { display: block; font-size: 0.88rem; color: #fff; margin-bottom: 2px; }
.toast p { font-size: 0.78rem; color: var(--text-2); margin: 0; }

/* ===== ABOUT ===== */
.about-section {
  padding: 100px 48px;
  background: var(--bg);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.5), transparent);
}

.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}

.about-img-col {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.about-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.15), transparent 60%);
  pointer-events: none;
}

.about-quick {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.aq-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.aq-row:last-child { border-bottom: none; }
.aq-row span:first-child { color: var(--text-2); }
.aq-row span:last-child { font-weight: 600; color: var(--text); }
.aq-row .free { color: var(--cyan); }

.about-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.about-studio {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 28px;
}

.positive { color: var(--green); }

.about-p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-p em { color: var(--purple-l); font-style: normal; }
.about-p strong { color: var(--text); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-features li div strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.about-features li div p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer-wrap { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-3);
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== ANIM ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-d); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { position: static; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.2rem; }
  .featured-section, .about-section { padding: 70px 20px; }
  .games-grid { grid-template-columns: 1fr; }
  .footer { padding: 36px 20px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .btn-voir-moment { font-size: 0.75rem; }
  .card-btns { flex-direction: column; }
}
