:root {
  --bg: #06132b;
  --bg-soft: #0d1e3d;
  --accent: #00c2ff;
  --text: #e9f1ff;
  --text-soft: #c1d3f5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: var(--text);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-shell {
  width: 100%;
  padding: 0 30px;
}

.site-header {
  z-index: 10;
  background: #fff;
}

.utility-row {
  border-bottom: 1px solid #ececec;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mini-logo {
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sites-lq-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #000;
  font: inherit;
  line-height: 1;
}

.sites-lq-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000;
}

.sites-lq-chevron {
  font-size: 1rem;
  line-height: 1;
  color: #000;
  transform: translateY(-2px);
}

.play-online-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0 20px;
  color: #000;
  font-size: 0.8rem;
  text-decoration: none;
}

.utility-right {
  color: #000;
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.utility-right .divider {
  color: #7d7d7d;
}

.header-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

.brand {
  color: #000;
  text-decoration: none;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 45px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

.main-nav-item {
  position: relative;
}

.main-nav-item.has-dropdown {
  position: static;
}

.main-nav a {
  color: #111;
  text-decoration: none;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #000;
}

.main-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.utility-links a {
  color: #111;
  text-decoration: none;
  font-size: 0.82rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.utility-diamond {
  font-size: 0.86rem;
  color: #16c8cd;
  transform: translateY(-1px);
}

.menu-chevron {
  font-size: 0.58rem;
  transform: translateY(-1px);
}

.header-rainbow-line {
  height: 2px;
  background: linear-gradient(90deg, #ee2d75 0%, #e53a94 20%, #9934b5 44%, #3f55da 68%, #17a5d8 100%);
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #111;
  margin: 5px 0;
}

.mobile-nav-panel {
  display: none;
}

.destination-carousel-section {
  margin-top: 0;
  background: #000;
  padding: 1.55rem 0 0.8rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.destination-title {
  margin: 0;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #fff;
  line-height: 1;
}

.destination-underline {
  width: 64px;
  height: 3px;
  background: #9b9b9b;
  margin: 0.7rem auto 1.15rem;
}

.destination-carousel {
  overflow: hidden;
}

.destination-track {
  display: flex;
  transition: transform 0.55s ease;
}

.destination-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0 2.4rem;
}

.destination-card {
  min-width: 0;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.destination-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.destination-card h3 {
  margin: 0.9rem 0 0.5rem;
  color: #fff;
  font-size: 1.95rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 1.03;
}

.destination-card p {
  margin: 0;
  color: #efefef;
  font-size: 1.26rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}

.destination-card img,
.restaurant-card img,
.bars-card img,
.home-media-card img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.destination-card:hover img,
.restaurant-card:hover img,
.bars-card:hover img,
.home-media-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.destination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.25rem 0 0.3rem;
}

.destination-arrow {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.destination-dots {
  display: flex;
  gap: 0.5rem;
}

.destination-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.destination-dot.is-active {
  background: #fff;
}

.restaurant-carousel-section {
  margin-top: 2rem;
  background: #000;
  padding: 1.55rem 0 0.8rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.restaurant-title {
  margin: 0;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #fff;
  line-height: 1;
}

.restaurant-underline {
  width: 64px;
  height: 3px;
  background: #9b9b9b;
  margin: 0.7rem auto 1.15rem;
}

.restaurant-carousel {
  overflow: hidden;
}

.restaurant-track {
  display: flex;
  transition: transform 0.55s ease;
}

.restaurant-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0 2.4rem;
}

.restaurant-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.restaurant-card {
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.restaurant-card h3 {
  margin: 0.72rem 0 0.45rem;
  color: #fff;
  font-size: 1.65rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 1.03;
}

.restaurant-card p {
  margin: 0;
  color: #efefef;
  font-size: 1.13rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.restaurant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}

.restaurant-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.05rem 0 0.3rem;
}

.restaurant-arrow {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.restaurant-dots {
  display: flex;
  gap: 0.5rem;
}

.restaurant-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.restaurant-dot.is-active {
  background: #fff;
}

.bars-carousel-section {
  margin-top: 2rem;
  background: #000;
  padding: 1.55rem 0 0.8rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.bars-title {
  margin: 0;
  text-align: center;
  font-size: 3.2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #fff;
  line-height: 1;
}

.bars-underline {
  width: 64px;
  height: 3px;
  background: #9b9b9b;
  margin: 0.7rem auto 1.15rem;
}

.bars-carousel {
  overflow: hidden;
}

.bars-track {
  display: flex;
  transition: transform 0.55s ease;
}

.bars-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0 2.4rem;
}

.bars-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.bars-card {
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.bars-card h3 {
  margin: 0.72rem 0 0.45rem;
  color: #fff;
  font-size: 1.65rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 1.03;
}

.bars-card p {
  margin: 0;
  color: #efefef;
  font-size: 1.13rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.bars-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}

.bars-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.05rem 0 0.3rem;
}

.bars-arrow {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.bars-dots {
  display: flex;
  gap: 0.5rem;
}

.bars-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.bars-dot.is-active {
  background: #fff;
}

.mega-menu {
  display: none;
  position: absolute;
  left: 30px;
  right: 30px;
  top: calc(100% + 1px);
  transform: none;
  width: auto;
  max-width: none;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  border: 1px solid #ececec;
  z-index: 30;
}

.has-dropdown:hover .mega-menu {
  display: block;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  padding: 1.15rem 1.2rem;
}

.mega-destination-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-destination-list li + li {
  margin-top: 0.6rem;
}

.mega-destination-list a {
  color: #111;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.mega-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mega-cards article img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.mega-cards article span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  color: #666;
}

.mega-cards article h4 {
  margin: 0.16rem 0 0;
  font-size: 1.45rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 1.08;
  color: #000;
}

.hero {
  padding: 4.4rem 0 2.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.cta-row {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
}

.btn-primary { background: var(--accent); color: #002030; }
.btn-secondary { background: rgba(193, 211, 245, 0.15); color: #fff; }

.section-title {
  margin: 0 0 1rem;
  font-size: 1.7rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 3rem;
}

.card {
  background: var(--bg-soft);
  border: 1px solid rgba(193, 211, 245, 0.2);
  border-radius: 14px;
  padding: 1.1rem;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 3rem;
}

.logos-row img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  padding: 0.7rem;
  background: #fff;
  border-radius: 10px;
}

.text-section {
  margin: 2rem 0 3rem;
  background: var(--bg-soft);
  border: 1px solid rgba(193, 211, 245, 0.2);
  border-radius: 14px;
  padding: 1.2rem;
}

.text-section p {
  color: var(--text-soft);
  line-height: 1.6;
}

.site-footer {
  margin-top: 0;
  background: #fff;
}

.footer-top-black {
  display: none;
}

.footer-white {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1rem 0 0.9rem;
  color: #0c0c0c;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 1.1rem;
}

.footer-social {
  width: 30px;
  height: 30px;
  border: 2px solid #111;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.footer-links-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(560px, 100%);
  margin: 0 auto;
}

.footer-col {
  padding: 0 18px;
}

.footer-col + .footer-col {
  border-left: 1px solid #cfcfcf;
}

.footer-col h4 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 0.81rem;
  color: #111;
  text-decoration: none;
}

.footer-cert-row {
  margin: 1rem auto 0.65rem;
  width: min(430px, 100%);
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.footer-cert-row img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-legal-copy {
  text-align: center;
}

.footer-legal-copy p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #161616;
}

.footer-legal-copy p + p { margin-top: 0.1rem; }

.auth-open-btn {
  border: 1px solid #111;
  background: #fff;
  color: #111;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.auth-modal.is-open {
  display: block;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.auth-modal-dialog {
  position: relative;
  width: min(460px, calc(100% - 2rem));
  margin: 6vh auto 0;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
}

.auth-modal-close {
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 6px;
}

.auth-modal h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.auth-tabs.is-hidden {
  display: none;
}

.auth-tab {
  border: 1px solid #d4d4d4;
  background: #f8f8f8;
  height: 38px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.auth-tab.is-active {
  background: #081a4a;
  color: #fff;
  border-color: #081a4a;
}

.auth-panel {
  display: none;
}

.auth-panel.is-active {
  display: block;
}

.auth-panel label {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.7rem;
}

.auth-panel input {
  margin-top: 0.3rem;
  width: 100%;
  height: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0 0.7rem;
  font-size: 0.9rem;
}

.auth-submit {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #081a4a;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.3rem;
}

.auth-otp-note {
  margin: 0 0 0.6rem;
  font-size: 0.83rem;
}

.auth-otp-actions {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.auth-resend {
  border: 1px solid #d8d8d8;
  background: #fff;
  border-radius: 999px;
  height: 34px;
  padding: 0 0.8rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.auth-resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.auth-resend-status {
  font-size: 0.76rem;
  color: #293b70;
}

.auth-back-link {
  margin-top: 0.7rem;
  border: 0;
  background: transparent;
  color: #1f3f9f;
  text-decoration: underline;
  font-size: 0.8rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.groupes-page {
  background: #fff;
  color: #111;
}

.groupes-hero,
.groupes-bottom-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.groupes-hero img,
.groupes-bottom-banner img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.groupes-hero-overlay {
  position: absolute;
  left: 40px;
  bottom: 38px;
  width: 420px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  padding: 22px;
}

.groupes-hero-overlay h1 {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  line-height: 1.05;
}

.groupes-hero-overlay p {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  line-height: 1.35;
}

.groupes-hero-overlay a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.groupes-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
}

.groupes-wrap h2,
.groupes-icons-section h2 {
  margin: 0 0 1.2rem;
  text-align: center;
  font-size: 2rem;
}

.groupes-events-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.groupes-events-track {
  display: flex;
  transition: transform 0.55s ease;
}

.groupes-events-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

.groupes-events-page img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 12px;
}

.groupes-events-page h3 {
  margin: 0.6rem 0 0.2rem;
  font-size: 2rem;
  line-height: 1.02;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-events-page p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-events-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.9rem;
}

.groupes-events-arrow {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 2.2rem;
  cursor: pointer;
}

.groupes-events-dots {
  display: flex;
  gap: 0.45rem;
}

.groupes-events-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #111;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.groupes-events-dot.is-active {
  background: #111;
}

.groupes-icons-section {
  background: #f2f2f2;
  padding: 3rem 1rem 2.7rem;
}

.groupes-icons-section h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  line-height: 0.95;
}

.groupes-icons-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.groupes-icons-grid article {
  text-align: center;
  color: #111;
}

.groupes-icon {
  width: 58px;
  height: 58px;
  color: #171717;
  margin-bottom: 0.9rem;
}

.groupes-icons-grid h3 {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.05;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-icons-grid p {
  margin: 0;
  text-align: center;
  font-size: 1.22rem;
  line-height: 1.25;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-destination-carousel {
  width: 100%;
}

.groupes-destination-list {
  display: grid;
  gap: 1.6rem;
}

.groupes-destination-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.groupes-destination-row.reverse {
  grid-template-columns: 1fr 2fr;
}

.groupes-destination-media-slider {
  position: relative;
  overflow: hidden;
}

.gd-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gd-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.groupes-destination-copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 4.2rem;
  line-height: 1;
  cursor: pointer;
}

.gd-arrow.left { left: 14px; }
.gd-arrow.right { right: 14px; }

.gd-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.gd-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.gd-dot.is-active {
  background: #fff;
}

.groupes-destination-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 3.2rem;
  line-height: 0.95;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-destination-copy h4 {
  margin: 0 0 0.55rem;
  font-size: 1.55rem;
  line-height: 1.1;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

.groupes-destination-copy p {
  margin: 0 0 1.2rem;
  font-size: 1.28rem;
  line-height: 1.25;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.groupes-destination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 700;
}

.groupes-bottom-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 14px 22px;
  width: min(760px, calc(100% - 2rem));
}

.cp-main {
  max-width: 100%;
  background: #121212;
  color: #fff;
  padding: 0;
}

.cp-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(320px, 42vw, 560px);
  overflow: hidden;
}

.cp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-hero-overlay {
  position: absolute;
  left: clamp(16px, 7vw, 110px);
  bottom: clamp(20px, 8vw, 90px);
  background: rgba(0, 0, 0, 0.74);
  padding: 16px 24px;
  max-width: 470px;
}

.cp-hero-overlay img {
  width: min(320px, 65vw);
  height: auto;
  margin-bottom: 8px;
}

.cp-hero-overlay p {
  margin: 0;
  color: #f1f1f1;
  font-weight: 600;
}

.cp-quick-carousel {
  width: 100vw;
  margin: 18px 0 26px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(10px, 2.4vw, 34px);
  position: relative;
  overflow: hidden;
}

.cp-quick-track {
  display: flex;
  transition: transform 0.45s ease;
}

.cp-quick-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cp-quick-card {
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.cp-quick-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.cp-quick-card span {
  display: block;
  margin: 10px 12px 4px;
  color: #b8b8b8;
  font-size: 0.9rem;
}

.cp-quick-card h3 {
  margin: 0 12px 6px;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.cp-quick-card p {
  margin: 0 12px;
  color: #ddd;
  font-size: 0.93rem;
  line-height: 1.4;
}

.cp-quick-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.cp-quick-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cp-quick-dots {
  display: flex;
  gap: 8px;
}

.cp-quick-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #6d6d6d;
  cursor: pointer;
  padding: 0;
}

.cp-quick-dot.is-active {
  background: #fff;
}

.cp-welcome {
  position: relative;
  width: 100vw;
  margin: 0 0 30px;
  margin-left: calc(50% - 50vw);
  min-height: 300px;
  display: grid;
  grid-template-columns: 56% 44%;
  background: #000;
}

.cp-welcome img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.cp-welcome-overlay {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px clamp(18px, 4vw, 48px);
}

.cp-welcome-overlay h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 3rem);
  line-height: 1.08;
  max-width: 520px;
}

.cp-welcome-overlay h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: #19b5d8;
  margin: 12px auto 0;
}

.cp-welcome-overlay p {
  margin: 0 0 16px;
  color: #e4e4e4;
  line-height: 1.5;
  max-width: 560px;
}

.cp-btn {
  align-self: flex-start;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 9px 18px;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}

.cp-btn:hover {
  background: #111;
  color: #fff;
}

.cp-section {
  width: 100vw;
  margin: 0 0 28px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(10px, 2.4vw, 34px);
}

.cp-section-head {
  border-top: 4px solid #21b7db;
  padding-top: 10px;
  margin-bottom: 14px;
}

.cp-section-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.cp-offers-grid {
  display: grid;
  gap: 14px;
}

.cp-offer {
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 158px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1b1b1b;
}

.cp-offer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-offer-copy {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-offer-copy h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.cp-offer-copy p {
  margin: 0 0 12px;
  color: #ededed;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cp-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  align-self: flex-start;
  padding: 7px 12px;
}

.cp-gold .cp-offer-copy {
  background: linear-gradient(90deg, #9f6713, #cd9526);
}

.cp-pink .cp-offer-copy {
  background: linear-gradient(90deg, #ba0076, #e10089);
}

.cp-blue .cp-offer-copy {
  background: linear-gradient(90deg, #0f7d95, #20a8c6);
}

.cp-purple .cp-offer-copy {
  background: linear-gradient(90deg, #6330a5, #7f3fbf);
}

.cp-status {
  width: 100vw;
  margin: 18px 0 32px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(10px, 2.4vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cp-status article {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 14px 12px;
}

.cp-status img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #101010;
}

.cp-status h3 {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.cp-join {
  width: 100vw;
  margin: 0 0 38px;
  margin-left: calc(50% - 50vw);
  background: #222;
  padding: clamp(22px, 3.5vw, 40px) 0;
}

.cp-join-inner {
  width: min(1380px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(360px, 60%);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(20px, 3.2vw, 44px);
}

.cp-join-inner img {
  width: 100%;
  height: auto;
  max-width: 460px;
  justify-self: center;
}

.cp-join-content {
  color: #fff;
}

.cp-join h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.cp-join h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: #18b4d8;
  margin-top: 12px;
}

.cp-join p {
  margin: 0 0 12px;
  color: #d7d7d7;
  line-height: 1.38;
  font-size: 1.03rem;
  max-width: 680px;
}

.cp-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin: 10px 0 20px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  padding: 13px 26px;
  border-radius: 999px;
}

.cp-join-btn:hover {
  background: #fff;
  color: #000;
}

.cp-join-note {
  margin: 0;
  color: #9b9b9b;
  font-size: 0.82rem;
  line-height: 1.34;
  max-width: 690px;
}

@media (max-width: 980px) {
  .cp-welcome {
    grid-template-columns: 1fr;
  }

  .cp-welcome img {
    min-height: 240px;
  }

  .cp-welcome-overlay {
    padding: 24px 18px 28px;
  }

  .cp-quick-page {
    grid-template-columns: 1fr;
  }

  .cp-offer {
    grid-template-columns: 1fr;
  }

  .cp-offer img {
    height: 200px;
  }

  .cp-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cp-join-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cp-join-inner img {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cp-status {
    grid-template-columns: 1fr;
  }
}

.groupes-bottom-overlay h2 {
  margin: 0;
  font-size: 2rem;
}

.cadeau-page {
  max-width: 100%;
  padding: 0;
  background: #fff;
  color: #131313;
}

.gagnants-page {
  max-width: 100%;
  padding: 0;
  background: #efefef;
  color: #111;
}

.apropos-page {
  max-width: 100%;
  padding: 0;
  background: #f5f5f5;
  color: #111;
  overflow-x: hidden;
}

.apropos-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(140px, 18vw, 240px);
  max-height: 240px;
  position: relative;
  overflow: hidden;
}

.apropos-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(140px, 18vw, 240px);
  max-height: 240px;
  object-fit: cover;
  object-position: center 44%;
}

.apropos-hero-overlay {
  position: absolute;
  left: clamp(10px, 2.4vw, 22px);
  bottom: clamp(8px, 2vw, 18px);
  background: rgba(0, 0, 0, 0.92);
  padding: 10px 14px;
  max-width: 250px;
  color: #fff;
}

.apropos-hero-overlay h1 {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.9rem);
  line-height: 1.1;
  font-weight: 500;
}

.apropos-hero-overlay h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 6px;
  background: #fff;
}

.apropos-anchor-nav {
  width: 100%;
  margin: 16px 0 20px;
  padding: 0 clamp(14px, 2.8vw, 42px) 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-bottom: 1px solid #d8d8d8;
}

.apropos-anchor-nav a {
  color: #111;
  text-decoration: none;
  font-size: 0.98rem;
}

.apropos-text-block {
  width: 100%;
  margin: 0 0 24px;
  padding: 0 clamp(14px, 2.8vw, 42px);
}

.apropos-text-block h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.apropos-text-block p {
  margin: 0 0 10px;
  line-height: 1.45;
  font-size: 1.02rem;
}

.apropos-text-block ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

.apropos-text-block li {
  margin-bottom: 6px;
  line-height: 1.42;
}

.apropos-inline-link {
  color: #1160a9;
  text-decoration: underline;
  font-weight: 700;
}

.apropos-history-list {
  width: 100%;
  margin: 8px 0 40px;
  padding: 0 clamp(14px, 2.8vw, 42px);
  display: grid;
  gap: 26px;
}

.apropos-history-row {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #dfdfdf;
}

.apropos-history-row.reverse .apropos-history-media {
  order: 2;
}

.apropos-history-row.reverse .apropos-history-copy {
  order: 1;
}

.apropos-history-media img {
  width: 100%;
  height: clamp(190px, 22vw, 290px);
  object-fit: cover;
}

.apropos-history-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.apropos-history-copy p {
  margin: 0 0 14px;
  line-height: 1.44;
}

.apropos-btn {
  display: inline-block;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 9px 16px;
  color: #111;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .apropos-anchor-nav {
    gap: 10px;
  }

  .apropos-history-row,
  .apropos-history-row.reverse {
    grid-template-columns: 1fr;
  }

  .apropos-history-row.reverse .apropos-history-media,
  .apropos-history-row.reverse .apropos-history-copy {
    order: initial;
  }

  .apropos-history-media img {
    height: 220px;
  }
}

.gagnants-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(320px, 42vw, 620px);
  background: #060a8f;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gagnants-hero-pattern span {
  position: absolute;
  display: block;
  border-radius: 999px;
  opacity: 0.95;
}

.gagnants-hero-pattern span:nth-child(1) {
  width: 520px;
  height: 86px;
  background: #1ca2eb;
  top: 20%;
  left: -110px;
  transform: rotate(-28deg);
}

.gagnants-hero-pattern span:nth-child(2) {
  width: 620px;
  height: 96px;
  background: #2b23c6;
  top: 40%;
  left: 9%;
  transform: rotate(-21deg);
}

.gagnants-hero-pattern span:nth-child(3) {
  width: 500px;
  height: 82px;
  background: #1ca2eb;
  bottom: 8%;
  left: 11%;
  transform: rotate(-28deg);
}

.gagnants-hero-pattern span:nth-child(4) {
  width: 520px;
  height: 86px;
  background: #2b23c6;
  top: 18%;
  right: -90px;
  transform: rotate(28deg);
}

.gagnants-hero-pattern span:nth-child(5) {
  width: 500px;
  height: 84px;
  background: #1ca2eb;
  bottom: 15%;
  right: -80px;
  transform: rotate(32deg);
}

.gagnants-hero-pattern span:nth-child(6) {
  width: 44px;
  height: 44px;
  background: #32a6ef;
  top: 44%;
  left: 47%;
  border-radius: 0;
  transform: rotate(15deg);
}

.gagnants-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.gagnants-hero-content h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.04;
}

.gagnants-hero-content h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: #fff;
  margin: 12px auto 0;
}

.gagnants-month-pill {
  width: 100vw;
  margin: 34px 0;
  margin-left: calc(50% - 50vw);
  background: #2922be;
  color: #fff;
  border-radius: 0;
  text-align: center;
  padding: 20px 26px 24px;
}

.gagnants-month-pill .month {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gagnants-month-pill h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
}

.gagnants-month-pill p {
  margin: 0;
  font-size: 1.1rem;
}

.gagnants-feature-grid {
  width: 100vw;
  margin: 0 0 28px;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(12px, 2.5vw, 42px);
  display: grid;
  gap: 36px;
}

.gagnants-feature {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 24px;
  align-items: center;
}

.gagnants-feature.reverse img {
  order: 2;
}

.gagnants-feature.reverse .gagnants-copy {
  order: 1;
}

.gagnants-feature img {
  width: 100%;
  height: clamp(260px, 26vw, 390px);
  object-fit: cover;
}

.gagnants-copy span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gagnants-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.02;
}

.gagnants-copy h3::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  background: #111;
  margin-top: 14px;
}

.gagnants-copy p {
  margin: 0 0 10px;
  line-height: 1.42;
  color: #202020;
}

.gagnants-btn {
  display: inline-block;
  margin-top: 8px;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 10px 34px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.gagnants-list-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #86b5e8;
  padding: 36px 0 44px;
}

.gagnants-list-section h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
}

.gagnants-cards-grid {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gagnants-card {
  background: #fff;
  padding: 0 0 12px;
}

.gagnants-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gagnants-card span {
  display: block;
  margin: 10px 12px 4px;
  color: #333;
  font-size: 0.86rem;
  font-weight: 700;
}

.gagnants-card h3 {
  margin: 0 12px 4px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.gagnants-card p {
  margin: 0 12px;
  color: #333;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .gagnants-feature,
  .gagnants-feature.reverse {
    grid-template-columns: 1fr;
  }

  .gagnants-feature.reverse img,
  .gagnants-feature.reverse .gagnants-copy {
    order: initial;
  }

  .gagnants-cards-grid {
    grid-template-columns: 1fr;
  }

}

.cadeau-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(360px, 44vw, 640px);
  overflow: hidden;
}

.cadeau-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 44vw, 640px);
  object-fit: cover;
}

.cadeau-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 7vw, 110px);
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}

