:root {
  --background: #F0EDE8;
  --surface: #FFFFFF;
  --surface-muted: #F7F3ED;
  --border: #DDD3C7;
  --border-strong: #C9BFB2;
  --accent: #B89A68;
  --accent-strong: #9F7F49;
  --text-primary: #1B1B1B;
  --text-secondary: #4C4C4C;
  --text-tertiary: #9F7F49;
  --card-radius: 20px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url('/src/img/souris-cursor-32.png') 0 0, url('src/img/souris-cursor-32.png') 0 0, auto;
}

/* Animation de rotation du curseur au clic - désactivée */

a, button, .nav-toggle, .nav-contact, .nav-lang-select, input, select, textarea {
  cursor: url('/src/img/souris-cursor-32.png') 0 0, url('src/img/souris-cursor-32.png') 0 0, pointer;
}

body {
  min-height: 100vh;
}

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

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

a:hover,
a:focus {
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

main {
  padding-top: 92px;
}

@media (max-width: 720px) {
  main {
    padding-top: 0;
  }

  /* Coller la vidéo au header en mobile */
  .hero {
    margin-top: -40px;
  }
}

/* Warning Banner -------------------------------------------------- */
.warning-banner {
  position: relative;
  width: 100%;
  background: #FFDD00;
  color: #000000;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 4vw, 24px);
  text-align: left;
  font-size: clamp(0.65rem, 0.6rem + 0.25vw, 0.8rem);
  line-height: 1.5;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 20px);
}

.warning-banner p {
  margin: 0;
  max-width: 1400px;
  text-align: left;
  flex: 1;
}

.warning-banner .warning-logo {
  flex-shrink: 0;
  height: clamp(30px, 4vw, 50px);
  width: auto;
}

.warning-banner .warning-title {
  font-size: clamp(0.7rem, 0.65rem + 0.3vw, 0.9rem);
  font-weight: 700;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}

.warning-banner .warning-info {
  display: block;
  font-size: clamp(0.65rem, 0.6rem + 0.25vw, 0.8rem);
  font-weight: 400;
}

.warning-banner a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.warning-banner a:hover,
.warning-banner a:focus {
  color: #000000;
  opacity: 0.8;
}

/* Header -------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(240, 237, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  cursor: default;
  overflow: visible;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 28px);
  box-sizing: border-box;
}

.site-header * {
  cursor: url('/src/img/souris-cursor-32.png') 0 0, url('src/img/souris-cursor-32.png') 0 0, pointer !important;
}

.site-header a,
.site-header button,
.site-header select {
  cursor: url('/src/img/souris-cursor-32.png') 0 0, url('src/img/souris-cursor-32.png') 0 0, pointer !important;
}

.nav-bar {
  min-height: 92px;
  width: 100%;
  max-width: min(1180px, calc(100vw - 24px));
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.5vw, 24px);
  overflow-x: auto;
  overflow-y: visible;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 24px);
  box-sizing: border-box;
}

.brand {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(234, 234, 234, 0.78);
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  cursor: pointer !important;
}

.brand-logo {
  display: block;
  height: clamp(44px, 5.5vw, 72px);
  width: auto;
  max-height: 72px;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition), filter var(--transition);
  z-index: 1001;
  position: relative;
  object-fit: contain;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 28px);
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  padding: 0 clamp(12px, 2vw, 20px);
}

.nav-links-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 28px);
  flex-wrap: nowrap;
  flex: 0 0 auto;
  min-width: min-content;
}

.nav-links-menu a {
  font-size: clamp(0.62rem, 0.58rem + 0.25vw, 0.78rem);
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-weight: 600 !important;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  cursor: pointer;
  padding: clamp(6px, 1vw, 10px) clamp(10px, 1.2vw, 14px);
  display: inline-block;
  line-height: 1.5;
}

.nav-actions {
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-contact {
  padding: clamp(10px, 1.2vw, 12px) clamp(18px, 2vw, 24px);
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(240, 237, 232, 0.6);
  color: var(--text-primary);
  font-size: clamp(0.76rem, 0.7rem + 0.2vw, 0.84rem);
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  cursor: pointer;
}

.nav-contact:hover,
.nav-contact:focus {
  background: rgba(18, 18, 18, 0.08);
  color: var(--text-tertiary);
  border-color: rgba(197, 165, 114, 0.4);
}

.nav-lang-select {
  appearance: none;
  padding: clamp(10px, 1.2vw, 12px) clamp(14px, 1.8vw, 20px);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  font-size: clamp(0.76rem, 0.7rem + 0.2vw, 0.84rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  pointer-events: auto;
  cursor: pointer;
}

.nav-lang-select:focus {
  outline: none;
  border-color: rgba(197, 165, 114, 0.5);
  box-shadow: 0 0 0 2px rgba(197, 165, 114, 0.15);
}


.nav-links a {
  color: var(--text-secondary);
  transition: color var(--transition);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--text-tertiary);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #F0EDE8;
  cursor: pointer;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1002;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  transition: transform var(--transition);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .nav-bar {
    min-height: 88px;
    justify-content: space-between;
    gap: clamp(6px, 1.5vw, 12px);
    padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 18px);
  }

  .brand-logo {
    height: clamp(48px, 12vw, 72px);
    max-height: 72px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  }
  
  .brand:hover .brand-logo {
    transform: scale(1.03);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    top: 88px;
    max-height: calc(100vh - 100px);
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }
}

/* Hero ---------------------------------------------------- */
.hero {
  padding-bottom: clamp(48px, 12vw, 80px);
}

.jackpot-overlay {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(1200px, 96vw);
  padding: 0 4px;
}

.jackpot-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 18px;
  max-width: clamp(520px, 65vw, 720px);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.jackpot-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: clamp(70px, 10vw, 100px);
}

.jackpot-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  transform: translateX(0);
  animation: jackpot-tape 18s linear infinite;
}

.jackpot-track.is-static {
  animation: none;
}

.jackpot-slider.is-static {
  justify-content: center;
}

.jackpot-state {
  min-width: clamp(220px, 48vw, 360px);
  min-height: clamp(80px, 12vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: #1B1B1B;
  font-weight: 600;
  padding: clamp(8px, 2vw, 12px);
}

.jackpot-state--error {
  color: #d96a6a;
}

.jackpot-state--empty {
  color: #4C4C4C;
}

.jackpot-state--loading {
  color: #4C4C4C;
}

.jackpot-card {
  flex: 0 0 clamp(440px, 48vw, 540px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: translateX(0);
}

.jackpot-card:nth-child(2) {
  animation-delay: 6s;
}

.jackpot-thumb {
  width: 120px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: none;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.jackpot-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.jackpot-label,
.jackpot-value,
.jackpot-update {
  margin: 0;
  padding: 0;
}

.jackpot-info {
  display: grid;
  gap: 3px;
  text-align: center;
  max-width: clamp(260px, 42vw, 320px);
}

.jackpot-info p {
  margin: 0;
}

.jackpot-label {
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
}

.jackpot-value {
  font-size: clamp(1.3rem, 1.15rem + 0.9vw, 1.8rem);
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .jackpot-banner .jackpot-value {
    font-size: 12px !important;
    letter-spacing: 0.04rem;
    line-height: 1.15;
  }
  .jackpot-banner .jackpot-label,
  .jackpot-banner .jackpot-update {
    font-size: 12px !important;
    line-height: 1.15;
  }
  .jackpot-banner .jackpot-label {
    white-space: nowrap;
    font-size: 11px !important;
  }
}

.jackpot-update {
  font-size: 0.75rem;
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: 500;
}

@keyframes jackpot-tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-media {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
}

.hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8;
  max-height: 68vh;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 0;
  }
  .hero-media {
    min-height: auto;
  }
  .hero-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 0;
  }
  .hero-media {
    min-height: auto;
    width: 100%;
    margin-left: 0;
  }
  .hero-video {
    aspect-ratio: 9 / 16;
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240, 237, 232, 0.05) 0%, rgba(240, 237, 232, 0.78) 100%);
  pointer-events: none;
}

/* Contest Section ----------------------------------------- */
.contest-section {
  padding: clamp(48px, 10vw, 80px) 0;
}

.contest-section .container {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 0;
}

.contest-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
}

.contest-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  border-radius: 24px;
  z-index: 0;
}

.contest-video::-webkit-media-controls {
  display: none !important;
}

.contest-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
  padding-top: 40%;
  border-radius: 0 0 24px 24px;
}

.contest-content {
  pointer-events: auto;
  max-width: min(900px, 90vw);
  display: grid;
  gap: clamp(12px, 2vw, 20px);
  text-align: center;
  color: #FFFFFF;
  padding: clamp(32px, 6vw, 48px) clamp(24px, 4vw, 40px);
  width: 100%;
}

.contest-kicker {
  margin: 0;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.9rem);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contest-title {
  margin: 0;
  font-size: clamp(2rem, 1.8rem + 1.5vw, 3.2rem);
  line-height: 1.2;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contest-description {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .contest-section {
    padding: clamp(32px, 6vw, 48px) 0;
  }
  
  .contest-video-wrapper {
    border-radius: 16px;
  }
  
  .contest-video {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }
  
  .contest-overlay {
    border-radius: 0 0 16px 16px;
    padding-top: 30%;
  }
  
  .contest-content {
    padding: clamp(28px, 5vw, 40px) clamp(20px, 3vw, 32px);
  }
}

@media (max-width: 720px) {
  .contest-section {
    padding: clamp(24px, 4vw, 32px) 0;
  }
  
  .contest-section .container {
    padding: 0;
    width: 100%;
  }
  
  .contest-video-wrapper {
    border-radius: 12px;
    min-height: 400px;
  }
  
  .contest-video {
    aspect-ratio: 16 / 9;
    min-height: 400px;
    border-radius: 12px;
  }
  
  .contest-overlay {
    border-radius: 0 0 12px 12px;
    padding-top: 25%;
  }
  
  .contest-content {
    padding: clamp(24px, 4vw, 32px) clamp(16px, 2.5vw, 24px);
    gap: clamp(10px, 1.5vw, 16px);
  }
  
  .contest-title {
    font-size: clamp(1.6rem, 1.4rem + 1vw, 2rem);
  }
}

/* Intro --------------------------------------------------- */
.club-intro {
  padding: clamp(48px, 12vw, 80px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: flex-start;
  min-height: 100%;
}

.story-heading {
  position: sticky;
  top: clamp(100px, 14vh, 150px);
  display: grid;
  gap: 12px;
  align-self: start;
}

.story-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.story-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.2rem);
  line-height: 1.2;
  color: #000;
}


