/* ════════════════════════════════════════════════════════════
   takoo.css - La Planète Takoo v2
   Style inspiré Guild Wars 2 buy page : sections plein écran,
   backgrounds cinematic, scroll narratif, typographie forte.
   ════════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --black: #080503;
  --deep: #120a05;
  --surface: #1a0f08;
  --card: #221610;
  --crimson: #8B1515;
  --crimson-hot: #B52525;
  --crimson-deep: #5C0D0D;
  --gold: #C49A45;
  --gold-bright: #E0B85A;
  --gold-soft: #F0D898;
  --ivory: #F5EFE0;
  --ivory-mute: rgba(245, 239, 224, 0.78);
  --ivory-faint: rgba(245, 239, 224, 0.55);
  --muted: rgba(245, 239, 224, 0.45);
  --header-h: 76px;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Rajdhani', system-ui, -apple-system, sans-serif;
  --font-serif: 'Crimson Pro', serif;
  --font-brush: 'Permanent Marker', cursive;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
sup { font-size: 0.65em; vertical-align: super; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: linear-gradient(180deg, rgba(8,5,3,.85) 0%, rgba(8,5,3,.40) 80%, transparent 100%);
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(8,5,3,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 56px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); transition: transform .25s ease; }
.brand:hover img { transform: scale(1.05); }

.primary-nav { flex: 1; }
.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.nav-item { position: relative; }

/* Default fallback for .nav-link if not brushed (mobile / i18n != fr) */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  cursor: pointer;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--ivory); }

/* Mega menus */
.mega {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(18, 10, 5, .98);
  border: 1px solid rgba(196, 154, 69, .25);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  z-index: 50;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ivory-mute);
  transition: background .2s, color .2s;
}
.mega-item:hover { background: rgba(196,154,69,.10); color: var(--ivory); }
.mega-item strong { display: block; font-size: 0.95rem; color: var(--ivory); margin-bottom: 2px; font-weight: 600; }
.mega-item span { font-size: 0.78rem; color: var(--ivory-faint); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ivory);
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.12); }
.lang-btn svg { width: 10px; height: 6px; }
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(18,10,5,.98);
  border: 1px solid rgba(196,154,69,.25);
  border-radius: 10px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  z-index: 60;
}
.lang-menu.open { display: flex; }
.lang-option {
  padding: 8px 12px;
  border-radius: 6px;
  text-align: left;
  font-size: 0.85rem;
  color: var(--ivory-mute);
  transition: background .15s, color .15s;
  width: 100%;
}
.lang-option:hover, .lang-option.active { background: rgba(196,154,69,.12); color: var(--gold-bright); }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── HERO ─── */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,5,3,.40) 0%, rgba(8,5,3,.10) 30%, rgba(8,5,3,.55) 75%, rgba(8,5,3,.95) 100%),
    linear-gradient(90deg, rgba(8,5,3,.75) 0%, rgba(8,5,3,.30) 50%, transparent 90%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 48px 120px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 8px 16px;
  border: 1px solid rgba(196,154,69,.35);
  border-radius: 4px;
  margin-bottom: 28px;
  background: rgba(196,154,69,.06);
}
.hero-title { margin-bottom: 32px; }
.hero-logo {
  width: clamp(280px, 38vw, 520px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.7));
}
.hero-lead {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--ivory-mute);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--gold-bright); font-weight: 600; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold);
}
.stat-l {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory-faint);
  margin-top: 4px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,224,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory-mute);
  animation: scroll-bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 14px; height: 14px; }
@keyframes scroll-bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--crimson);
  color: var(--ivory);
  box-shadow: 0 4px 14px rgba(139,21,21,.4);
}
.btn-primary:hover { background: var(--crimson-hot); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,21,21,.6); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(196,154,69,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,154,69,.6); filter: brightness(1.05); }
.btn-crimson {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-hot) 100%);
  color: var(--ivory);
  box-shadow: 0 4px 14px rgba(139,21,21,.5);
}
.btn-crimson:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,37,37,.7); }
.btn-ghost {
  background: rgba(245,239,224,.06);
  color: var(--ivory);
  border: 1px solid rgba(245,239,224,.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(245,239,224,.12); border-color: rgba(245,239,224,.35); transform: translateY(-2px); }
.btn-link {
  background: transparent;
  color: var(--gold-bright);
  padding: 8px 4px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}
.btn-link:hover { color: var(--gold-soft); text-decoration: underline; }

/* ─── SECTION HEADER (shared) ─── */
.section-header {
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}
.section-header--light { color: var(--ivory); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold-bright); font-family: var(--font-serif); font-weight: 400; }
.section-lead {
  font-size: 1.05rem;
  color: var(--ivory-mute);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURED (Tome 7) ─── */
.feature-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
}
.feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-bg img { width: 100%; height: 100%; object-fit: cover; }
.feature-overlay--left {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8,5,3,.95) 0%, rgba(8,5,3,.75) 35%, rgba(8,5,3,.30) 70%, rgba(8,5,3,.05) 100%);
}
.feature-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-left: 8%;
  padding: 0 24px;
}
.feature-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  margin-bottom: 24px;
}
.feature-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold-bright); font-weight: 400; }
.feature-lead {
  font-size: 1.05rem;
  color: var(--ivory-mute);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-lead strong { color: var(--gold-soft); font-weight: 600; }
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245,239,224,.08);
  border: 1px solid rgba(245,239,224,.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tag-gold { background: rgba(196,154,69,.15); border-color: rgba(196,154,69,.35); color: var(--gold-bright); }
.feature-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.price-sub {
  color: var(--ivory-faint);
  font-size: 0.95rem;
}
.feature-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.feature-cover {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36%;
  max-width: 480px;
}
.feature-cover img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.7));
  transition: transform .4s ease;
}
.feature-cover:hover img { transform: scale(1.03) rotate(-1deg); }