.cadeau-hero-overlay h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cadeau-hero-overlay p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  max-width: 620px;
}

.cadeau-intro {
  width: min(1200px, calc(100% - 2rem));
  margin: 34px auto;
  padding: clamp(18px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr 160px;
  align-items: center;
  gap: 24px;
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.cadeau-intro-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.cadeau-intro-copy p {
  margin: 0 0 12px;
  line-height: 1.45;
  font-size: 1.03rem;
}

.cadeau-link {
  display: inline-block;
  color: #0f5ea8;
  text-decoration: underline;
  font-weight: 700;
}

.cadeau-intro-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.cadeau-locations {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 30px;
}

.cadeau-locations h2,
.cadeau-faq h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.cadeau-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cadeau-location-grid article {
  background: #101010;
  color: #fff;
  padding: 18px 16px;
  min-height: 146px;
}

.cadeau-location-grid h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cadeau-location-grid p {
  margin: 0;
  color: #d7d7d7;
  line-height: 1.4;
}

.cadeau-faq {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 40px;
}

.cadeau-faq-list {
  display: grid;
  gap: 12px;
}

.cadeau-faq-list article {
  border: 1px solid #dddddd;
  padding: 16px;
}

.cadeau-faq-list h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.cadeau-faq-list p {
  margin: 0;
  color: #333;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .cadeau-intro {
    grid-template-columns: 1fr;
  }

  .cadeau-intro-icon {
    justify-self: start;
  }

  .cadeau-location-grid {
    grid-template-columns: 1fr;
  }
}

.hotel-page {
  background: #fff;
  color: #111;
}

.hotel-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.hotel-hero img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.hotel-hero-overlay {
  position: absolute;
  left: 34px;
  bottom: 42px;
  transform: none;
  color: #fff;
  width: 460px;
  background: rgba(0, 0, 0, 0.72);
  padding: 24px 24px 24px 50px;
}

.hotel-hero-overlay h1 {
  margin: 0 0 0.5rem;
  font-size: 3.8rem;
  line-height: 0.95;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

.hotel-hero-overlay h3 {
  margin: 0.9rem 0 0.3rem;
  font-size: 1.72rem;
  line-height: 1.06;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

.hotel-hero-overlay p {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
  max-width: 360px;
}

.hotel-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.1rem 0;
}

.hotel-wrap h2 {
  margin: 0 0 1.2rem;
  text-align: center;
  font-size: 2rem;
}

.hotel-offer-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.hotel-offer-track {
  display: flex;
  transition: transform 0.55s ease;
}

.hotel-offer-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 0 2rem;
}

.hotel-mini-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.hotel-mini-card h3 {
  margin: 0.6rem 0 0.2rem;
  font-size: 2rem;
  line-height: 1.02;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.hotel-mini-card p {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.hotel-offer-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.hotel-offer-arrow {
  border: 0;
  background: transparent;
  font-size: 2.2rem;
  color: #111;
  cursor: pointer;
}

.hotel-offer-dots {
  display: flex;
  gap: 0.45rem;
}

.hotel-offer-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #111;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hotel-offer-dot.is-active {
  background: #111;
}

.hotel-feature {
  display: grid;
  gap: 2.1rem;
}

.hotel-feature-item {
  display: grid;
  grid-template-columns: 0.95fr 1.85fr;
  align-items: center;
  gap: 1.5rem;
}

.hotel-feature-item.reverse {
  grid-template-columns: 1.85fr 0.95fr;
}

.hotel-feature-media {
  position: relative;
}

.hotel-feature-item img {
  width: 100%;
  height: 410px;
  border-radius: 0;
  object-fit: cover;
}

.hotel-feature-copy h3 {
  margin: 0;
  font-size: 3.6rem;
  line-height: 0.95;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

.hotel-feature-line {
  width: 84px;
  height: 4px;
  background: #111;
  margin: 1rem 0 1rem;
}

.hotel-feature-copy p {
  margin: 0 0 1.1rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.hotel-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid #111;
  font-size: 1.15rem;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.hotel-feature-media.with-controls .hotel-media-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
}

.hotel-media-arrow.left {
  left: 16px;
}

.hotel-media-arrow.right {
  right: 16px;
}

.hotel-media-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hotel-media-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #fff;
}

.hotel-media-dots span.active {
  background: #fff;
}

.hotel-stay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hotel-stay-grid img {
  width: 100%;
  height: 195px;
  border-radius: 0;
  object-fit: cover;
}

.hotel-stay-grid h3 {
  margin: 0.62rem 0 0.25rem;
  font-size: 2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 1.02;
  text-align: center;
}

.hotel-stay-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  text-align: center;
}

.hotel-bottom-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.hotel-bottom-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.58) 28%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hotel-bottom-banner img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hotel-bottom-overlay {
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 560px;
  z-index: 2;
}

