:root {
  --bg-main: #07080d;
  --bg-card: rgba(17, 20, 32, 0.82);
  --bg-card-solid: #111420;
  --bg-soft: #151929;
  --primary: #ffc107;
  --primary-dark: #d99b00;
  --cyan: #00e5ff;
  --green: #29d17d;
  --red: #ff4c5b;
  --orange: #ff9d2e;
  --text-main: #ffffff;
  --text-muted: #aeb4c4;
  --border-soft: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.45);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.reservation-home {
  margin: 0;
  padding-top: var(--header-height);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 229, 255, 0.12), transparent 36%),
    var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

body.reservation-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  z-index: 1;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-padding {
  padding: 90px 6%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading h2,
.hero-content h1 {
  margin: 14px 0;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.hero-content p,
.dev-content p,
.info-item p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 10000;
  background: rgba(7, 8, 13, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.header-content {
  height: var(--header-height);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-container {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.28);
  overflow: hidden;
}

.logo-container img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 1rem;
}

.logo-text span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav {
  position: absolute;
  right: 6%;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav.hidden {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-list a,
.user-dropdown-toggle {
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav-list a:hover,
.user-dropdown-toggle:hover {
  color: #fff;
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  color: #111 !important;
  background: linear-gradient(135deg, var(--primary), #ff8a00) !important;
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.24);
}

#nav-login.hidden,
#nav-profile.hidden {
  display: none !important;
}

.dropdown {
  position: relative;
}

.user-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-profile-photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  display: none;
  list-style: none;
  padding: 10px;
  margin: 0;
  background: rgba(12, 14, 22, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.dropdown-menu.visible {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a,
.dropdown-menu button {
  width: 100%;
  display: block;
  text-align: left;
  border: none;
  border-radius: 12px;
  padding: 11px 12px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 999px;
  transition: 0.25s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 80px 6%;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,13,0.94) 0%, rgba(7,8,13,0.75) 44%, rgba(7,8,13,0.3) 100%),
    radial-gradient(circle at 25% 35%, rgba(255,193,7,0.22), transparent 34%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 650px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  color: #121212;
  background: linear-gradient(135deg, var(--primary), #ff8a00);
  box-shadow: 0 16px 36px rgba(255, 193, 7, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(255, 193, 7, 0.32);
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.full-btn {
  width: 100%;
  margin-top: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 14px;
  max-width: 560px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* DEV SECTION */
.dev-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 193, 7, 0.11), transparent 38%),
    transparent;
}

.dev-card {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr 310px;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(21,25,41,0.94), rgba(12,14,23,0.94));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.dev-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-size: 2.4rem;
  background: rgba(255, 193, 7, 0.13);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.dev-content h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.dev-progress {
  margin-top: 22px;
}

.dev-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.dev-progress-top strong {
  color: var(--primary);
}

.dev-progress-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.dev-progress-bar span {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.dev-list {
  display: grid;
  gap: 10px;
}

.dev-list span {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
}

/* RESERVATION PREVIEW */
.reservation-preview {
  background: rgba(255, 255, 255, 0.015);
}

.reservation-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  max-width: 1180px;
  margin: auto;
}

.availability-card,
.slots-card,
.info-item,
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.availability-card,
.slots-card {
  border-radius: 30px;
  padding: 28px;
}

.availability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.availability-header h3,
.slots-card h3 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

#availability-number {
  font-size: 1.8rem;
  color: var(--primary);
}

#disponibilite-barre {
  background-color: rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  margin: 1rem 0;
}

#barre-remplie {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--primary), var(--red));
  border-radius: inherit;
  transition: width 0.45s ease-in-out;
}

.legend-stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legend-stations .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-stations .box {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  display: inline-block;
}

.legend-stations .box.available {
  background-color: var(--green);
}

.legend-stations .box.partial {
  background-color: var(--orange);
}

.legend-stations .box.occupied {
  background-color: var(--red);
}

#stations-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 1rem;
}

.station {
  min-height: 98px;
  padding: 1rem;
  border-radius: 20px;
  text-align: left;
  font-weight: bold;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--border-soft);
}

.station span {
  font-size: 1rem;
}

.station small {
  color: rgba(255,255,255,0.74);
}

.station.available {
  background: linear-gradient(145deg, rgba(41, 209, 125, 0.26), rgba(41, 209, 125, 0.08));
}

.station.partial {
  background: linear-gradient(145deg, rgba(255, 157, 46, 0.28), rgba(255, 157, 46, 0.08));
}

.station.occupied {
  background: linear-gradient(145deg, rgba(255, 76, 91, 0.28), rgba(255, 76, 91, 0.08));
}

#tableau-creneaux {
  width: 100%;
  margin-top: 1.2rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
}