.story-content {
  display: grid;
  gap: clamp(18px, 2.6vw, 26px);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.story-content p {
  margin: 0;
}

.story-content em {
  font-style: italic;
}

 

.story-visual-section {
  padding: clamp(24px, 6vw, 40px) 0;
}

.story-visual-wrap {
  width: 100%;
  max-width: min(1180px, 90vw);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.story-visual {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: rgba(240, 237, 232, 0.08);
  box-shadow: 0 20px 40px rgba(18, 18, 18, 0.22);
}

@media (max-width: 720px) {
  .story-visual-wrap {
    max-width: min(1180px, 96vw);
    width: 100%;
    padding-inline: clamp(16px, 5vw, 24px);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .story-visual {
    border-radius: 18px;
    margin: 0 auto;
  }

  .story-visual img {
    object-position: center;
    margin: 0 auto;
  }
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.22) 100%);
  pointer-events: none;
}

.story-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.035);
  transform-origin: center;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible .story-visual img {
  animation: story-pan 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes story-pan {
  0% {
    transform: scale(1.035);
  }
  60% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.04);
  }
}

/* Animations de révélation au scroll - Base */
.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
}

/* Animation fade-up (par défaut) */
.reveal-fade-up {
  transform: translateY(60px) scale(0.95);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.reveal-fade-up.is-visible {
  transform: translateY(0) scale(1);
}

/* Animation fade-in */
.reveal-fade-in {
  transform: scale(0.98);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.reveal-fade-in.is-visible {
  transform: scale(1);
}

/* Animation slide-right */
.reveal-slide-right {
  transform: translateX(-60px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.reveal-slide-right.is-visible {
  transform: translateX(0);
}

/* Animation slide-left */
.reveal-slide-left {
  transform: translateX(60px);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.reveal-slide-left.is-visible {
  transform: translateX(0);
}

/* Animation avec rotation subtile */
.reveal-rotate {
  transform: translateY(40px) rotate(2deg);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

.reveal-rotate.is-visible {
  transform: translateY(0) rotate(0deg);
}

/* Amélioration des animations pour les cartes */
.game-item.reveal-on-scroll,
.article-card.reveal-on-scroll,
.jackpot-progress-card.reveal-on-scroll,
.service-item.reveal-on-scroll {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

/* Animation pour les textes avec effet de fade progressif */
.story-content p.reveal-on-scroll {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

/* Animation pour les titres */
h2.reveal-on-scroll,
h3.reveal-on-scroll {
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

/* Animation pour les images */
img.reveal-on-scroll,
.story-visual.reveal-on-scroll img,
.cash-game-visual.reveal-on-scroll img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
}

/* Optimisation pour les performances */
.reveal-on-scroll {
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Désactiver les animations sur mobile si préféré (optionnel) */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Games -------------------------------------------------- */


.games {
  padding: clamp(48px, 12vw, 80px) 0;
}


.cash-game {
  padding: clamp(48px, 12vw, 80px) 0;
  background: #F0EDE8;
  color: #14110F;
}

.cash-game-wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: stretch;
  gap: clamp(32px, 6.5vw, 48px);
}

.cash-game-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.15);
}

.cash-game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cash-game-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.04) 0%, rgba(18, 18, 18, 0.18) 100%);
}

.cash-game-visual:hover img {
  transform: scale(1.05);
}

.cash-game-panel {
  display: grid;
  gap: clamp(24px, 5vw, 32px);
}

.cash-game-header {
  display: grid;
  gap: clamp(8px, 2vw, 16px);
  text-align: center;
}

.cash-game-header h2 {
  margin: 0;
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  color: #121212;
  letter-spacing: 0.12rem;
}


.cash-game-header p {
  margin: 0;
  color: #8B8075;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
}

.cash-game-card {
  position: relative;
  display: grid;
  gap: clamp(18px, 3.5vw, 28px);
}

.cash-game-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 20px);
}

.cash-game-headline-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cash-game-pill {
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(197, 165, 114, 0.22);
  border: 1px solid rgba(197, 165, 114, 0.28);
  letter-spacing: 0.24rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #14110F;
  align-self: flex-start;
}

.cash-game-info-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  color: #2A2A2A;
  margin: 0;
  letter-spacing: 0.02rem;
}

.cash-game-headline-note {
  font-size: 0.82rem;
  letter-spacing: 0.12rem;
  color: #8B8075;
  text-transform: uppercase;
}

.cash-game-board {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 243, 236, 0.92) 100%);
  border-radius: 32px;
  padding: clamp(32px, 6.8vw, 48px);
  box-shadow: 0 18px 36px rgba(24, 24, 24, 0.12);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(197, 165, 114, 0.22);
}

.cash-game-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 3vw, 26px);
}

.cash-game-meta-item {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: clamp(20px, 3.8vw, 28px);
  border: 1px solid rgba(197, 165, 114, 0.22);
  display: grid;
  gap: 8px;
  backdrop-filter: blur(22px);
}

.cash-game-label {
  font-size: 0.76rem;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  color: #8B8075;
}

.cash-game-value {
  font-size: clamp(1.05rem, 0.95rem + 0.55vw, 1.5rem);
  font-weight: 600;
  color: #14110F;
}

.cash-game-updated {
  margin: 0;
  font-size: 0.88rem;
  color: #C5A572;
  text-align: right;
  letter-spacing: 0.08rem;
}

.cash-game-state {
  text-align: center;
  color: #8B8075;
  font-size: 1.05rem;
  padding: clamp(28px, 6vw, 48px);
}

.cash-game-state--error {
  color: #e16c6c;
}

.cash-game-state--loading {
  color: rgba(40, 40, 40, 0.58);
}

.cash-game-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.cash-game-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
}

.club-restaurant {
  padding: clamp(48px, 12vw, 80px) 0;
  background: transparent;
}

.restaurant-visual {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 28px 60px rgba(18, 18, 18, 0.25);
}

.restaurant-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.restaurant-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 720px) {
  .restaurant-visual {
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    min-height: 50vh;
    display: block;
    position: relative;
  }

  .restaurant-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    aspect-ratio: auto;
    z-index: 0;
  }
}

.restaurant-visual:hover img {
  transform: scale(1.05);
}

.restaurant-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 12vw, 120px);
  background: transparent;
  z-index: 2;
}

.restaurant-copy {
  max-width: 620px;
  display: grid;
  gap: clamp(16px, 3.6vw, 28px);
  text-align: center;
  color: #F8F6F1;
}

.restaurant-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  color: rgba(255, 245, 227, 0.78);
}

.restaurant-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2rem + 1.8vw, 3.6rem);
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}


.restaurant-copy p {
  margin: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.32rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.restaurant-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 34px;
  border-radius: 999px;
  background: rgba(240, 237, 232, 0.12);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  font-size: 0.78rem;
  border: 1px solid rgba(240, 237, 232, 0.3);
  backdrop-filter: blur(6px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.restaurant-link:hover,
.restaurant-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(8, 8, 8, 0.35);
}

.jackpot-progress {
  padding: clamp(48px, 12vw, 80px) 0;
  background: #F0EDE8;
}

.jackpot-progress-wrap {
  display: grid;
  gap: clamp(40px, 6vw, 56px);
}

.club-services {
  position: relative;
  padding: clamp(48px, 12vw, 80px) 0;
  background: #F0EDE8;
  overflow: hidden;
}

.club-services::before,
.club-services::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  z-index: 0;
}

.services-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(48px, 8vw, 72px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(16px, 4vw, 32px);
}

.services-head {
  text-align: center;
  display: grid;
  gap: clamp(14px, 3.2vw, 22px);
  max-width: 760px;
  margin: 0 auto;
}

.services-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: #8B8075;
}

.services-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2rem + 1.8vw, 3.6rem);
  color: #121212;
  letter-spacing: 0.08rem;
}

.services-head p {
  margin: 0;
  color: #4A4138;
  font-size: clamp(1.02rem, 0.96rem + 0.46vw, 1.28rem);
  line-height: 1.75;
}

.services-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(12px, 5vw, 24px) clamp(8px, 3vw, 24px);
  box-sizing: border-box;
}

.club-articles {
  position: relative;
  padding: clamp(48px, 12vw, 80px) 0;
  background: #F0EDE8;
}

.club-faq {
  padding: clamp(48px, 12vw, 80px) 0;
  background: linear-gradient(180deg, rgba(240, 237, 232, 1) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.faq-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(24px, 6vw, 80px);
  display: grid;
  gap: clamp(36px, 6vw, 56px);
}

.responsable-head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 2rem + 1.4vw, 3.2rem);
}

.responsable-head p {
  margin: 0;
  color: rgba(245, 241, 235, 0.82);
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  line-height: 1.7;
}

.responsable-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  color: #F6F5F2;
}

.responsable-card p {
  margin: 0;
  color: rgba(245, 241, 235, 0.82);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .responsable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .responsable-wrap {
    padding: 0 clamp(20px, 8vw, 32px);
  }

  .responsable-grid {
    grid-template-columns: 1fr;
  }
}

.faq-head {
  display: grid;
  gap: clamp(12px, 2.6vw, 18px);
  max-width: min(760px, 70vw);
  color: #121212;
}

.faq-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: #8B8075;
}

.faq-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.2rem);
  letter-spacing: 0.08rem;
  color: #121212;
}

.faq-head p {
  margin: 0;
  color: #4A4138;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  line-height: 1.72;
}

.faq-grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