.hotel-bottom-overlay h2 {
  margin: 0 0 0.75rem;
  font-size: 4rem;
  line-height: 0.95;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.hotel-bottom-overlay p {
  margin: 0 0 1rem;
  font-size: 1.48rem;
  line-height: 1.2;
  font-family: "Arial Narrow", Arial, sans-serif;
  max-width: 500px;
}

.hotel-bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  color: #111;
  font-size: 1.04rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hotel-offer-page {
    grid-template-columns: 1fr;
  }

  .hotel-feature-item,
  .hotel-feature-item.reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hotel-feature-copy h3 {
    font-size: 2.3rem;
  }

  .hotel-feature-copy p {
    font-size: 1.12rem;
  }

  .hotel-feature-item img {
    height: 280px;
  }

  .hotel-stay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-stay-grid img {
    height: 180px;
  }

  .hotel-stay-grid h3 {
    font-size: 1.6rem;
  }

  .hotel-stay-grid p {
    font-size: 0.88rem;
  }

  .hotel-bottom-banner img {
    height: 350px;
  }

  .hotel-bottom-overlay {
    left: 20px;
    right: 20px;
    max-width: 430px;
  }

  .hotel-bottom-overlay h2 {
    font-size: 2.65rem;
  }

  .hotel-bottom-overlay p {
    font-size: 1.06rem;
    max-width: none;
  }
}

