/* Golden Panda — gabarit FR (mobile-first) */
:root {
  --bg: #000000;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --surface-3: #222222;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --muted-2: #7a7a7a;
  --gold-a: #f6d068;
  --gold-b: #c9972b;
  --gold-c: #8a6a1e;
  --gold-gradient: linear-gradient(135deg, var(--gold-a) 0%, var(--gold-b) 52%, var(--gold-c) 100%);
  --gold-outline: rgba(214, 176, 88, 0.55);
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-input: 14px;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(214, 176, 88, 0.18), 0 12px 40px rgba(0, 0, 0, 0.65);
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --header-h: 64px;
  --rail-w: 56px;
  --mobile-nav-h: 64px;
  --container: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
  --font-jackpot: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
  --dur: 180ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 800px at 50% -10%, #1b1408 0%, var(--bg) 55%, #000 100%);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SVG sprite + icônes vectorielles (remplace les glyphes / émojis) */
.ui-sprite-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.ui-icon {
  display: block;
  flex-shrink: 0;
  color: inherit;
}

.ui-icon use {
  pointer-events: none;
}

.side-rail__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-rail__item .ui-icon--rail {
  color: rgba(163, 163, 163, 0.95);
}

.side-rail__item:hover .ui-icon--rail,
.side-rail__item:focus-visible .ui-icon--rail {
  color: rgba(245, 245, 245, 0.92);
}

.side-rail__item--active .ui-icon--rail {
  color: rgba(246, 208, 104, 0.95);
}

.header__nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__nav-icon .ui-icon--header {
  color: rgba(214, 176, 88, 0.85);
}

.search-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 2px 2px 0;
}

.search-bar__icon .ui-icon--search {
  color: var(--muted-2);
}

.sports-card__ball {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sports-card__ball .ui-icon--sports {
  color: rgba(246, 208, 104, 0.92);
}

.select-like__chev {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease);
}

.select-like__chev .ui-icon--chev {
  color: var(--muted);
}

.select-like[aria-expanded="true"] .select-like__chev {
  transform: rotate(180deg);
}

.mobile-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-nav__icon .ui-icon--nav {
  color: rgba(163, 163, 163, 0.95);
}

.mobile-nav__btn[aria-current="page"] .ui-icon--nav,
.mobile-nav__btn.is-active .ui-icon--nav {
  color: rgba(246, 208, 104, 0.95);
}

.drawer__ico {
  width: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer__ico .ui-icon--drawer {
  color: rgba(246, 208, 104, 0.85);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 10000;
  padding: 10px 14px;
  background: #111;
  border: 1px solid var(--gold-outline);
  border-radius: 10px;
}

.skip-link:focus {
  left: 8px;
}

.app-shell {
  min-height: 100dvh;
  display: flex;
  background: var(--bg);
}

.side-rail {
  display: none;
}

.app-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(140%) blur(6px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: var(--header-h);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}

.header__logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header__logo--desktop {
  display: none;
  height: 40px;
  width: auto;
}

.header__logo--mobile {
  height: 34px;
  width: auto;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.header__nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid transparent;
  min-height: 44px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), filter var(--dur) var(--ease);
  white-space: nowrap;
}

.cta-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cta-button--gold {
  background: var(--gold-gradient);
  color: #0b0b0b;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 26px rgba(201, 151, 43, 0.22);
}

.cta-button--gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cta-button--outline {
  background: #000;
  color: #fff;
  border-color: var(--gold-outline);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.cta-button--outline:hover {
  border-color: rgba(246, 208, 104, 0.85);
}

.top-cta {
  padding-inline: 14px;
  font-size: 12px;
}

.top-cta.cta-button--gold {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding-inline: 16px;
}

.site-main {
  flex: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3) calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 56px);
}

@media (min-width: 1024px) {
  .site-main {
    padding-bottom: 40px;
    max-width: none;
    margin: 0;
    padding-inline: var(--space-5);
  }
}

.hero {
  position: relative;
  margin-top: var(--space-3);
  border-radius: calc(var(--radius-card) + 4px);
  overflow: hidden;
  border: 1px solid rgba(214, 176, 88, 0.22);
  background: #000;
  display: flex;
  flex-direction: column;
}