.faq-item {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(197, 165, 114, 0.18);
  box-shadow: 0 28px 48px rgba(18, 18, 18, 0.1);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  padding: clamp(22px, 4.4vw, 34px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
  background: transparent;
  border: none;
  color: #121212;
  cursor: pointer;
}

.faq-toggle:hover {
  background: rgba(197, 165, 114, 0.08);
}

.faq-question {
  flex: 1;
  text-align: left;
  letter-spacing: 0.04rem;
}

.faq-icon {
  font-size: 1.4rem;
  color: #9F7F49;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 clamp(22px, 4.4vw, 34px) clamp(22px, 4.4vw, 34px);
  border-top: 1px solid rgba(197, 165, 114, 0.2);
  color: #4A4138;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 720px) {
  .faq-wrap {
    padding: 0 clamp(20px, 8vw, 32px);
  }
}

.articles-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(24px, 6vw, 80px);
  display: grid;
  gap: clamp(42px, 7vw, 64px);
}

.articles-head {
  display: grid;
  gap: clamp(12px, 2.6vw, 20px);
  max-width: min(860px, 70vw);
  color: #121212;
}

.articles-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: #8B8075;
}

.articles-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.6rem + 1.2vw, 2.5rem);
  letter-spacing: 0.08rem;
  color: #121212;
}

.articles-head p {
  margin: 0;
  color: #4A4138;
  font-size: clamp(1rem, 0.92rem + 0.45vw, 1.2rem);
  line-height: 1.72;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 40px);
}

.article-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 243, 236, 0.86) 100%);
  border: 1px solid rgba(197, 165, 114, 0.22);
  box-shadow: 0 36px 58px rgba(18, 18, 18, 0.14);
  display: grid;
  grid-template-rows: minmax(0, 240px) auto;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content {
  display: grid;
  gap: clamp(12px, 2.2vw, 18px);
  padding: clamp(26px, 4.6vw, 38px);
  color: #121212;
}

.article-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 20px;
  border-radius: 999px;
  background: rgba(197, 165, 114, 0.16);
  color: #9F7F49;
  letter-spacing: 0.22rem;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.article-content h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 2rem);
  color: #121212;
}

.article-content p {
  margin: 0;
  color: #5C5248;
  font-size: clamp(0.98rem, 0.9rem + 0.32vw, 1.14rem);
  line-height: 1.65;
}

.article-link {
  justify-self: flex-start;
  font-size: 0.85rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: #9F7F49;
  text-decoration: none;
  border-bottom: 1px solid rgba(159, 127, 73, 0.4);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.article-link:hover {
  color: #121212;
  border-color: #121212;
}

@media (max-width: 1100px) {
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .articles-wrap {
    padding: 0 clamp(18px, 8vw, 32px);
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.services-track {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 42px);
  box-shadow: 0 48px 84px rgba(12, 12, 12, 0.22);
  min-height: clamp(480px, 50vw, 680px);
  height: auto;
  width: 100%;
}

.services-track-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.services-track-inner > * {
  flex: 0 0 100%;
  min-width: 0;
}

.service-item {
  position: relative;
  color: #F6F5F2;
  min-height: clamp(480px, 50vw, 680px);
  height: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.service-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.82) 0%, rgba(14, 14, 14, 0.62) 40%, rgba(240, 237, 232, 0.05) 100%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.08);
}

.service-item:hover .service-media img {
  transform: scale(1.08);
}

.service-content {
  position: relative;
  z-index: 1;
  padding: clamp(44px, 7vw, 84px);
  max-width: min(600px, 65%);
  display: grid;
  gap: clamp(12px, 2.8vw, 22px);
  margin-left: clamp(32px, 6vw, 60px);
  margin-top: auto;
  margin-bottom: clamp(24px, 5vw, 40px);
  flex: 1;
}


.service-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(197, 165, 114, 0.18);
  color: #EAD8BB;
  border: 1px solid rgba(197, 165, 114, 0.35);
  font-size: 0.76rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.service-content h3 {
  margin: 0;
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.6rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.service-content p {
  margin: 0;
  color: rgba(245, 241, 235, 0.82);
  font-size: clamp(1rem, 0.94rem + 0.4vw, 1.24rem);
  line-height: 1.7;
}

.service-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(6px, 1.8vw, 14px);
}

.service-points li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(0.94rem, 0.9rem + 0.32vw, 1.12rem);
  color: rgba(245, 241, 235, 0.86);
}

.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(197, 165, 114, 0.9);
  box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.18);
}

.services-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  border: none;
  background: rgba(10, 10, 10, 0.45);
  color: #F6F5F2;
  border: 1px solid rgba(197, 165, 114, 0.38);
  border-radius: 50%;
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
  display: grid;
  place-items: center;
  font-size: clamp(1.4rem, 1.1rem + 0.8vw, 1.8rem);
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease;
  z-index: 3;
}
.services-nav--prev {
  left: clamp(24px, 4vw, 48px);
}

.services-nav--next {
  right: clamp(24px, 4vw, 48px);
}


.services-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(197, 165, 114, 0.28);
}

@media (max-width: 720px) {
  .services-nav:hover {
    transform: none;
  }
}

.services-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.services-indicators {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(18px, 4vw, 28px);
}

.services-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(18, 18, 18, 0.2);
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}

.services-indicators button[aria-current="true"] {
  background: rgba(197, 165, 114, 0.9);
  transform: scale(1.2);
}

.jackpot-progress-head {
  text-align: center;
  display: grid;
  gap: clamp(12px, 3vw, 20px);
  max-width: 720px;
  margin: 0 auto;
}

.jackpot-progress-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.26rem;
  text-transform: uppercase;
  color: #8B8075;
}

.jackpot-progress-head h2 {
  margin: 0;
  font-size: clamp(2.2rem, 1.9rem + 1.6vw, 3.2rem);
  color: #121212;
  letter-spacing: 0.08rem;
}

.jackpot-progress-head p {
  margin: 0;
  color: #50473E;
  font-size: clamp(1rem, 0.92rem + 0.42vw, 1.22rem);
  line-height: 1.7;
}

.jackpot-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.8vw, 44px);
}

.jackpot-progress-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) 1fr;
  column-gap: 0;
  align-items: stretch;
  background: var(--surface-muted);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(197, 165, 114, 0.28);
  box-shadow: 0 32px 52px rgba(18, 18, 18, 0.16);
}

.jackpot-progress-media {
  position: relative;
  padding: clamp(18px, 3.4vw, 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(240, 237, 232, 0.8), rgba(255, 255, 255, 0.92));
  border-right: 1px solid rgba(197, 165, 114, 0.18);
}

.jackpot-progress-media img {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.jackpot-progress-card:hover .jackpot-progress-media img {
  transform: scale(1.04);
}

.jackpot-progress-body {
  padding: clamp(22px, 3.6vw, 30px);
  display: grid;
  gap: clamp(6px, 1.4vw, 14px);
  align-content: center;
  text-align: left;
}

.jackpot-progress-body h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  color: #14110F;
}

.jackpot-progress-amount {
  margin: 0;
  font-size: clamp(1.6rem, 1.35rem + 1vw, 2.4rem);
  font-weight: 600;
  color: #C5A572;
}

.jackpot-progress-note {
  margin: 0;
  color: #675C51;
  font-size: clamp(0.9rem, 0.86rem + 0.24vw, 1.04rem);
  line-height: 1.2;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  /* Force small text on jackpot banner */
  .jackpot-progress .jackpot-progress-body h3,
  .jackpot-progress .jackpot-progress-amount,
  .jackpot-progress-card .jackpot-progress-body h3,
  .jackpot-progress-card .jackpot-progress-amount {
    font-size: 12px !important;
    line-height: 1.2;
  }
}

@media (max-width: 720px) {
  .jackpot-progress-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    row-gap: 0;
    column-gap: 0;
    align-items: stretch;
    padding: 0;
  }

  .jackpot-progress-media {
    padding: clamp(12px, 5vw, 18px);
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 165, 114, 0.18);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 0;
  }

  .jackpot-progress-media img {
    width: clamp(140px, 44vw, 220px);
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    flex-shrink: 0;
  }

  .jackpot-progress-body {
    padding: clamp(12px, 5vw, 18px);
    margin: 0;
    gap: clamp(6px, 2vw, 10px);
    flex: 1 1 auto;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .jackpot-progress .jackpot-progress-body h3,
  .jackpot-progress-card .jackpot-progress-body h3 {
    font-size: 12px !important;
    line-height: 1.2;
  }

  .jackpot-progress .jackpot-progress-amount,
  .jackpot-progress-card .jackpot-progress-amount {
    font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.8rem) !important;
    line-height: 1.2;
  }

  .jackpot-progress-note {
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .services-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: clamp(16px, 8vw, 32px) clamp(12px, 6vw, 24px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: clamp(16px, 6vw, 24px);
  }

  .services-track {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 24px;
    min-height: clamp(260px, 78vw, 360px);
  }

  .services-nav {
    position: static;
    transform: none;
    width: clamp(38px, 12vw, 48px);
    height: clamp(38px, 12vw, 48px);
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
    grid-row: 2;
  }

  .services-nav--prev {
    justify-self: end;
  }

  .services-nav--next {
    justify-self: start;
  }

  .services-indicators {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .service-item {
    min-height: clamp(240px, 82vw, 360px);
  }

  .service-content {
    padding: clamp(28px, 14vw, 48px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .service-tag {
    letter-spacing: 0.18rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-head {
    gap: clamp(10px, 5vw, 18px);
  }

  .club-restaurant {
    padding: clamp(32px, 8vw, 48px) 0;
  }

  .restaurant-overlay {
    padding: clamp(32px, 16vw, 72px);
  }

  .restaurant-copy {
    gap: clamp(14px, 6vw, 22px);
  }

  .restaurant-link {
    padding: 10px 26px;
    letter-spacing: 0.2rem;
  }

  .cash-game-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "visual";
  }

  .cash-game-visual {
    height: clamp(220px, 60vw, 340px);
    grid-area: visual;
  }
}

@media (max-width: 540px) {
  .cash-game-board {
    padding: clamp(24px, 10vw, 32px);
  }

  .cash-game-meta {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 720px) {
  .cash-game-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "panel"
      "visual";
  }

  .cash-game-visual {
    height: clamp(220px, 60vw, 340px);
    grid-area: visual;
  }

  .cash-game-hero {
    grid-template-columns: 1fr;
    gap: clamp(18px, 7vw, 26px);
  }

  .cash-game-hero-figure {
    justify-self: stretch;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .cash-game-board {
    padding: clamp(24px, 10vw, 32px);
  }

  .cash-game-meta {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 720px) {
  .cash-game-header h2 {
    font-size: clamp(1.5rem, 1.32rem + 1vw, 2.1rem);
  }

  .cash-game-header p {
    font-size: clamp(0.8rem, 0.76rem + 0.18vw, 0.95rem);
  }

  .cash-game-hero {
    grid-template-columns: 1fr;
    gap: clamp(18px, 7vw, 26px);
  }

  .cash-game-hero-figure {
    justify-self: stretch;
    text-align: left;
    padding: clamp(22px, 9vw, 30px);
  }

  .cash-game-meta {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .cash-game-header p {
    font-size: clamp(0.98rem, 0.92rem + 0.3vw, 1.1rem);
  }

  .cash-game-pill {
    font-size: clamp(0.6rem, 0.56rem + 0.12vw, 0.7rem);
    padding: 3px 9px;
  }

  .cash-game-label {
    font-size: clamp(0.55rem, 0.52rem + 0.08vw, 0.62rem);
    letter-spacing: 0.16rem;
  }

  .cash-game-value {
    font-size: clamp(0.65rem, 0.62rem + 0.1vw, 0.75rem);
    line-height: 1.2;
  }
}

@media (max-width: 540px) {
  .cash-game-board {
    padding: clamp(24px, 10vw, 32px);
  }

  .cash-game-meta {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .cash-game-hero-figure {
    padding: clamp(20px, 10vw, 28px);
  }

  .cash-game-label {
    font-size: clamp(0.5rem, 0.48rem + 0.06vw, 0.58rem);
    letter-spacing: 0.12rem;
  }

  .cash-game-value {
    font-size: clamp(0.6rem, 0.58rem + 0.08vw, 0.68rem);
    line-height: 1.25;
  }
}

.games-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
}

.games-header h2 {
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  color: #000;
}

.games-header p {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
}
.game-grid.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 42vw, 420px);
  padding: clamp(28px, 6vw, 48px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px dashed var(--border-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 720px) {
  .game-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
  }

  .game-item {
    min-height: clamp(260px, 70vw, 360px);
  }
}

.games-empty {
  max-width: 520px;
  text-align: center;
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
}

.games-empty p {
  margin: 0;
}

.games-empty-hint {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.games-empty strong {
  color: var(--text-tertiary);
}

@media (max-width: 720px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
  }
}


.game-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  border-radius: 26px;
  overflow: hidden;
  min-height: clamp(320px, 38vw, 480px);
  background: #101010;
  box-shadow: 0 32px 64px rgba(8, 8, 8, 0.32);
}

.game-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(215deg, rgba(4, 4, 4, 0.82) 0%, rgba(8, 8, 8, 0.58) 42%, rgba(10, 10, 10, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.game-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  padding: clamp(20px, 3.5vw, 32px);
  color: #ffffff;
}

.game-overlay-top {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.8vw, 20px);
}

.game-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.8vw, 20px);
  margin-top: auto;
}

.game-title {
  margin: 0;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.4rem);
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
}

.game-title-icon {
  width: 1.9em;
  height: 1.9em;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.game-title-text-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 0.3vw, 4px);
}