/* ─── CATALOGUE ─── */
.catalogue-section {
  position: relative;
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
  overflow: hidden;
}
.catalogue-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,5,3,.88) 0%, rgba(8,5,3,.78) 50%, rgba(8,5,3,.92) 100%), url('../img/bg/BG_V4_CATALOGUE_1x.webp') center/cover no-repeat;
  z-index: 0;
}
.catalogue-section > * { position: relative; z-index: 1; }
.tome-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.tome-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--surface) 100%);
  border: 1px solid rgba(196,154,69,.15);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.tome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,69,.45);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(196,154,69,.15);
}
.tome-card--latest { border-color: rgba(196,154,69,.5); box-shadow: 0 0 0 1px rgba(196,154,69,.2); }
.tome-card--soon { opacity: 0.85; }
.tome-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.tome-flag--soon { background: var(--crimson); color: var(--ivory); }
.tome-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--deep);
}
.tome-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tome-card:hover .tome-cover img { transform: scale(1.05); }
.tome-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tome-num {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
}
.tome-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.tome-desc {
  font-size: 0.85rem;
  color: var(--ivory-faint);
  line-height: 1.5;
  flex: 1;
}
.tome-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 4px;
}
.tome-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}
.tome-pages {
  font-size: 0.78rem;
  color: var(--ivory-faint);
}

/* ─── COLLECTIONS / PACKS ─── */
.collections-section {
  position: relative;
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%);
  overflow: hidden;
}
.collections-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,5,3,.88) 0%, rgba(8,5,3,.72) 48%, rgba(8,5,3,.94) 100%), url('../img/bg/BG_V4_PACKS_1x.webp') center/cover no-repeat;
  z-index: 0;
}
.collections-section > * { position: relative; z-index: 1; }
.pack-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.pack-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(196,154,69,.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.pack-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,154,69,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.pack-card--ultimate {
  border-color: var(--crimson);
  box-shadow: 0 0 0 2px rgba(139,21,21,.3), 0 12px 32px rgba(0,0,0,.4);
}
.pack-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 6px 14px;
  background: var(--crimson);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(139,21,21,.5);
}
.pack-visual {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pack-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,15,8,.6) 60%, var(--surface) 100%);
}
.pack-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.pack-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.pack-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ivory);
}
.pack-desc {
  font-size: 0.95rem;
  color: var(--ivory-mute);
  line-height: 1.6;
}
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0;
}
.price-now {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-bright);
}
.price-was {
  font-size: 1rem;
  color: var(--ivory-faint);
  text-decoration: line-through;
}

/* ─── PERSONNAGES ─── */
.chars-section {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
}
.chars-bg, .extrait-bg, .univers-bg, .game-bg, .support-bg, .tome8-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.chars-bg img, .extrait-bg img, .univers-bg img, .game-bg img, .support-bg img, .tome8-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.chars-overlay, .extrait-overlay, .univers-overlay, .game-overlay, .support-overlay, .tome8-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,5,3,.92) 0%, rgba(8,5,3,.75) 50%, rgba(8,5,3,.92) 100%);
}
.chars-section > .section-header { position: relative; z-index: 2; }
.chars-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.char-card {
  background: rgba(18,10,5,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196,154,69,.2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.char-card:hover { transform: translateY(-6px); border-color: rgba(196,154,69,.5); }
.char-portrait {
  height: 580px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 20px 16px 16px;
}
.char-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center 65%, rgba(196,154,69,.12) 0%, transparent 65%);
}
.char-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center top;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.7));
  transition: transform .4s ease;
}
.char-card:hover .char-portrait img { transform: scale(1.05); }
.char-body { padding: 24px; }
.char-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.char-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.char-desc { font-size: 0.95rem; color: var(--ivory-mute); line-height: 1.6; }