.hero__media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  min-height: clamp(220px, 52vw, 300px);
  max-height: min(340px, 58vw);
}

a.hero__media-link,
a.promo-banner__media-link {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a.trust-section__visual-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a.hero__media-link:focus-visible,
a.promo-banner__media-link:focus-visible,
a.trust-section__visual-link:focus-visible {
  outline: 2px solid rgba(246, 208, 104, 0.85);
  outline-offset: 2px;
}

.hero__banner-img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 52vw, 300px);
  object-fit: cover;
  object-position: center 10%;
  transform: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 42%, rgba(0, 0, 0, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  padding: var(--space-4) var(--space-3);
  background: linear-gradient(180deg, #0a0a0a 0%, #020202 100%);
  border-top: 1px solid rgba(214, 176, 88, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__display-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero__lede {
  margin: 0 0 var(--space-4);
  color: rgba(245, 245, 245, 0.86);
  font-size: 14px;
}

.hero__cta {
  padding-inline: 22px;
  min-height: 48px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__art {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(92%, 280px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(214, 176, 88, 0.55);
  background: rgba(0, 0, 0, 0.72);
  color: rgba(245, 245, 245, 0.92);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
}

.promo-banner {
  margin-top: var(--space-4);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(214, 176, 88, 0.18);
  background: #0a0a0a;
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-banner__media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  min-height: clamp(200px, 48vw, 280px);
  max-height: min(300px, 56vw);
}

.promo-banner__img {
  width: 100%;
  height: 100%;
  min-height: clamp(200px, 48vw, 280px);
  object-fit: cover;
  object-position: center 6%;
  opacity: 1;
}

.promo-banner__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

.promo-banner__body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  width: 100%;
  max-width: none;
  padding: var(--space-4) var(--space-3);
  background: linear-gradient(180deg, #0c0c0c 0%, #040404 100%);
  border-top: 1px solid rgba(214, 176, 88, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.promo-banner__title {
  margin: 0 0 10px;
  font-size: clamp(16px, 4.2vw, 18px);
  letter-spacing: 0.02em;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  text-shadow: none;
}

.promo-banner__text {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
}

.search-bar {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-bar__input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
}

.search-bar__input::placeholder {
  color: #6f6f6f;
}

.live-teaser {
  margin-top: var(--space-4);
  border-radius: var(--radius-card);
  border: 1px solid rgba(214, 176, 88, 0.16);
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  box-shadow: var(--shadow-soft);
}

.live-teaser__inner {
  padding: var(--space-4) var(--space-3);
  display: grid;
  gap: 10px;
}

.live-teaser__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-teaser__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.live-teaser__cta {
  justify-self: start;
}

.deposit-strip {
  margin-top: var(--space-4);
}

.deposit-strip__inner {
  border-radius: var(--radius-card);
  border: 1px solid rgba(214, 176, 88, 0.2);
  background: linear-gradient(180deg, #14110a 0%, #0b0b0b 100%);
  padding: var(--space-4) var(--space-3);
  display: grid;
  gap: var(--space-3);
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.deposit-strip__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.deposit-strip__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}

.deposit-strip__cta {
  justify-self: stretch;
  text-align: center;
}

.pay-icon {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.pay-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(214, 176, 88, 0.22);
  color: rgba(246, 208, 104, 0.92);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.35);
}

.games-section {
  margin-top: var(--space-5);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.section-head__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head__link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-head__link:hover {
  color: var(--text);
}

.games-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  cursor: grab;
  touch-action: pan-x;
}

.games-row.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.games-row--snap {
  scroll-snap-type: x mandatory;
}

.games-row::-webkit-scrollbar {
  height: 6px;
}

.games-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.games-row .game-card {
  cursor: pointer;
}

.game-card {
  position: relative;
  flex: 0 0 132px;
  scroll-snap-align: start;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(214, 176, 88, 0.16);
  background: #0b0b0b;
  display: grid;
  grid-template-rows: 168px auto;
  min-height: 220px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.game-card--spotlight {
  flex-basis: 148px;
  grid-template-rows: 182px auto;
}

.game-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.game-card__media {
  position: relative;
  overflow: hidden;
}

.game-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.game-card__meta {
  position: relative;
  padding: 10px 10px 12px;
  display: grid;
  gap: 4px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2) 0%, rgba(10, 10, 10, 0.92) 35%, rgba(10, 10, 10, 1) 100%);
}

.game-card__meta::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.game-card__title {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.game-card__provider {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: var(--muted);
}

.game-card--hunt .game-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 90px at 80% 20%, rgba(246, 208, 104, 0.12) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.hunt-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: var(--gold-gradient);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(201, 151, 43, 0.22);
}

.provider-section {
  margin-top: var(--space-6);
}

.provider-section__title {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.provider-tile {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.provider-tile__name {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.86);
}

.jackpot-section {
  margin-top: var(--space-6);
}

.jackpot-card {
  border-radius: calc(var(--radius-card) + 2px);
  border: 1px solid rgba(214, 176, 88, 0.35);
  background: radial-gradient(900px 360px at 50% 0%, rgba(246, 208, 104, 0.12) 0%, rgba(0, 0, 0, 0) 55%), linear-gradient(180deg, #101010 0%, #050505 100%);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.jackpot-card__head {
  padding: 16px var(--space-3) 18px;
  background: var(--gold-gradient);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.jackpot-card__title {
  margin: 0;
  color: #0a0a0a;
  font-family: var(--font-jackpot);
  font-size: clamp(17px, 4.6vw, 26px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.jackpot-card__text {
  margin: 0;
  padding: var(--space-4) var(--space-3) 0;
  color: rgba(245, 245, 245, 0.92);
  font-family: var(--font-jackpot);
  font-size: clamp(14px, 3.6vw, 17px);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.jackpot-rows {
  list-style: none;
  margin: var(--space-3) 0 var(--space-4);
  padding: 0 var(--space-3);
  display: grid;
  gap: 10px;
}

.jackpot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  background: var(--gold-gradient);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.jackpot-row__label {
  font-family: var(--font-jackpot);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 3.4vw, 16px);
  line-height: 1.1;
}

.jackpot-row__value {
  font-family: var(--font-jackpot);
  font-weight: 800;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
  font-size: clamp(14px, 3.8vw, 19px);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.jackpot-card__actions {
  padding: 0 var(--space-3) var(--space-4);
  display: grid;
  gap: 10px;
}

.trust-section {
  margin-top: var(--space-6);
}

.trust-section__title {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-section__grid {
  display: grid;
  gap: var(--space-3);
}

.trust-section__visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(214, 176, 88, 0.18);
  background: #0b0b0b;
}

.trust-section__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 70% 20%;
}

.trust-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trust-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #151515 0%, #0b0b0b 100%);
  padding: var(--space-3);
}

.trust-card__title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-section__cta {
  margin-top: var(--space-3);
}

.sports-teaser {
  margin-top: var(--space-6);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  padding: var(--space-4) var(--space-3);
}

.sports-teaser__title {
  margin: 0 0 var(--space-3);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sports-teaser__row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.sports-card {
  flex: 0 0 132px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(214, 176, 88, 0.18);
  background: radial-gradient(120px 90px at 50% 0%, rgba(246, 208, 104, 0.12) 0%, rgba(0, 0, 0, 0) 60%), #101010;
  padding: 14px 12px;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 120px;
}

.sports-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.sports-card__ball {
  line-height: 1;
}

.sports-card__label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sports-teaser__note {
  margin: var(--space-3) 0 0;
  color: var(--muted);
  font-size: 14px;
}

.sports-teaser__link {
  margin-top: var(--space-3);
  width: 100%;
  justify-content: center;
}

.gp-empty-block {
  margin-top: var(--space-6);
}

.editorial {
  margin-top: var(--space-5);
  padding: var(--space-5) 0 var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 230, 230, 0.9);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .editorial {
    max-width: min(56rem, 100%);
  }
}

.editorial__h1 {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 5.2vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.editorial__h1 + .editorial__h2 {
  margin-top: var(--space-4);
}

.editorial__h2 {
  margin: var(--space-6) 0 var(--space-3);
  font-size: clamp(17px, 4vw, 22px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.editorial__h2--faq {
  margin-top: var(--space-5);
}

.editorial__h3 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 3.4vw, 18px);
  line-height: 1.25;
  font-weight: 800;
  color: rgba(246, 208, 104, 0.95);
}

.editorial__p {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(200, 200, 200, 0.95);
}

.editorial__note {
  margin: var(--space-5) 0 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--muted);
}

.editorial-table-wrap {
  margin: var(--space-5) calc(-1 * var(--space-3)) var(--space-5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
}

@media (min-width: 768px) {
  .editorial-table-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .editorial-table {
    min-width: 520px;
    table-layout: auto;
  }
}

.editorial-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}

.editorial-table th,
.editorial-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.editorial-table thead th {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  color: rgba(246, 208, 104, 0.95);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
}

.editorial-table tbody tr:last-child td {
  border-bottom: 0;
}

.editorial-table tbody td {
  color: rgba(220, 220, 220, 0.92);
}

.faq-editorial {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-faq-item {
  margin-top: var(--space-3);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
  overflow: hidden;
}

.faq-editorial .editorial-faq-item:first-of-type {
  margin-top: var(--space-4);
}

.editorial-faq-item__summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(14px, 3.2vw, 16px);
  font-weight: 800;
  line-height: 1.35;
  color: rgba(245, 245, 245, 0.96);
  text-align: left;
}

.editorial-faq-item__summary::-webkit-details-marker,
.editorial-faq-item__summary::marker {
  display: none;
}

.editorial-faq-item__q {
  flex: 1;
  min-width: 0;
}

.editorial-faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: rgba(246, 208, 104, 0.8);
  transition: transform var(--dur) var(--ease);
}

.editorial-faq-item[open] .editorial-faq-item__icon {
  transform: rotate(180deg);
}

.editorial-faq-item__summary:hover {
  background: rgba(255, 255, 255, 0.04);
}

.editorial-faq-item__summary:focus-visible {
  outline: 2px solid rgba(246, 208, 104, 0.85);
  outline-offset: -2px;
}

.editorial-faq-item__body {
  padding: 0 16px 16px;
}

.editorial-faq-item__body .editorial__p {
  margin: 0;
  padding-top: 2px;
}

@media (max-width: 767px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-inline: auto;
  }

  .promo-banner__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .live-teaser__inner {
    text-align: center;
    justify-items: center;
  }

  .live-teaser__cta {
    justify-self: center;
  }

  .deposit-strip__inner {
    text-align: center;
  }

  .deposit-strip__icons {
    justify-content: center;
  }

  .section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .provider-section__title {
    text-align: center;
  }

  .jackpot-card__text {
    text-align: center;
  }

  .trust-section__title {
    text-align: center;
  }

  .trust-card__title,
  .trust-card__text {
    text-align: center;
  }

  .trust-section__cta {
    display: flex;
    justify-content: center;
  }

  .trust-section__cta .cta-button {
    width: min(100%, 340px);
  }

  .sports-teaser {
    text-align: center;
  }

  .sports-teaser__row {
    justify-content: center;
  }

  .u-center-mobile-headings :is(.editorial__h1, .editorial__h2, .editorial__h3) {
    text-align: center;
  }

  .u-center-mobile-headings .editorial-faq-item__summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .u-center-mobile-headings .editorial-faq-item__icon {
    margin-top: 6px;
  }

  .editorial-table-wrap {
    overflow-x: visible;
    margin-left: 0;
    margin-right: 0;
    -webkit-overflow-scrolling: auto;
  }

  .editorial-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    font-size: clamp(9px, 2.85vw, 11px);
  }

  .editorial-table th,
  .editorial-table td {
    padding: 8px 5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
  }

  .editorial-table thead th {
    text-align: center;
    font-size: clamp(8px, 2.4vw, 10px);
    letter-spacing: 0.02em;
  }
}

@media (max-width: 380px) {
  .editorial-table {
    font-size: clamp(8px, 2.6vw, 10px);
  }

  .editorial-table th,
  .editorial-table td {
    padding: 6px 4px;
  }
}

@media (max-width: 420px) {
  .jackpot-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .jackpot-row__value {
    white-space: normal;
  }
}

.select-like-wrap {
  margin-top: var(--space-4);
}

.select-like {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  color: var(--text);
  text-align: left;
}

.select-like:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.select-like__panel {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0b0b;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  margin-top: var(--space-6);
  padding: var(--space-5) 0 var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer__top {
  display: grid;
  gap: var(--space-5);
}

.footer__logo {
  width: 160px;
  height: auto;
}

.footer__copy {
  margin: 10px 0 8px;
  font-size: 12px;
  color: var(--muted-2);
}

.footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.86);
}

.footer__lang-text {
  font-weight: 700;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.footer__heading {
  margin: 0 0 10px;
  color: rgba(245, 245, 245, 0.92);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer__list a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.footer__list a:hover {
  color: rgba(245, 245, 245, 0.92);
}

.footer__payments {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: center;
}

.footer__bottom {
  margin-top: var(--space-3);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  color: rgba(245, 245, 245, 0.75);
}

.footer__age,
.footer__rg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  background: #101010;
}

.live-chat {
  position: fixed;
  right: 14px;
  bottom: calc(var(--mobile-nav-h) + env(safe-area-inset-bottom, 0px) + 14px);
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--gold-gradient);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.live-chat:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.live-chat__bubble {
  width: 18px;
  height: 14px;
  border-radius: 4px;
  background: #0b0b0b;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.live-chat__bubble::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #0b0b0b;
}

.live-chat__tag {
  position: absolute;
  top: -6px;
  right: -2px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b0b0b;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 3px 6px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 90;
}

.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.mobile-nav__btn {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 4px;
  padding: 6px 6px;
  color: rgba(245, 245, 245, 0.72);
  border-radius: 12px;
  min-height: 52px;
}

.mobile-nav__btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 245, 245, 0.92);
}

.mobile-nav__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.mobile-nav__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.1;
}

.mobile-nav__icon--menu {
  line-height: 0.9;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  overflow: auto;
}

.drawer__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px var(--space-3) calc(24px + env(safe-area-inset-bottom, 0px));
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
}

.drawer__close .ui-icon--close {
  color: rgba(245, 245, 245, 0.92);
}

.drawer__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.drawer__nav {
  padding-top: 10px;
  display: grid;
  gap: 0;
}

.drawer__group {
  display: grid;
}

.drawer__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

.drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  border-radius: 12px;
  color: rgba(245, 245, 245, 0.92);
}

.drawer__link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.drawer__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .top-cta {
    font-size: 13px;
    padding-inline: 18px;
  }

  .top-cta.cta-button--gold {
    font-size: 12px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 420px;
    background: radial-gradient(900px 420px at 20% 0%, rgba(246, 208, 104, 0.12) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: none;
    min-height: 0;
  }

  .hero__banner-img {
    min-height: 100%;
    object-position: 70% 20%;
    transform: scale(1.02);
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.82) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 52%, rgba(0, 0, 0, 0.15) 100%);
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding: var(--space-6) var(--space-5);
    max-width: 520px;
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }

  .hero__art {
    left: auto;
    right: var(--space-4);
    bottom: var(--space-4);
    transform: none;
    width: auto;
    justify-content: flex-end;
  }

  .hero__badge {
    font-size: 10px;
    max-width: 260px;
  }

  .promo-banner {
    display: block;
    min-height: 220px;
  }

  .promo-banner__media {
    position: absolute;
    inset: 0;
    min-height: 0;
    max-height: none;
  }

  .promo-banner__img {
    min-height: 100%;
    object-position: center;
  }

  .promo-banner__veil {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 62%, rgba(0, 0, 0, 0.2) 100%);
  }

  .promo-banner__body {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: var(--space-4) var(--space-5);
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }

  .deposit-strip__inner {
    grid-template-columns: 1fr auto 160px;
    align-items: center;
    text-align: left;
  }

  .deposit-strip__title {
    text-align: left;
  }

  .deposit-strip__icons {
    justify-content: flex-start;
  }

  .deposit-strip__cta {
    justify-self: end;
    width: auto;
    padding-inline: 18px;
  }

  .game-card {
    flex-basis: 156px;
    grid-template-rows: 198px auto;
  }

  .game-card--spotlight {
    flex-basis: 172px;
    grid-template-rows: 214px auto;
  }

  .provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-section__img {
    height: 280px;
  }

  .footer__columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .live-chat {
    bottom: 22px;
  }
}