.game-title span {
  display: block;
  text-transform: none;
}

.game-title-text-wrapper {
  text-transform: none;
}

.game-location {
  font-family: "Baskerville Old Face", "Baskervville SC", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.1rem + 0.5vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  font-variant: normal !important;
  color: #FFFFFF;
  display: block;
  text-align: left;
  text-transform: none !important;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -moz-osx-font-smoothing: auto !important;
  text-rendering: geometricPrecision !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.game-hook {
  margin: 0;
  font-size: clamp(1rem, 0.88rem + 0.75vw, 1.55rem);
  line-height: 1.32;
  max-width: min(520px, 78%);
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.game-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1vw, 8px) clamp(16px, 2.5vw, 20px);
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: 1px solid rgba(197, 165, 114, 0.4);
  border-radius: 999px;
  margin-top: clamp(6px, 1.2vw, 10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  min-width: 120px;
  backdrop-filter: blur(4px);
}

.game-item:hover .game-button {
  color: #fff;
  border-color: rgba(197, 165, 114, 0.7);
  background: rgba(197, 165, 114, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(197, 165, 114, 0.2);
}

.game-item:hover .game-media {
  transform: scale(1.12);
}
.game-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  z-index: 2;
}

.game-detail {
  padding-top: 96px;
  background: var(--background);
  min-height: 100vh;
  color: var(--text-primary);
}

.game-detail-placeholder,
.game-detail-empty,
.game-detail-error {
  max-width: 720px;
  margin: clamp(48px, 10vw, 120px) auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.game-detail-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(200px, 35vw, 320px);
  overflow: hidden;
  background: #060606;
  display: flex;
  align-items: center;
}

.game-detail-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.game-detail-hero:hover .game-detail-media {
  transform: scale(1.08);
}

.game-detail-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 4, 0.75) 0%,
    rgba(6, 6, 6, 0.65) 30%,
    rgba(8, 8, 8, 0.5) 60%,
    rgba(12, 12, 12, 0.3) 100%
  );
  z-index: 1;
}

.game-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 98vw);
  margin: 0 auto;
  padding: clamp(80px, 14vw, 120px) clamp(16px, 2vw, 32px);
  display: grid;
  gap: clamp(20px, 3.5vw, 32px);
  color: #ffffff;
  width: 100%;
}

.game-detail-back {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.game-detail-back:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(-4px);
}

.game-detail-title {
  margin: 0;
  font-size: clamp(3rem, 2.4rem + 2.8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.game-detail-subtitle-block {
  margin: 0 auto clamp(32px, 6vw, 48px);
  text-align: center;
  max-width: 70ch;
}

.game-detail-subtitle-block .game-detail-hook {
  margin: 0;
  text-align: center;
  color: #121212;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.2rem);
}

.game-detail-location {
  display: block;
  margin: 0;
  margin-top: clamp(-4px, -0.3vw, -2px);
  font-family: "Baskerville Old Face", "Baskervville SC", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.5rem, 1.4rem + 0.8vw, 2rem);
  font-style: normal;
  color: #FFFFFF;
  text-align: left;
  text-transform: none;
  font-weight: 400;
  line-height: 1.1;
}

.game-detail-hook {
  margin: 0;
  font-size: clamp(1.25rem, 1.1rem + 1vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 70ch;
  line-height: 1.5;
  font-weight: 400;
}

.game-detail-tables {
  margin: clamp(20px, 3vw, 28px) 0 0 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.game-detail-meta {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding-top: clamp(12px, 2vw, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

/* Game Detail Main Content */
.game-detail-main-content {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--background);
}

.game-detail-main-content .container {
  width: min(1400px, 98vw);
  padding: 0 clamp(8px, 1vw, 16px);
}

@media (max-width: 720px) {
  .game-detail-hero-content {
    max-width: 100%;
    padding: clamp(48px, 12vw, 64px) clamp(16px, 6vw, 22px);
  }

  .game-detail-main-content .container {
    width: 100%;
    padding: 0 clamp(16px, 6vw, 22px);
    box-sizing: border-box;
  }

  .game-detail-text-and-jackpots {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 clamp(10px, 4vw, 16px);
    margin: 0 auto clamp(36px, 7vw, 52px);
  }

  .game-detail-text-first,
  .game-detail-jackpots {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline: clamp(4px, 3vw, 12px);
  }

  .game-detail,
  .game-detail-main-content {
    overflow-x: hidden;
  }

  /* Justify all body texts on mobile */
  .game-detail-hero-content p,
  .game-detail-hook,
  .game-detail-text-first,
  .game-detail-text-first p,
  .game-detail-body,
  .game-detail-body p,
  .game-detail-paragraph-text,
  .game-detail-paragraph-text p,
  .game-detail-field-content,
  .game-detail-field-content p,
  .game-detail-jackpot-card p,
  .game-detail-tables {
    text-align: justify;
  }

  /* Club intro paragraph (34 rue Marbeuf...) justified on mobile */
  .story-content p {
    text-align: justify;
  }
}

/* Text First Section with Jackpots */
.game-detail-text-and-jackpots {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 60px);
  align-items: start;
  margin: 0 auto clamp(48px, 8vw, 64px);
  width: min(1180px, 92vw);
  padding-inline: clamp(12px, 3vw, 20px);
  box-sizing: border-box;
}

.game-detail-text-first {
  text-align: justify;
  min-height: 1px;
}

.game-detail-text-first p {
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  font-size: clamp(1.1rem, 1.05rem + 0.3vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: justify;
}

/* Game detail - justify all texts (desktop + mobile) */
.game-detail-text-first,
.game-detail-text-first p,
.game-detail-article-body,
.game-detail-article-body p,
.game-detail-variant-text,
.game-detail-variant-text p,
.game-detail-jackpot-card p,
.game-detail-tables,
.game-detail-body,
.game-detail-body p,
.game-detail-paragraph-text,
.game-detail-paragraph-text p,
.game-detail-field-content,
.game-detail-field-content p {
  text-align: justify;
}

.game-detail-text-first p:last-child {
  margin-bottom: 0;
}

/* Jackpots in Game Detail */
.game-detail-jackpots {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
}

.game-detail-jackpot-card {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-detail-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.game-detail-jackpot-media {
  flex-shrink: 0;
  width: clamp(100px, 15vw, 140px);
  height: clamp(100px, 15vw, 140px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--background);
}

.game-detail-jackpot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.game-detail-jackpot-body {
  flex: 1;
  display: grid;
  gap: clamp(8px, 1.5vw, 12px);
}

.game-detail-jackpot-title {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.game-detail-jackpot-amount {
  margin: 0;
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 700;
  color: #9F7F49;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.game-detail-jackpot-note {
  margin: 0;
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .game-detail-text-and-jackpots {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    width: min(1180px, 96vw);
    padding-inline: clamp(10px, 3vw, 18px);
  }
}

/* Centered Image */
.game-detail-image-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(64px, 10vw, 96px);
}

.game-detail-image-wrapper {
  width: 100%;
  max-width: min(1200px, 98vw);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  background: var(--surface);
}

.game-detail-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: clamp(300px, 40vw, 500px);
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Centered Content */
.game-detail-content-center {
  max-width: min(1200px, 98vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(56px, 8vw, 80px);
}

.game-detail-info-box {
  margin-bottom: clamp(40px, 6vw, 60px);
  padding: clamp(24px, 4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.game-detail-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: clamp(16px, 2.5vw, 20px);
  border-bottom: 1px solid var(--border);
}

.game-detail-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.game-detail-info-label {
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  font-weight: 500;
  color: var(--text-secondary);
}

.game-detail-info-value {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
}

.game-detail-info-mises {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

.game-detail-info-mises-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: clamp(12px, 2vw, 16px);
  border-bottom: 1px solid var(--border);
}

.game-detail-info-mises-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.85rem);
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-detail-info-mise-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(8px, 1.5vw, 12px) 0;
}

.game-detail-info-mise-label {
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  font-weight: 500;
  color: var(--text-primary);
}

.game-detail-info-mise-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  text-align: right;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  font-weight: 400;
  color: var(--text-secondary);
}

.game-detail-article {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.game-detail-article-header {
  display: grid;
  gap: clamp(8px, 1.5vw, 12px);
  padding-bottom: clamp(16px, 2.5vw, 24px);
  border-bottom: 2px solid var(--accent);
}

.game-detail-article-label {
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-strong);
  font-weight: 600;
}

.game-detail-article-title {
  margin: 0;
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-detail-article-body {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.5;
  color: var(--text-secondary);
  padding-top: clamp(16px, 2.5vw, 24px);
}

.game-detail-article-body p {
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.5;
}

.game-detail-article-body p:last-child {
  margin-bottom: 0;
}

.game-detail-text-first strong,
.game-detail-article-body strong,
.game-detail-variant-text strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* Variant Section with Image */
.game-detail-article--variant .game-detail-article-header {
  margin-bottom: clamp(32px, 5vw, 40px);
}

.game-detail-variant-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 60px);
  align-items: stretch;
  padding-top: clamp(16px, 2.5vw, 24px);
}

.game-detail-variant-text {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
}

.game-detail-variant-text p {
  margin: 0 0 clamp(8px, 1.2vw, 12px);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.5;
  color: var(--text-secondary);
}

.game-detail-variant-text p:last-child {
  margin-bottom: 0;
}

.game-detail-variant-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: var(--surface);
  display: flex;
  align-items: stretch;
}

.game-detail-variant-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .game-detail-variant-content {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .game-detail-variant-image {
    position: static;
    order: 1;
  }

  .game-detail-variant-text {
    order: 2;
  }
}

/* Other Games Section */
.game-detail-other-games {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.game-detail-other-games .container {
  width: min(1400px, 98vw);
  padding: 0 clamp(8px, 1vw, 16px);
}

.game-detail-other-games-header {
  margin-bottom: clamp(48px, 8vw, 64px);
  text-align: center;
}

.game-detail-other-games-title {
  margin: 0;
  font-size: clamp(2rem, 1.8rem + 1vw, 2.8rem);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-detail-other-games-grid {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 165, 114, 0.3) transparent;
}

.game-detail-other-games-grid::-webkit-scrollbar {
  height: 8px;
}

.game-detail-other-games-grid::-webkit-scrollbar-track {
  background: transparent;
}

.game-detail-other-games-grid::-webkit-scrollbar-thumb {
  background: rgba(197, 165, 114, 0.3);
  border-radius: 4px;
}

.game-detail-other-games-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 165, 114, 0.5);
}

.game-detail-other-games-grid .game-item {
  flex: 0 0 min(400px, 48vw);
  min-width: min(400px, 48vw);
  max-width: min(400px, 48vw);
}

@media (max-width: 900px) {
  .game-detail-other-games-grid .game-item {
    flex: 0 0 min(320px, 75vw);
    min-width: min(320px, 75vw);
    max-width: min(320px, 75vw);
  }
}

@media (max-width: 540px) {
  .game-detail-other-games-grid .game-item {
    flex: 0 0 min(280px, 85vw);
    min-width: min(280px, 85vw);
    max-width: min(280px, 85vw);
  }
}

/* Paiement Content */
.game-paiement-content {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  margin: clamp(24px, 4vw, 32px) 0;
}


.game-paiement-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(14px, 2.5vw, 18px) clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: 12px;
  margin-bottom: clamp(8px, 1.5vw, 12px);
}