/* ─── EXTRAIT ─── */
.extrait-section {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}
.extrait-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.extrait-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ─── UNIVERS ─── */
.univers-section { position: relative; padding: 110px 24px; overflow: hidden; }
.univers-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.univers-content > .section-title, .univers-content > .section-lead, .univers-content > .eyebrow {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.univers-content > .eyebrow, .univers-content > .section-title { display: block; }
.univers-content > .section-lead { margin-bottom: 48px; }
.univers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.univers-card {
  background: rgba(18,10,5,.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196,154,69,.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s ease;
}
.univers-card:hover { transform: translateY(-4px); }
.univers-card img { width: 100%; height: 180px; object-fit: cover; }
.univers-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  padding: 20px 20px 8px;
  letter-spacing: 0.02em;
}
.univers-card p {
  padding: 0 20px 20px;
  font-size: 0.92rem;
  color: var(--ivory-mute);
  line-height: 1.5;
}

/* ─── JEU VIDÉO ─── */
.game-section { position: relative; padding: 120px 24px; overflow: hidden; }
.game-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.game-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.game-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ─── SOUTIEN (Tipeee) ─── */
.support-section { position: relative; padding: 120px 24px; overflow: hidden; }
.support-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 56px 0;
}
.support-card {
  background: rgba(18,10,5,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,154,69,.25);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.support-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.support-card--highlight { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(196,154,69,.2); }
.support-icon { font-size: 2.4rem; }
.support-illustration {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(196,154,69,.18);
  margin-bottom: 8px;
}
.support-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
}
.support-card p { color: var(--ivory-mute); font-size: 0.95rem; line-height: 1.6; }
.tipeee-widget-wrap {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(18,10,5,.85);
  border: 1px solid rgba(196,154,69,.25);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.tipeee-widget-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ─── TOME 8 TEASER ─── */
.tome8-section {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
  text-align: center;
}
.tome8-overlay {
  background: linear-gradient(180deg, rgba(8,5,3,.55) 0%, rgba(8,5,3,.40) 50%, rgba(8,5,3,.85) 100%);
}
.tome8-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.tome8-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.tome8-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.tome8-lead {
  font-size: 1.1rem;
  color: var(--ivory-mute);
  line-height: 1.7;
  margin-bottom: 36px;
}
.tome8-lead strong { color: var(--gold-bright); }
.tome8-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── COMMUNAUTÉ ─── */
.community-section {
  padding: 110px 24px;
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
}
.community-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.community-card {
  background: var(--surface);
  border: 1px solid rgba(245,239,224,.1);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  position: relative;
  overflow: hidden;
}
.community-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.08;
  transition: opacity .3s;
}
.community-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.community-card:hover::before { opacity: 0.18; }
.community-icon { font-size: 2.6rem; margin-bottom: 14px; }
.community-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 6px;
}
.community-card p { color: var(--ivory-mute); font-size: 0.92rem; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--black) 100%);
}
.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  background: rgba(245,239,224,.06);
  border: 1px solid rgba(245,239,224,.15);
  border-radius: 8px;
  color: var(--ivory);
  font-size: 1rem;
  font-family: inherit;
}
.newsletter-form input:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.newsletter-meta { font-size: 0.85rem; color: var(--ivory-faint); }
.nl-ok {
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(45,140,78,.2);
  border: 1px solid rgba(45,140,78,.4);
  border-radius: 8px;
  color: #6fdc8c;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 80px 24px 24px;
  background: var(--black);
  border-top: 1px solid rgba(196,154,69,.15);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { width: 150px; margin-bottom: 18px; }
.footer-tagline { color: var(--ivory-faint); font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--ivory-mute);
  font-size: 0.92rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,224,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ivory-faint);
}
.footer-links a { color: var(--ivory-mute); }
.footer-links a:hover { color: var(--gold-bright); }

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1100px) {
  .nav-menu { gap: 2px; }
  .feature-cover { display: none; }
  .feature-content { max-width: 100%; margin-left: 0; padding: 0 32px; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .nav-btn--brush { display: none; }
  .lang-btn span#lang-current-text { font-size: 1rem; }

  .hero-content { padding: 60px 24px 100px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-n { font-size: 2.2rem; }

  .feature-content { padding: 0 24px; }
  .feature-title { font-size: 2.6rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .hero-eyebrow { font-size: 0.7rem; padding: 6px 12px; }
  .hero-lead { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { padding: 14px 24px; font-size: 0.88rem; }
  .section-title { font-size: 2.1rem; }
  .pack-card { min-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .tipeee-widget-wrap iframe { height: 480px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ════ AJOUT V4 - COMMUNITY BACKGROUND + ICONES ════ */
.community-section { position: relative; overflow: hidden; }
.community-bg { position: absolute; inset: 0; z-index: 0; }
.community-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; filter: saturate(.95) contrast(1.05); }
.community-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,5,3,.88), rgba(8,5,3,.74) 45%, rgba(8,5,3,.94)); }
.community-section > .section-header, .community-section > .community-grid { position: relative; z-index: 2; }
.community-icon-img { display: block; width: 92px; height: 92px; object-fit: contain; margin: 0 auto 16px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.45)); }