.home-hero-image {
  margin-top: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.home-hero-image img {
  width: 100%;
  display: block;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center 33%;
}

.hero-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

.hero-carousel img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.home-section {
  margin-top: 2.2rem;
}

.section-title.center {
  text-align: center;
}

.home-cards {
  display: grid;
  gap: 1rem;
}

.home-cards.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-cards.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-cards.single-col {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}

.home-media-card {
  background: #0a172f;
  border-radius: 12px;
  border: 1px solid rgba(193, 211, 245, 0.2);
  overflow: hidden;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.home-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}

.home-media-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.home-media-card h3 {
  margin: 0;
  padding: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
}

.logo-card img {
  object-fit: contain;
  background: #fff;
  padding: 1.25rem;
}

.home-games .home-media-card h3 {
  font-size: 1.35rem;
  padding: 0.95rem 1rem;
}

.home-games .logo-card img {
  height: 220px;
  padding: 1.8rem;
}

.card-auth-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border: 0;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(8, 26, 74, 0.94);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.destination-card::after,
.restaurant-card::after,
.bars-card::after,
.home-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.24s ease;
  z-index: 2;
}

.destination-card:hover::after,
.restaurant-card:hover::after,
.bars-card:hover::after,
.home-media-card:hover::after {
  opacity: 1;
}