.game-paiement-header-item {
  font-size: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-paiement-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 3vw, 24px);
  padding: clamp(14px, 2.5vw, 18px) clamp(20px, 3vw, 28px);
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.game-paiement-row:hover {
  background: var(--surface-muted);
  border-color: var(--accent);
  transform: translateX(4px);
}

.game-paiement-label {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

.game-paiement-value {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  color: var(--accent-strong);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.game-paiement-line {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
  padding: clamp(8px, 1.5vw, 12px) 0;
}

@media (max-width: 720px) {
  .game-paiement-header,
  .game-paiement-row {
    grid-template-columns: 1fr;
    gap: clamp(8px, 1.5vw, 12px);
    padding: clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
  }

  .game-paiement-value {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .services-slider {
    padding: 0 clamp(14px, 6vw, 20px);
  }
  .articles-wrap {
    padding: 0 clamp(20px, 8vw, 48px);
}

  .articles-grid {
    grid-template-columns: 1fr;
  }


  .services-track {
    border-radius: 32px;
  }

  .services-nav--prev {
    left: clamp(18px, 8vw, 32px);
  }

  .services-nav--next {
    right: clamp(18px, 8vw, 32px);
  }

  .service-item {
    min-height: clamp(320px, 78vw, 520px);
  }

  .service-content {
    padding: clamp(28px, 10vw, 44px);
    max-width: none;
    margin: clamp(12px, 4vw, 20px) auto;
    gap: clamp(10px, 3vw, 16px);
    text-align: center;
  }

  .jackpot-progress-grid {
    grid-template-columns: 1fr;
  }

  .jackpot-progress-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .jackpot-progress-media {
    padding: clamp(24px, 12vw, 48px);
  }

  .jackpot-progress-media img {
    width: clamp(160px, 42vw, 240px);
  }

  .game-detail {
    padding-top: 84px;
  }

  .game-detail-title {
    font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3rem);
  }

}

@media (max-width: 900px) {
  .game-detail-hero {
    min-height: clamp(180px, 40vw, 280px);
  }

  .game-detail-title {
    font-size: clamp(2.4rem, 2rem + 2vw, 3.2rem);
  }

  .game-detail-text-first {
    margin-bottom: clamp(40px, 6vw, 56px);
  }

  .game-detail-image-center {
    margin-bottom: clamp(48px, 8vw, 64px);
  }

  .game-detail-content-center {
    gap: clamp(40px, 6vw, 56px);
  }
}

@media (max-width: 720px) {
  .game-detail-hero {
    min-height: clamp(160px, 45vw, 240px);
  }

  .game-detail-hero-content {
    padding: clamp(60px, 12vw, 80px) clamp(20px, 6vw, 32px);
    gap: clamp(16px, 3vw, 24px);
  }

  .game-detail-title {
    font-size: clamp(2rem, 1.8rem + 1.5vw, 2.8rem);
  }

  .game-detail-hook {
    font-size: clamp(1.1rem, 1rem + 0.8vw, 1.5rem);
  }


  .game-detail-text-first {
    margin-bottom: clamp(32px, 5vw, 48px);
  }

  .game-detail-text-first p {
    font-size: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  }

  .game-detail-image-center {
    margin-bottom: clamp(40px, 6vw, 56px);
  }

  .game-detail-image-wrapper {
    max-width: 100%;
  }

  .game-detail-image-wrapper img {
    max-height: clamp(250px, 50vw, 400px);
  }

  .game-detail-content-center {
    gap: clamp(32px, 5vw, 48px);
  }
}

@media (max-width: 540px) {
  .game-detail-main-content {
    padding: clamp(48px, 8vw, 64px) 0;
  }

  .game-detail-back {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
  }

  .game-detail-text-first {
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .game-detail-image-wrapper img {
    max-height: clamp(200px, 45vw, 320px);
  }

  .game-detail-text-first p {
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  }

  .game-detail-image-center {
    margin-bottom: clamp(32px, 5vw, 40px);
  }

  .game-detail-content-center {
    gap: clamp(32px, 5vw, 40px);
  }
}

/* Footer ------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.98);
  color: rgba(245, 241, 235, 0.88);
}

.footer-main {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  padding: clamp(32px, 6vw, 56px) 0;
}

.footer-brand {
  display: grid;
  gap: clamp(10px, 2vw, 16px);
}

.footer-brand > p {
  margin: 0;
}

.footer-brand > p:first-of-type + p {
  margin-top: -8px;
}

.footer-logo img {
  height: clamp(36px, 5vw, 60px);
  width: auto;
}

.footer-contact {
  display: grid;
  gap: 6px;
  font-size: clamp(0.78rem, 0.74rem + 0.18vw, 0.9rem);
}

.footer-contact a {
  color: rgba(245, 241, 235, 0.9);
  text-decoration: none;
  letter-spacing: 0.05rem;
}

.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--text-tertiary);
}

.footer-contact a.footer-admin-btn {
  color: #121212;
}

.footer-contact a.footer-admin-btn:hover,
.footer-contact a.footer-admin-btn:focus {
  color: #121212;
}

.footer-admin-btn {
  display: inline-block;
  margin-left: 12px;
  padding: 6px 16px;
  background: transparent;
  color: rgba(245, 241, 235, 0.74);
  text-decoration: none;
  border-radius: 6px;
  font-size: clamp(0.78rem, 0.74rem + 0.18vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.05rem;
  transition: color 0.2s ease, transform 0.2s ease;
  border: none;
}

.footer-admin-btn:hover,
.footer-admin-btn:focus {
  color: rgba(245, 241, 235, 1);
  transform: translateY(-1px);
}

.footer-map iframe {
  width: 100%;
  height: clamp(200px, 20vw, 260px);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
}

.footer-links h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.86);
}

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

.footer-links a {
  color: rgba(245, 241, 235, 0.78);
  text-decoration: none;
  font-size: clamp(0.78rem, 0.72rem + 0.18vw, 0.88rem);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--text-tertiary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: clamp(18px, 4vw, 24px) 0 clamp(28px, 6vw, 36px);
  text-align: center;
  font-size: 0.86rem;
  color: rgba(245, 241, 235, 0.9);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom a.footer-legal-link {
  color: #ffffff;
  margin-left: 12px;
  display: inline-block;
  font-weight: 400;
}

.footer-bottom a.footer-legal-link:hover,
.footer-bottom a.footer-legal-link:focus {
  color: #ffffff;
}

.footer-separator {
  display: inline-block;
  margin: 0 10px;
  color: #ffffff;
}

/* Mentions légales */
.legal-page {
  background: #f7f7f7;
  color: #000000;
}

.legal-page h1,
.legal-page h2,
.legal-page h3,
.legal-page p,
.legal-page ul,
.legal-page li,
.legal-page strong,
.legal-page a {
  color: #000000;
}

.legal-content {
  padding: clamp(32px, 6vw, 64px) 0 clamp(48px, 8vw, 96px);
}

.legal-content .container {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}

.legal-content ul {
  padding-left: 18px;
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 2000;
  background: rgba(18, 18, 18, 0.92);
  color: #f5f1eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.cookie-banner__content {
  display: grid;
  gap: 12px;
  align-items: center;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f5f1eb;
}

.cookie-banner__link {
  color: #c5a572;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner__btn--primary {
  background: #c5a572;
  color: #121212;
}

.cookie-banner__btn--secondary {
  background: rgba(255,255,255,0.08);
  color: #f5f1eb;
  border: 1px solid rgba(255,255,255,0.16);
}

@media (max-width: 720px) {
  .cookie-banner {
    inset: auto 8px 8px 8px;
    padding: 14px;
  }
}

/* Error page */
.error-page {
  background: #0f0f0f;
  color: #f5f1eb;
}

.error-content {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}

.error-kicker {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.1rem;
  color: #c5a572;
}

.error-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 3vw, 3rem);
}

.error-text {
  margin: 0 0 20px;
  color: rgba(245, 241, 235, 0.78);
  font-size: 1rem;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #c5a572;
  color: #121212;
  border-radius: 8px;
  font-weight: 600;
}

.error-link {
  color: #c5a572;
  text-decoration: underline;
  font-weight: 500;
}

.error-btn:hover,
.error-btn:focus {
  background: #d9b781;
}

.error-link:hover,
.error-link:focus {
  color: #e2c89a;
}

/* Overrides: Cash game order on mobile */
@media (max-width: 900px) {
  .cash-game-wrap {
    grid-template-areas:
      "panel"
      "visual";
  }
  .cash-game-panel {
    grid-area: panel;
  }
  .cash-game-visual {
    grid-area: visual;
  }
}

@media (max-width: 720px) {
  .cash-game-wrap {
    grid-template-areas:
      "panel"
      "visual";
  }
  .cash-game-panel {
    grid-area: panel;
  }
  .cash-game-visual {
    grid-area: visual;
  }
}

@media (max-width: 720px) {
  /* Article detail: justify text on mobile */
  .article-detail-body,
  .article-detail-body p,
  .article-detail-paragraph-text,
  .article-detail-paragraph-text p,
  .article-detail-field-content,
  .article-detail-field-content p,
  .article-detail-excerpt,
  .article-detail-excerpt p {
    text-align: justify;
  }

  /* Article detail: add lateral padding to avoid content sticking to edges */
  .article-detail-main-content .container {
    padding: 0 clamp(36px, 10vw, 52px);
    box-sizing: border-box;
  }

  /* Safety padding on all containers in article detail */
  .article-detail .container {
    padding-left: clamp(24px, 8vw, 36px);
    padding-right: clamp(24px, 8vw, 36px);
    box-sizing: border-box;
  }
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    height: clamp(220px, 60vw, 280px);
  }
}