#tableau-creneaux th,
#tableau-creneaux td {
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 12px;
  text-align: center;
}

#tableau-creneaux th {
  background: rgba(255, 255, 255, 0.07);
  color: var(--primary);
}

.slot-open {
  color: var(--green);
  font-weight: 800;
}

.slot-medium {
  color: var(--orange);
  font-weight: 800;
}

.slot-full {
  color: var(--red);
  font-weight: 800;
}

/* GAMES */
.games-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 28px;
  transform: translateY(18px);
  opacity: 0;
  transition: 0.55s ease;
}

.game-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: 0.4s ease;
}

.game-card:hover img {
  transform: scale(1.08);
}

.game-card-content {
  padding: 16px;
}

.game-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.game-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.game-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-soft);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

/* INFOS */
.info-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.info-item {
  padding: 28px;
  border-radius: 28px;
  transition: 0.3s ease;
}

.info-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.32);
}

.info-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 193, 7, 0.12);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.info-item h3 {
  margin: 0 0 10px;
}

/* FOOTER */
.site-footer {
  padding: 45px 6%;
  border-top: 1px solid var(--border-soft);
  background: #05060a;
  color: var(--text-muted);
  text-align: center;
}

.site-footer h3 {
  color: var(--primary);
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.footer-links span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
}

.copyright {
  font-size: 0.9rem;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .header-content {
    height: var(--header-height);
  }

  .burger {
    display: block;
  }

  .nav,
  .nav.hidden {
    display: none;
  }

  .nav.active {
    display: block;
    top: calc(var(--header-height) + 10px);
    right: 4%;
    left: 4%;
    height: auto;
    padding: 16px;
    border-radius: 24px;
    background: rgba(9, 11, 18, 0.97);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-list a,
  .user-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 14px;
  }

  .dropdown-menu {
    position: static;
    margin-top: 8px;
    min-width: 100%;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding: 90px 6%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .dev-card {
    grid-template-columns: 1fr;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body.reservation-home {
    padding-top: 72px;
  }

  .logo-text span {
    display: none;
  }

  .section-padding {
    padding: 70px 5%;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .availability-header {
    align-items: flex-start;
    flex-direction: column;
  }

  #stations-view {
    grid-template-columns: 1fr;
  }

  .legend-stations {
    flex-direction: column;
    align-items: flex-start;
  }

  #tableau-creneaux {
    font-size: 0.82rem;
  }

  #tableau-creneaux th,
  #tableau-creneaux td {
    padding: 11px 8px;
  }
}
/* =========================================================
   PATCH RESPONSIVE HERO / NAV - SALLE DE JEU
   Ajout non destructif : à placer en fin de reservation_new.css
   Objectif : garder les cartes 7 écrans / 14 places / 9h-21h visibles
   sur laptops 13-16", tablettes, mobiles et grands écrans.
   ========================================================= */

html,
body.reservation-home {
  width: 100%;
  max-width: 100%;
}

body.reservation-home {
  overflow-x: clip;
}

.site-header {
  z-index: 10000;
}

.burger {
  position: relative;
  z-index: 10002;
}

.nav.active {
  z-index: 10001;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  height: auto;
  padding-block: clamp(46px, 5.4vh, 76px);
  align-items: center;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.45vw, 5.35rem);
  line-height: 1.02;
}