.destination-card:hover .card-auth-cta,
.restaurant-card:hover .card-auth-cta,
.bars-card:hover .card-auth-cta,
.home-media-card:hover .card-auth-cta {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.social-strip {
  margin-top: 3rem;
  padding: 3.2rem 0 3rem;
  background: linear-gradient(90deg, #05113d 0%, #061c68 100%);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.social-strip-inner {
  width: min(1160px, calc(100% - 4rem));
  margin: 0 auto;
}

.social-strip h2 {
  margin: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 0.98;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-align: left;
}

.social-strip h2 span {
  display: block;
  font-size: 3rem;
  margin-top: 0.2rem;
}

.social-strip-line {
  width: 72px;
  height: 3px;
  background: #fff;
  margin-top: 0.75rem;
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 0.95rem;
  width: min(1160px, calc(100% - 4rem));
  margin: 1rem auto 0;
}

.social-circle {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.experience-strip {
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

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

.experience-grid img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 980px) {
  .home-cards.three-cols,
  .home-cards.four-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .experience-grid img {
    height: 205px;
  }

  .social-strip h2,
  .social-strip h2 span {
    font-size: 2.3rem;
  }

  .social-circle {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .destination-page {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 240px;
  }

  .destination-title {
    font-size: 2.4rem;
  }

  .destination-card h3 {
    font-size: 1.7rem;
  }

  .destination-card p {
    font-size: 1.2rem;
  }

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

  .restaurant-card img {
    height: 240px;
  }

  .restaurant-title {
    font-size: 2.4rem;
  }

  .restaurant-card h3 {
    font-size: 1.7rem;
  }

  .restaurant-card p {
    font-size: 1.15rem;
  }

  .bars-page {
    grid-template-columns: 1fr;
  }

  .bars-card img {
    height: 240px;
  }

  .bars-title {
    font-size: 2.4rem;
  }

  .bars-card h3 {
    font-size: 1.7rem;
  }

  .bars-card p {
    font-size: 1.15rem;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 0.8rem;
  }

  .main-nav a {
    font-size: 1.18rem;
  }

  .brand img {
    height: 38px;
  }

  .utility-links a {
    font-size: 0.75rem;
  }
}

@media (max-width: 980px) {
  .header-shell {
    padding: 0 14px;
  }

  .utility-inner {
    min-height: 42px;
  }

  .header-row {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    padding: 0.45rem 0;
    min-height: auto;
  }

  .brand {
    position: static;
    transform: none;
    order: 1;
  }

  .brand img {
    height: 36px;
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 1rem;
    line-height: 1.1;
  }

  .utility-links {
    order: 3;
    position: static;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0.1rem 0 0.25rem;
  }

  .hotel-hero img {
    height: 430px;
  }

  .hotel-hero-overlay {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 16px;
    padding: 16px 16px 16px 18px;
  }

  .hotel-hero-overlay h1 {
    font-size: 2.45rem;
  }

  .hotel-hero-overlay h3 {
    font-size: 1.35rem;
    margin-top: 0.6rem;
  }

  .hotel-hero-overlay p {
    font-size: 1.05rem;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .utility-inner {
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    padding: 0.3rem 0;
  }

  .utility-row {
    border-bottom: 1px dotted #cfcfcf;
  }

  .utility-left,
  .utility-right {
    width: auto;
  }

  .utility-inner {
    justify-content: space-between;
  }

  .play-online-btn {
    height: 30px;
    padding: 0 14px;
  }

  .header-row {
    min-height: 88px;
    padding: 0.35rem 0;
    justify-content: center;
    border-top: 0;
  }

  .brand {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .brand img {
    height: 38px;
  }

  .mobile-menu-btn {
    display: inline-block;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav,
  .utility-links {
    display: none;
  }

  .mobile-nav-panel {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 0.5rem 14px 0.7rem;
  }

  .mobile-nav-panel.is-open {
    display: block;
  }

  .mobile-nav-panel a {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 1rem;
    padding: 0.52rem 0;
    border-bottom: 1px solid #f1f1f1;
  }

  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-divider {
    height: 1px;
    background: #d9d9d9;
    margin: 0.35rem 0;
  }

  .mega-menu {
    left: 14px;
    right: 14px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
  }

  .mega-cards {
    grid-template-columns: 1fr;
  }

  .home-cards.three-cols,
  .home-cards.four-cols {
    grid-template-columns: 1fr;
  }

  .home-media-card img {
    height: 200px;
  }

  .hotel-hero img {
    height: 360px;
  }

  .hotel-hero-overlay {
    left: 8px;
    right: 8px;
    bottom: 10px;
    padding: 12px 12px 12px 14px;
    background: rgba(0, 0, 0, 0.75);
  }

  .hotel-hero-overlay h1 {
    font-size: 1.95rem;
  }

  .hotel-hero-overlay h3 {
    font-size: 1.1rem;
  }

  .hotel-hero-overlay p {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .groupes-hero img,
  .groupes-bottom-banner img {
    height: 260px;
  }

  .groupes-hero-overlay {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
    padding: 12px;
  }

  .groupes-hero-overlay h1 {
    font-size: 1.6rem;
  }

  .groupes-hero-overlay p {
    font-size: 0.86rem;
  }

  .groupes-events-page,
  .groupes-icons-grid {
    grid-template-columns: 1fr;
  }

  .groupes-destination-slide {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .groupes-destination-row,
  .groupes-destination-row.reverse {
    grid-template-columns: 1fr;
  }

  .gd-track img {
    height: 250px;
  }

  .groupes-destination-copy h3 {
    font-size: 2rem;
  }

  .groupes-destination-copy h4 {
    font-size: 1.15rem;
  }

  .groupes-destination-copy p {
    font-size: 1rem;
  }

  .groupes-icons-section h2 {
    font-size: 2.1rem;
  }

  .groupes-icons-grid h3 {
    font-size: 1.5rem;
  }

  .groupes-icons-grid p {
    font-size: 1rem;
  }
}