/* Article detail mobile overrides (stronger, placed late in file) */
@media (max-width: 720px) {
  .article-detail-main-content .container {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(10px, 4vw, 16px) !important;
    box-sizing: border-box;
  }

  .article-detail .container {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(10px, 4vw, 16px) !important;
    padding-right: clamp(10px, 4vw, 16px) !important;
    box-sizing: border-box;
  }

  /* Extra safety padding on inner blocks */
  .article-detail .article-detail-content-center,
  .article-detail .article-detail-body,
  .article-detail .article-detail-paragraph,
  .article-detail .article-detail-excerpt {
    padding-left: clamp(4px, 2vw, 10px) !important;
    padding-right: clamp(4px, 2vw, 10px) !important;
    box-sizing: border-box;
  }
}
@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
  }

  .story-heading {
    position: sticky;
    top: clamp(96px, 13vh, 140px);
    margin-bottom: clamp(16px, 2vw, 24px);
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    width: min(360px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: clamp(8px, 1.5vw, 16px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(12px, 2vw, 20px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 999;
    box-sizing: border-box;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links-menu {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(4px, 1vw, 8px);
    width: 100%;
    flex: none;
  }
  
  .nav-links-menu a {
    white-space: normal;
    text-align: center;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    font-size: clamp(0.78rem, 2vw, 0.88rem);
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(6px, 1.2vw, 12px);
    flex: none;
  }

  .nav-contact {
    width: 100%;
    text-align: center;
    padding: clamp(8px, 1.5vw, 12px) clamp(14px, 2vw, 18px);
    font-size: clamp(0.78rem, 2vw, 0.88rem);
  }

  .nav-lang-select {
    width: 100%;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    font-size: clamp(0.78rem, 2vw, 0.88rem);
  }
}

@media (max-width: 860px) {
  .jackpot-overlay {
    bottom: 10px;
    width: min(1200px, 96vw);
  }
}

@media (max-width: 900px) {
  .game-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 32px);
  }

  .game-item {
    min-height: clamp(280px, 64vw, 400px);
  }

  .game-overlay {
    padding: clamp(24px, 7vw, 36px);
    gap: clamp(12px, 4vw, 20px);
  }

  .game-title {
    text-align: left;
  }

  .game-button {
    padding: clamp(5px, 1.5vw, 7px) clamp(14px, 3vw, 18px);
    font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  }
}

@media (max-width: 720px) {
  .nav-bar {
    height: 78px;
  }

  main {
    padding-top: 80px;
  }


  .hero {
    padding: 32px 0 44px;
  }

  .hero-video {
    aspect-ratio: 16 / 9;
    max-height: 48vh;
  }

  .jackpot-banner {
    padding: 8px 10px;
    border-radius: 12px;
    max-width: clamp(480px, 75vw, 580px);
  }

  .jackpot-slider {
    height: clamp(75px, 10vw, 100px);
  }

  .game-item {
    min-height: clamp(260px, 66vw, 380px);
  }

  .game-overlay {
    padding: clamp(20px, 9vw, 28px);
    gap: clamp(10px, 5vw, 16px);
    justify-items: center;
  }

  .game-title {
    text-align: left;
  }

  .game-hook {
    font-size: clamp(0.92rem, 0.88rem + 0.38vw, 1.2rem);
    max-width: 92%;
    text-align: left;
  }

  .jackpot-thumb {
    width: clamp(90px, 16vw, 140px);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
  }

  .club-intro {
    padding: clamp(32px, 8vw, 48px) 0;
  }

  .games {
    padding: clamp(32px, 8vw, 48px) 0;
  }
}

@media (max-width: 540px) {
  .jackpot-banner {
    padding: 6px 10px;
    border-radius: 10px;
    max-width: clamp(380px, 92vw, 480px);
  }

  .jackpot-slider {
    height: clamp(75px, 14vw, 100px);
  }

  .game-item {
    min-height: clamp(240px, 76vw, 340px);
  }

  .game-overlay {
    padding: clamp(20px, 9vw, 28px);
    gap: clamp(10px, 5vw, 16px);
    justify-items: center;
  }

  .game-title {
    text-align: left;
  }

  .game-hook {
    font-size: clamp(0.88rem, 0.84rem + 0.34vw, 1.12rem);
    max-width: 96%;
    text-align: left;
  }

  .game-button {
    padding: clamp(5px, 2vw, 7px) clamp(12px, 4vw, 16px);
    font-size: clamp(0.65rem, 0.6rem + 0.25vw, 0.75rem);
  }

  .jackpot-thumb {
    border-radius: 6px;
    width: 100%;
  }
}

/* Restaurant Page Styles */
.restaurant-hero {
  padding: 0;
  background: transparent;
}

.restaurant-hero-visual {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 28px 60px rgba(18, 18, 18, 0.25);
  }

.restaurant-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.restaurant-hero-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 900px) {
  .restaurant-hero-visual img {
    position: absolute;
    inset: 0;
    z-index: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .restaurant-hero-visual {
    width: 100%;
    margin-left: 0;
    border-radius: 0;
    min-height: 50vh;
    display: block;
    position: relative;
  }

  .restaurant-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    aspect-ratio: auto;
  }

  .restaurant-hero-overlay {
    padding: clamp(36px, 12vw, 64px);
  }

  .restaurant-copy {
    gap: clamp(12px, 5vw, 20px);
    text-align: center;
  }

  .restaurant-link {
    justify-self: center;
  }
}

.restaurant-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 14vw, 140px);
  background: transparent;
  z-index: 2;
}

.restaurant-hero-copy {
  max-width: 720px;
  display: grid;
  gap: clamp(18px, 4vw, 32px);
  text-align: center;
  color: #F8F6F1;
}

.restaurant-hero-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: rgba(255, 245, 227, 0.78);
}

.restaurant-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 2.4rem + 2vw, 4.2rem);
  letter-spacing: 0.1rem;
  color: #FFFFFF;
  font-weight: 600;
}

.restaurant-hero-copy p {
  margin: 0;
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.4rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.restaurant-intro {
  padding: clamp(80px, 18vw, 140px) 0;
  background: #F0EDE8;
}

.restaurant-intro-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.restaurant-intro-content {
  display: grid;
  gap: clamp(32px, 6vw, 48px);
}

.restaurant-intro-header {
  text-align: center;
  display: grid;
  gap: clamp(14px, 3vw, 20px);
}

.restaurant-intro-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: #8B8075;
  }

.restaurant-intro-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2rem + 1.8vw, 3.6rem);
  color: #121212;
  letter-spacing: 0.08rem;
  font-weight: 600;
}

.restaurant-intro-body {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.restaurant-intro-text {
  margin: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.32rem);
  line-height: 1.85;
  color: #4A4138;
}

