/* ============================================================
   TABLES.CSS — Casino Evenements
   Page "Nos Tables" — hero full viewport + table-feature
   editoriales (frame en arche + watermark de symbole) +
   section conseil
   ============================================================ */

/* ============================================================
   1. PAGE OVERRIDES — transparent header, hero pleine page
   ============================================================ */

body.page-tables {
  background-color: var(--black);
}

body.page-tables .header {
  background: transparent;
  border-bottom-color: transparent;
  transition: background var(--duration-normal) var(--ease-out),
              border-bottom-color var(--duration-normal) var(--ease-out);
}

body.page-tables .header.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-subtle);
}

body.page-tables #main-content {
  padding-top: 0;
}

/* ============================================================
   2. HERO --TABLES (full viewport, centered, frosted glass)
   ============================================================ */

.hero--tables {
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) 0;
  text-align: center;
}

.hero--tables .hero-bg img {
  object-position: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero--tables .hero-bg img {
    animation: heroTablesKenBurns 22s ease-out forwards;
    transform-origin: center center;
  }
  @keyframes heroTablesKenBurns {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
  }
}

.hero--tables::after {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 80%),
    linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.15) 50%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-tables-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 55%),
    rgba(10, 10, 10, 0.30);
  backdrop-filter: blur(4px) saturate(1.15);
  -webkit-backdrop-filter: blur(4px) saturate(1.15);
}

@media (max-width: 768px) {
  .hero-tables-blur {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 55%),
      rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(3px) saturate(1.1);
    -webkit-backdrop-filter: blur(3px) saturate(1.1);
  }
}

/* ============================================================
   3. HERO INNER (kicker / H1 / subtitle, centered)
   ============================================================ */

.hero-tables-inner {
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  text-align: center;
}

.hero--tables .hero-kicker {
  margin-bottom: var(--space-lg);
}

.hero--tables .hero-kicker::after {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 600px) {
  .hero--tables .hero-kicker {
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
  }
}

.hero--tables h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.25vw, 4.25rem);
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.hero--tables h1 .hero-h1-line {
  display: inline-block;
  white-space: nowrap;
}

.hero--tables h1 .hero-h1-line.accent {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.8rem);
  line-height: 1;
  margin-top: 0.08em;
}

.hero--tables .hero-subtitle {
  max-width: 52ch;
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

@media (max-width: 600px) {
  .hero--tables .hero-subtitle br {
    display: none;
  }
}

/* ============================================================
   4. HERO ACTIONS (centered)
   ============================================================ */

.hero-tables-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
}

.hero-tables-actions .btn {
  margin-top: 0;
}

.hero-tables-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-soft);
  transition: color var(--duration-fast) var(--ease-out),
              gap var(--duration-normal) var(--ease-out);
}

.hero-tables-link:hover,
.hero-tables-link:focus-visible {
  color: var(--gold);
  gap: calc(var(--space-sm) + 4px);
}

.hero-tables-link svg {
  transition: transform var(--duration-normal) var(--ease-out);
}

.hero-tables-link:hover svg {
  transform: translateX(2px);
}

/* ============================================================
   5. HERO TRUST BAR (pinned at the bottom of the hero)
   ============================================================ */

.hero--tables .hero-trust {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(100%, 780px);
  padding: var(--space-lg) var(--space-lg) 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  list-style: none;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.hero--tables .hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-soft);
}

.hero--tables .hero-trust svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero--tables .hero-trust {
    bottom: var(--space-lg);
    gap: var(--space-sm) var(--space-lg);
    padding-top: var(--space-md);
  }
  .hero--tables .hero-trust li {
    font-size: 0.75rem;
  }
}

/* ============================================================
   6. HERO STAGGERED FADE-UP ENTRANCE
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .hero--tables .hero-kicker,
  .hero--tables h1,
  .hero--tables .hero-subtitle,
  .hero--tables .hero-tables-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: heroTablesFadeUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero--tables .hero-kicker          { animation-delay: 0.15s; }
  .hero--tables h1                    { animation-delay: 0.30s; }
  .hero--tables .hero-subtitle        { animation-delay: 0.50s; }
  .hero--tables .hero-tables-actions  { animation-delay: 0.70s; }

  @keyframes heroTablesFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero--tables .hero-trust {
    opacity: 0;
    transform: translate(-50%, 20px);
    animation: heroTablesTrustFadeUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.9s forwards;
  }

  @keyframes heroTablesTrustFadeUp {
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
}

/* ============================================================
   7. TABLES COLLECTION — wrapper editorial
   ============================================================ */

.tables-collection {
  position: relative;
  padding-top: clamp(4rem, 3rem + 4vw, 7rem);
  padding-bottom: clamp(2rem, 1rem + 3vw, 5rem);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
    var(--black);
}

/* fine ornamental separator between sections */
.tables-collection .table-feature + .table-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: clamp(2.5rem, 2rem + 1.5vw, 4rem);
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.35;
}