@media (min-width: 1024px) {
  .side-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: var(--rail-w);
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0px));
    position: sticky;
    top: 0;
    height: 100dvh;
    background: linear-gradient(180deg, #0b0b0b 0%, #000 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 60;
  }

  .side-rail__item {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: rgba(163, 163, 163, 0.95);
    border: 1px solid transparent;
  }

  .side-rail__item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(245, 245, 245, 0.92);
  }

  .side-rail__item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
  }

  .side-rail__item--active {
    border-color: rgba(214, 176, 88, 0.35);
    color: rgba(246, 208, 104, 0.95);
    background: rgba(246, 208, 104, 0.06);
  }

  .side-rail__glyph {
    line-height: 1;
  }

  .side-rail__sep {
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 0;
  }

  .header__logo--desktop {
    display: block;
  }

  .header__logo--mobile {
    display: none;
  }

  .header__nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .site-main {
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: var(--space-6);
  }

  .site-header__inner {
    padding-inline: var(--space-6);
  }

  .live-chat {
    right: 28px;
    bottom: 28px;
  }

  .game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(214, 176, 88, 0.18);
  }

  .trust-section__grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .trust-section__img {
    height: 100%;
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-button--gold:hover,
  .game-card:hover {
    transform: none;
    filter: none;
  }
}