.restaurant-intro-features {
  margin: clamp(16px, 3vw, 24px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(12px, 2.5vw, 18px);
}

.restaurant-intro-features li {
  position: relative;
  padding-left: clamp(24px, 5vw, 32px);
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.2rem);
  line-height: 1.7;
  color: #4A4138;
}

.restaurant-intro-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C5A572;
  font-size: 1.4em;
  line-height: 1;
}

.restaurant-gallery {
  padding: clamp(72px, 16vw, 120px) 0;
  background: #121212;
}

.restaurant-gallery-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
}

.restaurant-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.restaurant-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.restaurant-gallery-item:hover img {
  transform: scale(1.08);
}

.restaurant-menu {
  padding: clamp(80px, 18vw, 140px) 0;
  background: #F0EDE8;
}

.restaurant-menu-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.restaurant-menu-header {
  text-align: center;
  display: grid;
  gap: clamp(14px, 3.2vw, 22px);
  max-width: 760px;
  margin: 0 auto clamp(64px, 10vw, 96px);
}

.restaurant-menu-kicker {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32rem;
  text-transform: uppercase;
  color: #8B8075;
}

.restaurant-menu-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 2rem + 1.8vw, 3.6rem);
  color: #121212;
  letter-spacing: 0.08rem;
  font-weight: 600;
}

.restaurant-menu-header > p {
  margin: 0;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.32rem);
  line-height: 1.85;
  color: #4A4138;
}

.restaurant-menu-categories {
  display: grid;
  gap: clamp(56px, 10vw, 88px);
}

.menu-category {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

.menu-category-title {
  margin: 0;
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.6rem);
  color: #121212;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding-bottom: clamp(16px, 3vw, 24px);
  border-bottom: 2px solid rgba(197, 165, 114, 0.3);
}

/* Drinks Cards Gallery - Images des cartes */
.menu-category--drinks .drinks-cards-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(24px, 4vw, 36px);
  max-width: 1400px;
  margin: 0 auto;
}

.drink-card-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(18, 18, 18, 0.15);
  background: #FFFFFF;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.drink-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(18, 18, 18, 0.2);
}

.drink-card-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(28px, 4vw, 40px);
}

.menu-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 243, 236, 0.86) 100%);
  border: 1px solid rgba(197, 165, 114, 0.22);
  box-shadow: 0 28px 56px rgba(18, 18, 18, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-rows: 240px auto;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 68px rgba(18, 18, 18, 0.18);
}

.menu-item-media {
  position: relative;
  overflow: hidden;
  background: #1E1E1E;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-item:hover .menu-item-media img {
  transform: scale(1.08);
}

.menu-item-content {
  padding: clamp(24px, 4vw, 32px);
  display: grid;
  gap: clamp(10px, 1.8vw, 16px);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.menu-item-name {
  margin: 0;
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  color: #121212;
  font-weight: 600;
  letter-spacing: 0.04rem;
  line-height: 1.3;
  flex: 1;
}

.menu-item-price {
  font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.5rem);
  color: #9F7F49;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02rem;
}

.menu-item-description {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  line-height: 1.7;
  color: #5C5248;
}

.restaurant-menu-cta {
  text-align: center;
  margin-top: clamp(56px, 10vw, 88px);
  padding-top: clamp(40px, 8vw, 64px);
  border-top: 1px solid rgba(197, 165, 114, 0.2);
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}

.restaurant-menu-cta > p {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: #4A4138;
  line-height: 1.75;
}

.restaurant-menu-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2.5vw, 18px) clamp(36px, 6vw, 48px);
  border-radius: 999px;
  background: #121212;
  color: #F8F6F1;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.restaurant-menu-link:hover,
.restaurant-menu-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(8, 8, 8, 0.35);
}

.nav-links-menu a.active {
  color: #C5A572;
  font-weight: 600 !important;
}

@media (max-width: 960px) {
  .restaurant-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .menu-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  }
}

@media (max-width: 720px) {
  .restaurant-hero-overlay {
    padding: clamp(40px, 12vw, 80px) clamp(20px, 6vw, 40px);
  }

  .restaurant-gallery-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-intro-features {
    gap: clamp(10px, 2vw, 14px);
  }

  .restaurant-menu-wrap {
    padding: 0 clamp(20px, 6vw, 32px);
  }

  .restaurant-menu-header {
    margin-bottom: clamp(40px, 8vw, 64px);
  }

  .restaurant-menu-categories {
    gap: clamp(40px, 8vw, 64px);
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
  }

  .menu-item {
    grid-template-rows: 200px auto;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .menu-item-price {
    align-self: flex-start;
  }

  .menu-category--drinks .drinks-cards-gallery {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 28px);
  }
}

/* Pop-up Contact Style iOS */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  padding: 20px;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.contact-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-popup-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #F0EDE8;
  border-radius: 24px;
  padding: 32px 40px 40px;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 165, 114, 0.25);
}

.contact-popup.active .contact-popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.contact-popup-handle {
  display: none;
}

.contact-popup-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #121212;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.contact-popup-close:hover,
.contact-popup-close:focus {
  background: rgba(255, 255, 255, 1);
  color: #9F7F49;
  border-color: rgba(197, 165, 114, 0.4);
}

.contact-popup-content h2 {
  margin: 0 0 36px 0;
  font-size: 28px;
  font-weight: 600;
  color: #121212;
  text-align: center;
  letter-spacing: 0.5px;
}

.contact-popup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  border: 1px solid rgba(197, 165, 114, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(22px);
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 165, 114, 0.35);
  box-shadow: 0 4px 16px rgba(24, 24, 24, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 114, 0.16);
  border-radius: 12px;
  border: 1px solid rgba(197, 165, 114, 0.28);
}

.contact-details {
  flex: 1;
}

.contact-label {
  margin: 0 0 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8B8075;
  font-weight: 500;
}

.contact-value {
  margin: 0;
  font-size: 16px;
  color: #121212;
  line-height: 1.5;
}

.contact-details a.contact-value {
  color: #9F7F49;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a.contact-value:hover {
  color: #B89A68;
  text-decoration: underline;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(197, 165, 114, 0.22);
  box-shadow: 0 4px 20px rgba(24, 24, 24, 0.12);
  display: flex;
  align-items: stretch;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-popup {
    padding: 16px;
  }

  .contact-popup-content {
    max-height: 90vh;
    border-radius: 20px;
    padding: 20px 20px 32px;
    max-width: 100%;
  }

  .contact-popup-content h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .contact-popup-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-item {
    padding: 16px;
  }

  .contact-map {
    min-height: 250px;
    height: 250px;
  }
}

/* Admin Popup */
.admin-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  padding: 20px;
}

.admin-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.admin-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-popup-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #F0EDE8;
  border-radius: 24px;
  padding: 40px;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 165, 114, 0.25);
  color: #121212;
}

.admin-popup-content * {
  color: #121212;
}

.admin-popup.active .admin-popup-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.admin-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #121212;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.admin-popup-close:hover,
.admin-popup-close:focus {
  background: rgba(255, 255, 255, 1);
  color: #121212;
  border-color: rgba(197, 165, 114, 0.4);
}

.admin-popup-content h2 {
  margin: 0 0 28px 0;
  font-size: 24px;
  font-weight: 600;
  color: #121212 !important;
  text-align: center;
  letter-spacing: 0.5px;
}

.admin-password-form {
  display: grid;
  gap: 20px;
}

.admin-form-group {
  display: grid;
  gap: 8px;
}

.admin-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #121212 !important;
  letter-spacing: 0.5px;
}

.admin-form-group input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid rgba(197, 165, 114, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: #121212 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.admin-form-group input::placeholder {
  color: #121212;
  opacity: 0.5;
}

.admin-form-group input:focus {
  outline: none;
  border-color: rgba(197, 165, 114, 0.6);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.admin-error-message {
  margin: 0;
  font-size: 14px;
  color: #121212;
  min-height: 20px;
  display: none;
}

.admin-error-message.show {
  display: block;
}

.admin-submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #121212 !important;
  background: rgba(197, 165, 114, 0.9);
  border: 1px solid rgba(197, 165, 114, 0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.5px;
}

.admin-submit-btn:hover,
.admin-submit-btn:focus {
  background: rgba(197, 165, 114, 1);
  transform: translateY(-1px);
}

.admin-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 540px) {
  .admin-popup-content {
    padding: 32px 24px;
    max-width: 100%;
  }

  .warning-banner {
    padding: 10px clamp(12px, 3vw, 20px);
    font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.75rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .warning-banner .warning-logo {
    height: clamp(25px, 3vw, 40px);
    align-self: flex-end;
  }

  .warning-banner p {
    text-align: left;
  }

  .warning-banner .warning-title {
    font-size: clamp(0.65rem, 0.6rem + 0.25vw, 0.85rem);
    display: block;
    margin-bottom: 4px;
  }

  .warning-banner .warning-info {
    font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.75rem);
  }
}

/* Article Detail Page */
.article-detail-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(200px, 35vw, 320px);
  overflow: hidden;
  background: #060606;
  display: flex;
  align-items: center;
}

.article-detail-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-detail-hero:hover .article-detail-media {
  transform: scale(1.08);
}

.article-detail-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 4, 0.75) 0%,
    rgba(6, 6, 6, 0.65) 30%,
    rgba(8, 8, 8, 0.5) 60%,
    rgba(12, 12, 12, 0.3) 100%
  );
  z-index: 1;
}

.article-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 98vw);
  margin: 0 auto;
  padding: clamp(80px, 14vw, 120px) clamp(16px, 2vw, 32px);
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  color: #ffffff;
  width: 100%;
}

.article-detail-back {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.article-detail-back:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(-4px);
}

.article-detail-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(197, 165, 114, 0.25);
  color: #C5A572;
  letter-spacing: 0.15rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.article-detail-title {
  margin: 0;
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.article-detail-date {
  margin: 0;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Article Detail Main Content */
.article-detail-main-content {
  padding: clamp(80px, 12vw, 120px) 0;
  background: var(--background);
}

.article-detail-main-content .container {
  width: min(1400px, 98vw);
  padding: 0 clamp(8px, 1vw, 16px);
}

.article-detail-image-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 64px);
}