/* ============================================================
   8. TABLE-FEATURE — section image/contenu en alterné
   ============================================================ */

.table-feature {
  position: relative;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  overflow: hidden;
}

.table-feature .container {
  position: relative;
  z-index: 1;
}

.table-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}

/* Mobile : sur les tables --reversed (Roulette, Ultimate Poker), on force le visuel
   en premier (image en haut) pour uniformiser : toutes les tables ont IMAGE puis TEXTE
   en lecture mobile. */
.table-feature--reversed .table-feature-visual {
  order: 1;
}

.table-feature--reversed .table-feature-content {
  order: 2;
}

@media (min-width: 900px) {
  .table-feature-grid {
    grid-template-columns: 5fr 6fr;
    gap: clamp(3rem, 2rem + 4vw, 6rem);
  }

  .table-feature--reversed .table-feature-grid {
    grid-template-columns: 6fr 5fr;
  }

  /* Sur desktop, le --reversed inverse : texte a gauche, image a droite. */
  .table-feature--reversed .table-feature-visual {
    order: 2;
  }

  .table-feature--reversed .table-feature-content {
    order: 1;
  }
}

/* ============================================================
   9. SUIT WATERMARK — symbole géant en arrière-plan
   ============================================================ */

.table-feature-suit {
  position: absolute;
  top: 50%;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: clamp(20rem, 35vw, 38rem);
  font-weight: 400;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0;
  filter: blur(0.5px);
  transition: opacity var(--duration-slow) var(--ease-out);
}

/* watermark sits opposite to the image (image gauche -> suit droite) */
.table-feature-suit--spade,
.table-feature-suit--heart {
  right: -3vw;
  transform: translateY(-50%);
}

.table-feature-suit--diamond,
.table-feature-suit--club {
  left: -3vw;
  transform: translateY(-50%);
}

@media (max-width: 899px) {
  .table-feature-suit {
    font-size: clamp(16rem, 80vw, 28rem);
    opacity: 0.025;
  }
  .table-feature-suit--spade,
  .table-feature-suit--heart,
  .table-feature-suit--diamond,
  .table-feature-suit--club {
    left: 50%;
    right: auto;
    top: 22%;
    transform: translate(-50%, -50%);
  }
}

/* subtle hue per suit (kept very low on dark bg) */
.table-feature-suit--heart,
.table-feature-suit--diamond {
  color: #c8504c;
  opacity: 0.04;
}

/* ============================================================
   10. VISUAL — frame en arche
   ============================================================ */

.table-feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.table-feature-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.table-feature-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #1f1a13 0%, #0c0a06 100%);
  box-shadow:
    0 40px 70px -25px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 175, 55, 0.10),
    inset 0 1px 0 rgba(212, 175, 55, 0.18),
    inset 0 -40px 80px rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* warm vignette + top-light overlay */
.table-feature-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 2;
}

/* outer subtle gold ring offset (depth) */
.table-feature-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px 999px 22px 22px;
  border: 1px solid rgba(212, 175, 55, 0.10);
  pointer-events: none;
  z-index: 0;
  transition: inset var(--duration-slow) var(--ease-out),
              border-color var(--duration-slow) var(--ease-out);
}

.table-feature:hover .table-feature-frame::after,
.table-feature:focus-within .table-feature-frame::after {
  inset: -16px;
  border-color: rgba(212, 175, 55, 0.18);
}

.table-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 1.4s var(--ease-out);
  display: block;
}

.table-feature:hover .table-feature-frame img {
  transform: scale(1.04);
}

/* Placeholder quand la photo n'est pas encore fournie */
.table-feature-placeholder {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-xl);
}

.table-feature-placeholder-icon {
  font-size: clamp(3rem, 2rem + 4vw, 5rem);
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0.1em;
  line-height: 1;
}

.table-feature-placeholder-text {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* corner ticks — elegant gold corner markers */
.table-feature-frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}