.hero-content p {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

.hero-actions {
  margin: clamp(20px, 3vh, 30px) 0;
}

.hero-stats {
  gap: clamp(10px, 1.2vw, 14px);
}

.hero-stats div {
  min-height: 84px;
  padding: clamp(14px, 1.45vw, 18px);
}

/* Laptops 13", 14", 15", 16" : évite que les stats sortent du premier écran */
@media (min-width: 981px) and (max-height: 860px) {
  :root {
    --header-height: 76px;
  }

  body.reservation-home {
    padding-top: var(--header-height);
  }

  .header-content {
    height: var(--header-height);
  }

  .logo-container {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .logo-container img {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 0.94rem;
  }

  .logo-text span {
    font-size: 0.74rem;
  }

  .nav {
    height: var(--header-height);
  }

  .nav-list {
    gap: 8px;
  }

  .nav-list a,
  .user-dropdown-toggle {
    padding: 9px 11px;
    font-size: 0.94rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-block: clamp(34px, 4.4vh, 48px);
  }

  .hero-content h1 {
    margin: 10px 0;
    font-size: clamp(2.75rem, 4.75vw, 4.65rem);
    line-height: 1.01;
  }

  .hero-content p {
    max-width: 610px;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions {
    margin: 20px 0;
  }

  .btn {
    min-height: 44px;
    padding-inline: 20px;
  }

  .hero-stats {
    max-width: 520px;
    gap: 12px;
  }

  .hero-stats div {
    min-height: 76px;
    padding: 13px 16px;
    border-radius: 18px;
  }

  .hero-stats strong {
    font-size: 1.16rem;
  }

  .hero-stats span {
    font-size: 0.84rem;
  }
}

/* Desktop serré / tablette paysage : empêche le menu de se compresser sur le logo */
@media (min-width: 981px) and (max-width: 1240px) {
  .header-content {
    padding-inline: 4%;
  }

  .nav {
    right: 4%;
  }

  .nav-list {
    gap: 5px;
  }

  .nav-list a,
  .user-dropdown-toggle {
    padding-inline: 9px;
    font-size: 0.92rem;
  }

  .logo-text strong {
    font-size: 0.93rem;
  }
}

/* Tablettes : garder les trois cartes visibles sur une ligne quand l'espace le permet */
@media (min-width: 621px) and (max-width: 980px) {
  .hero {
    padding-block: 64px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 7vw, 4.4rem);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-stats div {
    min-height: 82px;
  }
}

/* Mobiles : pas de rognage, boutons et stats lisibles */
@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  body.reservation-home {
    padding-top: var(--header-height);
  }

  .header-content {
    height: var(--header-height);
    padding-inline: 5%;
  }

  .logo-container {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .logo-container img {
    width: 36px;
    height: 36px;
  }

  .logo-text strong {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 48px 5% 56px;
  }

  .hero-content h1 {
    margin: 10px 0 14px;
    font-size: clamp(2.15rem, 10.8vw, 2.8rem);
    letter-spacing: -0.045em;
  }

  .hero-content p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    margin: 22px 0;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    min-height: 72px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .section-padding {
    padding: 64px 5%;
  }

  .dev-card,
  .availability-card,
  .slots-card,
  .info-item {
    border-radius: 24px;
    padding: 20px;
  }
}

/* Grands écrans 22", 24", 32" : meilleure respiration sans agrandir excessivement le hero */
@media (min-width: 1800px) {
  .hero {
    padding-inline: 7%;
    padding-block: 82px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-content h1 {
    font-size: clamp(5rem, 4.6vw, 7rem);
  }

  .hero-content p {
    max-width: 760px;
    font-size: 1.16rem;
  }

  .hero-stats {
    max-width: 680px;
  }

  .hero-stats div {
    min-height: 102px;
    padding: 24px;
  }

  .hero-stats strong {
    font-size: 1.45rem;
  }

  .reservation-layout,
  .games-grid,
  .info-grid {
    max-width: 1400px;
  }

  .dev-card {
    max-width: 1340px;
  }
}