.article-detail-image-wrapper {
  width: 100%;
  max-width: min(1200px, 98vw);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-detail-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .article-detail-image-center {
    justify-content: center;
    padding: 0 clamp(10px, 4vw, 16px);
  }

  .article-detail-image-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 96vw;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  .article-detail-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
  }
}

.article-detail-content-center {
  max-width: min(1200px, 98vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 56px);
}

.article-detail-excerpt {
  font-size: clamp(1.25rem, 1.2rem + 0.4vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
  padding-bottom: clamp(24px, 4vw, 32px);
  border-bottom: 1px solid var(--border);
}

.article-detail-excerpt p {
  margin: 0 0 clamp(16px, 2.5vw, 20px);
}

.article-detail-excerpt p:last-child {
  margin-bottom: 0;
}

.article-detail-body {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-detail-body p {
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.85;
}

.article-detail-body p:last-child {
  margin-bottom: 0;
}

.article-detail-gallery {
  margin-top: clamp(32px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.article-detail-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.article-detail-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-detail-paragraph {
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--border);
}

.article-detail-paragraph:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-detail-paragraph-title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-size: clamp(1.6rem, 1.5rem + 0.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.article-detail-paragraph-text {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-detail-paragraph-text p {
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.85;
}

.article-detail-paragraph-text p:last-child {
  margin-bottom: 0;
}

.article-detail-field {
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--border);
}

.article-detail-field:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-detail-field-title {
  margin: 0 0 clamp(16px, 2.5vw, 24px);
  font-size: clamp(1.4rem, 1.3rem + 0.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
}

.article-detail-field-content {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-secondary);
}

.article-detail-inline-image {
  width: 100%;
  max-width: min(800px, 100%);
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  margin: clamp(16px, 3vw, 24px) 0;
  object-fit: cover;
}

.article-detail-field-content p {
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.85;
}

.article-detail-field-content p:last-child {
  margin-bottom: 0;
}

/* Autres articles disponibles */
.article-detail-other-articles {
  padding: clamp(64px, 10vw, 96px) 0;
  background: var(--background);
  margin-top: clamp(48px, 8vw, 64px);
}

.article-detail-other-articles-header {
  margin-bottom: clamp(48px, 8vw, 64px);
  text-align: center;
}

.article-detail-other-articles-title {
  margin: 0;
  font-size: clamp(2rem, 1.8rem + 1vw, 2.8rem);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-detail-other-articles-grid {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 165, 114, 0.3) transparent;
}

.article-detail-other-articles-grid::-webkit-scrollbar {
  height: 8px;
}

.article-detail-other-articles-grid::-webkit-scrollbar-track {
  background: transparent;
}

.article-detail-other-articles-grid::-webkit-scrollbar-thumb {
  background: rgba(197, 165, 114, 0.3);
  border-radius: 4px;
}

.article-detail-other-articles-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 165, 114, 0.5);
}

.article-detail-other-articles-grid .article-card {
  flex: 0 0 min(400px, 48vw);
  min-width: min(400px, 48vw);
  max-width: min(400px, 48vw);
}

@media (max-width: 900px) {
  .article-detail-other-articles-grid .article-card {
    flex: 0 0 min(320px, 75vw);
    min-width: min(320px, 75vw);
    max-width: min(320px, 75vw);
  }
}

@media (max-width: 540px) {
  .article-detail-other-articles-grid .article-card {
    flex: 0 0 min(280px, 85vw);
    min-width: min(280px, 85vw);
    max-width: min(280px, 85vw);
  }
}

.article-detail-placeholder {
  padding: clamp(80px, 12vw, 120px) clamp(24px, 6vw, 48px);
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
}

@media (max-width: 900px) {
  .article-detail-hero {
    min-height: clamp(180px, 40vw, 280px);
  }

  .article-detail-image-wrapper img {
    max-height: clamp(250px, 50vw, 400px);
  }
}

@media (max-width: 720px) {
  .article-detail-hero {
    min-height: clamp(160px, 45vw, 240px);
  }

  .article-detail-hero-content {
    padding: clamp(60px, 12vw, 80px) clamp(20px, 6vw, 32px);
    gap: clamp(12px, 2vw, 20px);
  }

  .article-detail-main-content {
    padding: clamp(48px, 8vw, 64px) 0;
  }

  .article-detail-image-wrapper img {
    max-height: clamp(200px, 45vw, 320px);
  }
}

/* Admin Page Styles -------------------------------------------------- */
.admin-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #1a1a1a 100%);
  padding: 80px 0;
  color: #ffffff;
}

.admin-container {
  max-width: 1200px;
}

.admin-header {
  margin-bottom: 48px;
  text-align: center;
}

.admin-header h1 {
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  margin-bottom: 12px;
  color: #ffffff;
}

.admin-header p {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.admin-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-section-header h2 {
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  color: #ffffff;
  margin: 0;
}

.admin-btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-btn--primary {
  background: #C5A572;
  color: #121212;
}

.admin-btn--primary:hover {
  background: #B89A68;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 165, 114, 0.3);
}

.admin-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.admin-btn--danger {
  background: #dc3545;
  color: #ffffff;
}

.admin-btn--danger:hover {
  background: #c82333;
}

.admin-loading {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.admin-jackpots-list,
.admin-articles-list {
  display: grid;
  gap: 16px;
}

.admin-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.admin-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 165, 114, 0.3);
}

.admin-item-content {
  flex: 1;
  min-width: 0;
}

.admin-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.admin-item-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.admin-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.admin-item-actions .admin-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Modal Styles */
.admin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.admin-modal.active {
  display: flex;
}

.admin-modal-content {
  background: #1a1a1a;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-header h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
}

.admin-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.admin-modal-close:hover {
  color: #ffffff;
}

/* Form Styles */
.admin-form {
  padding: 24px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
  outline: none;
  border-color: #C5A572;
  background: rgba(255, 255, 255, 0.08);
}

.admin-form-group input::placeholder,
.admin-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.admin-form-group small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -4px;
}

.admin-form-group--full {
  grid-column: 1 / -1;
}

.admin-form-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-form-section:last-of-type {
  border-bottom: none;
}

.admin-form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(197, 165, 114, 0.3);
}

.admin-form-help {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.admin-file-input {
  padding: 8px;
  cursor: pointer;
}

.admin-file-input::-webkit-file-upload-button {
  padding: 8px 16px;
  background: rgba(197, 165, 114, 0.2);
  border: 1px solid rgba(197, 165, 114, 0.4);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  margin-right: 12px;
}

.admin-file-input::-webkit-file-upload-button:hover {
  background: rgba(197, 165, 114, 0.3);
}

.admin-image-preview {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-image-preview img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.admin-remove-image {
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.admin-remove-image:hover {
  background: rgba(220, 53, 69, 0.3);
}

.required {
  color: #ff6b6b;
  margin-left: 4px;
}

.admin-form-group input[type="file"] {
  color: rgba(255, 255, 255, 0.8);
}

.admin-form-group input[type="file"]::file-selector-button {
  padding: 8px 16px;
  background: rgba(197, 165, 114, 0.2);
  border: 1px solid rgba(197, 165, 114, 0.4);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.admin-form-group input[type="file"]::file-selector-button:hover {
  background: rgba(197, 165, 114, 0.3);
}

.btn-loading {
  display: none;
}

.admin-alert {
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  animation: slideIn 0.3s ease;
}

.admin-alert--success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

.admin-alert--error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #ffffff;
}

.admin-alert--info {
  background: rgba(23, 162, 184, 0.2);
  border: 1px solid rgba(23, 162, 184, 0.4);
  color: #ffffff;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Assurer que tous les textes dans les modals admin sont blancs */
.admin-modal * {
  color: #ffffff !important;
}

/* Forcer le texte blanc pour tous les éléments de texte */
.admin-modal h1,
.admin-modal h2,
.admin-modal h3,
.admin-modal h4,
.admin-modal h5,
.admin-modal h6,
.admin-modal p,
.admin-modal span,
.admin-modal div,
.admin-modal label,
.admin-modal small {
  color: #ffffff !important;
}

/* Forcer le texte blanc pour tous les inputs, selects et textareas */
.admin-modal input,
.admin-modal select,
.admin-modal textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.admin-modal input[type="text"],
.admin-modal input[type="number"],
.admin-modal input[type="time"],
.admin-modal input[type="url"],
.admin-modal input[type="email"],
.admin-modal input[type="tel"] {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.admin-modal select {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.admin-modal select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

.admin-modal textarea {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.admin-modal input[type="checkbox"] + label,
.admin-modal input[type="checkbox"] ~ label {
  color: #ffffff !important;
}

/* Forcer le texte blanc pour tous les boutons dans les modals */
.admin-modal .admin-btn,
.admin-modal .admin-btn--primary,
.admin-modal .admin-btn--secondary,
.admin-modal .admin-btn--danger {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Surcharger spécifiquement le bouton primaire qui a du texte noir par défaut */
.admin-modal .admin-btn--primary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Empty State */
.admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.admin-empty p {
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .admin-page {
    padding: 40px 0;
  }

  .admin-section {
    padding: 20px;
  }

  .admin-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-item-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .admin-form-row {
    grid-template-columns: 1fr;
  }

  .admin-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
}

/* Services slider mobile tweaks */
@media (max-width: 900px) {
  .services-slider {
    width: 100%;
    margin-left: 0;
    padding: 0 clamp(14px, 6vw, 20px);
  }

  .service-item {
    min-height: clamp(320px, 78vw, 520px);
  }

  .service-content {
    padding: clamp(28px, 10vw, 44px);
    max-width: none;
    margin: clamp(12px, 4vw, 20px) auto;
    gap: clamp(10px, 3vw, 16px);
    text-align: center;
  }
}

@media (max-width: 720px) {
  .services-slider {
    width: 100%;
    margin-left: 0;
    padding: 0 clamp(12px, 6vw, 18px);
  }

  .services-track {
    border-radius: 24px;
    min-height: clamp(320px, 95vw, 560px);
  }

  .service-item {
    min-height: clamp(320px, 95vw, 560px);
  }

  .service-content {
    padding: clamp(24px, 12vw, 36px);
    margin: clamp(12px, 6vw, 20px) auto;
    max-width: none;
    text-align: center;
  }
}