.table-feature-frame-corner--tl {
  top: -8px;
  left: -8px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.table-feature-frame-corner--tr {
  top: -8px;
  right: -8px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.table-feature-frame-corner--bl {
  bottom: -8px;
  left: -8px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.table-feature-frame-corner--br {
  bottom: -8px;
  right: -8px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* ============================================================
   11. CONTENT — titre, lead, list, cta
   ============================================================ */

.table-feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 540px;
}

/* Overline avec numéro */
.table-feature-overline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.table-feature-overline-num {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.table-feature-overline-rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.table-feature-overline-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Titre éditorial : mot uppercase + accent italique gold (.accent global) */
.table-feature-title {
  font-size: clamp(2.75rem, 1.8rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15em 0.25em;
}

.table-feature-title .accent {
  font-size: 1.1em;
  line-height: 0.85;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(0.04em);
}

/* Chuck-a-Luck : nom plus long que les autres tables. On force le no-wrap a
   plusieurs niveaux : flex-wrap empeche les flex-items (Chuck + accent) de
   passer a la ligne, et white-space sur la span accent empeche le texte
   interne "-a-Luck" de casser au tiret. */
#chuck-a-luck .table-feature-title {
  flex-wrap: nowrap;
  white-space: nowrap;
}

#chuck-a-luck .table-feature-title .accent {
  font-size: 0.85em;
  white-space: nowrap;
}

/* Capacity badge */
.table-feature-capacity {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.55em 1.1em;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  margin-bottom: var(--space-xl);
  background: rgba(212, 175, 55, 0.04);
}

.table-feature-capacity svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

/* Lead */
.table-feature-lead {
  color: var(--white-soft);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1875rem);
  line-height: 1.65;
  margin-bottom: var(--space-xl);
  max-width: 46ch;
  font-weight: 300;
}

/* List */
.table-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.table-feature-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--white-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.table-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* CTA link — souligné gold, animé */
.table-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--gold);
  transition: color var(--duration-fast) var(--ease-out),
              gap var(--duration-normal) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.table-feature-cta:hover,
.table-feature-cta:focus-visible {
  color: var(--gold);
  gap: calc(var(--space-md) + 6px);
  border-bottom-color: var(--gold-light);
}

.table-feature-cta svg {
  transition: transform var(--duration-normal) var(--ease-out);
  color: var(--gold);
}

.table-feature-cta:hover svg,
.table-feature-cta:focus-visible svg {
  transform: translateX(4px);
}

.table-feature-cta:focus-visible {
  outline: none;
}

/* ============================================================
   12. RESPONSIVE — mobile tweaks
   ============================================================ */

@media (max-width: 899px) {
  .table-feature-frame {
    max-width: 380px;
  }

  .table-feature-title {
    font-size: clamp(2.25rem, 1.4rem + 5vw, 3.5rem);
  }

  .table-feature-content {
    align-items: flex-start;
    max-width: 100%;
  }

  .tables-collection .table-feature + .table-feature::before {
    height: 2.5rem;
  }
}

@media (max-width: 600px) {
  .table-feature {
    padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  }

  .table-feature-frame {
    max-width: 320px;
  }

  .table-feature-frame-corner {
    width: 22px;
    height: 22px;
  }

  .table-feature-list li {
    font-size: 0.875rem;
    padding-left: 1.6rem;
  }

  .table-feature-list li::before {
    width: 14px;
  }
}

/* ============================================================
   13. TABLES-CHOISIR — section editoriale numerotee
   ============================================================ */

.tables-choisir {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border-subtle);
}

.tables-choisir-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.tables-choisir-header h2 {
  margin-bottom: var(--space-md);
}

.tables-choisir-intro {
  color: var(--white-muted);
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  line-height: 1.7;
  margin: 0;
}

.tables-choisir-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .tables-choisir-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .tables-choisir-item + .tables-choisir-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: clamp(2rem, 1rem + 3vw, 4rem);
  }

  .tables-choisir-item:not(:last-child) {
    padding-right: clamp(2rem, 1rem + 3vw, 4rem);
  }
}

.tables-choisir-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tables-choisir-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 2rem + 1.5vw, 3.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}

.tables-choisir-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: var(--space-lg);
}

.tables-choisir-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.tables-choisir-title {
  color: var(--white);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  line-height: 1.25;
  margin-bottom: var(--space-md);
  max-width: 14ch;
}

.tables-choisir-desc {
  color: var(--white-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
  max-width: 32ch;
}

/* ============================================================
   14. REVEAL DIRECTIONNEL
   ============================================================ */

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.is-revealed,
.reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   15. CTA CONTACT
   ============================================================ */

.cta-contact {
  padding: var(--section-gap) 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.cta-contact h2 {
  margin-bottom: var(--space-md);
}

.cta-contact p {
  color: var(--white-muted);
  max-width: 52ch;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

/* ============================================================
   TABLEAU COMPARATIF DES 5 JEUX (citabilite AI / Perplexity)
   ============================================================ */

.tables-comparatif {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border-subtle);
}

.tables-comparatif h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.tables-comparatif-intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto var(--space-xl);
  color: var(--white-muted);
  line-height: 1.7;
}

.tables-comparatif-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.tables-comparatif-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--dark-card);
  font-size: 0.95rem;
}

.tables-comparatif-table thead {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
}

.tables-comparatif-table th,
.tables-comparatif-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border-subtle);
}

.tables-comparatif-table thead th {
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.tables-comparatif-table tbody th {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.tables-comparatif-table tbody td {
  color: var(--white-soft);
  line-height: 1.55;
}

.tables-comparatif-table tbody tr:last-child th,
.tables-comparatif-table tbody tr:last-child td {
  border-bottom: none;
}

.tables-comparatif-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.tables-comparatif-footnote {
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--white-muted);
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .tables-comparatif-table {
    font-size: 0.88rem;
  }
  .tables-comparatif-table th,
  .tables-comparatif-table td {
    padding: 0.8rem 0.9rem;
  }
}

/* sr-only utilitaire si pas deja defini dans base.css */
.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;
}