/* ══════════════════════════════════════════
   Panda Tap — mini-jeu
══════════════════════════════════════════ */
.pgame {
  margin-top: var(--space-4);
  border-radius: calc(var(--radius-card) + 2px);
  border: 1px solid rgba(214, 176, 88, 0.30);
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(246, 208, 104, 0.09) 0%, transparent 60%),
    linear-gradient(180deg, #0e0e0e 0%, #060606 100%);
  box-shadow: 0 0 0 1px rgba(246, 208, 104, 0.06), var(--shadow-glow);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.pgame__screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-4);
  text-align: center;
  gap: 14px;
}

.pgame__screen[hidden] {
  display: none;
}

/* ── Intro ── */
.pgame__intro-paw {
  color: rgba(246, 208, 104, 0.92);
  filter: drop-shadow(0 0 18px rgba(246, 208, 104, 0.38));
  animation: pgame-float 2.8s ease-in-out infinite;
}

.pgame__paw-deco {
  width: 52px;
  height: auto;
}

@keyframes pgame-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

.pgame__title {
  margin: 0;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 208, 104, 0.97);
  text-shadow: 0 0 24px rgba(246, 208, 104, 0.30);
}

.pgame__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.pgame__start-btn {
  min-width: 200px;
  padding-inline: 28px;
  min-height: 50px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── HUD ── */
.pgame__hud {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
}

.pgame__hud-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.pgame__hud-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.pgame__hud-val {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.pgame__hud-val small {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.5;
}

.pgame__hud-val--time {
  color: rgba(246, 208, 104, 0.97);
  transition: color 0.3s ease;
}

.pgame__hud-val--time.is-urgent {
  color: #ff6b6b;
  animation: pgame-blink 0.6s ease-in-out infinite;
}

@keyframes pgame-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* ── Progress bar ── */
.pgame__progress-track {
  width: 100%;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.pgame__progress-fill {
  height: 100%;
  width: 100%;
  border-radius: 99px;
  background: var(--gold-gradient);
  transition: width 1s linear, background 0.5s ease;
}

.pgame__progress-fill.is-urgent {
  background: linear-gradient(90deg, #ff4444 0%, #ff8888 100%);
}

/* ── Arena + bouton patte ── */
.pgame__arena {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 190px;
  overflow: hidden;
  flex: 1;
}

.pgame__paw-btn {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(246, 208, 104, 0.16) 0%, rgba(246, 208, 104, 0.05) 55%),
    rgba(22, 17, 6, 0.92);
  border: 2px solid rgba(246, 208, 104, 0.40);
  box-shadow:
    0 0 0 5px rgba(246, 208, 104, 0.07),
    0 12px 34px rgba(0, 0, 0, 0.65);
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.pgame__paw-btn:hover {
  box-shadow:
    0 0 0 8px rgba(246, 208, 104, 0.13),
    0 14px 40px rgba(0, 0, 0, 0.65);
  border-color: rgba(246, 208, 104, 0.65);
}

.pgame__paw-btn:focus-visible {
  outline: 2px solid rgba(246, 208, 104, 0.85);
  outline-offset: 5px;
}

.pgame__paw-svg {
  width: 68px;
  height: auto;
  color: rgba(246, 208, 104, 0.92);
  pointer-events: none;
}

@keyframes pgame-tap {
  0%   { transform: scale(1);    box-shadow: 0 0 0 5px rgba(246,208,104,.07), 0 12px 34px rgba(0,0,0,.65); }
  28%  { transform: scale(0.85); box-shadow: 0 0 0 16px rgba(246,208,104,.18), 0 5px 18px rgba(0,0,0,.65); }
  65%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.pgame__paw-btn.is-tapped {
  animation: pgame-tap 0.22s ease;
}

/* ── Score popup ── */
@keyframes pgame-pop {
  0%   { transform: translateY(0)     scale(1);    opacity: 1; }
  100% { transform: translateY(-72px) scale(0.65); opacity: 0; }
}

.pgame__pop {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-size: 22px;
  font-weight: 900;
  color: rgba(246, 208, 104, 0.97);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  animation: pgame-pop 0.68s ease forwards;
  z-index: 10;
  line-height: 1;
  white-space: nowrap;
}

.pgame__tap-hint {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ── Inter-manche ── */
.pgame__between-check {
  color: rgba(246, 208, 104, 0.9);
  filter: drop-shadow(0 0 12px rgba(246, 208, 104, 0.35));
}

.pgame__between-title {
  margin: 0;
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.pgame__between-pts {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: rgba(246, 208, 104, 0.97);
  text-shadow: 0 0 20px rgba(246, 208, 104, 0.3);
}

.pgame__between-next {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.pgame__countdown {
  display: block;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(246, 208, 104, 0.97);
  text-shadow: 0 0 36px rgba(246, 208, 104, 0.45);
}

/* ── Résultat ── */
.pgame__result-trophy {
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 0 22px rgba(246, 208, 104, 0.55));
  animation: pgame-float 2.2s ease-in-out infinite;
}

.pgame__result-title {
  margin: 0;
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 900;
  color: rgba(246, 208, 104, 0.98);
  text-shadow: 0 0 26px rgba(246, 208, 104, 0.32);
}

.pgame__result-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pgame__result-score {
  margin: 0;
  font-size: clamp(40px, 11vw, 58px);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pgame__result-prize {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1px solid rgba(246, 208, 104, 0.30);
  background: rgba(246, 208, 104, 0.07);
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 245, 245, 0.96);
  line-height: 1.45;
  text-align: center;
  max-width: 340px;
}

.pgame__result-cta {
  min-width: 220px;
  min-height: 52px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-inline: 28px;
  animation: pgame-pulse-cta 2.4s ease-in-out infinite;
}

@keyframes pgame-pulse-cta {
  0%, 100% { box-shadow: 0 10px 26px rgba(201, 151, 43, 0.22); }
  50%       { box-shadow: 0 14px 36px rgba(201, 151, 43, 0.46); }
}

.pgame__result-replay {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 4px 2px;
}

.pgame__result-replay:hover {
  color: var(--text);
}

.pgame__result-replay:focus-visible {
  outline: 2px solid rgba(246, 208, 104, 0.85);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .pgame__intro-paw,
  .pgame__result-trophy { animation: none; }
  .pgame__hud-val--time.is-urgent { animation: none; }
  .pgame__result-cta { animation: none; }
  .pgame__progress-fill { transition: none; }
}

body.drawer-open {
  overflow: hidden;
}
