:root {
  --navy: #071018;
  --navy-2: #101a28;
  --navy-3: #182433;
  --ink: #12151c;
  --gold: #c6a15a;
  --gold-2: #e4c98a;
  --gold-dim: rgba(198, 161, 90, 0.18);
  --cream: #f4ecdc;
  --ivory: #fbf7ef;
  --sand: #e5d7c0;
  --muted: #8d8578;
  --line: rgba(198, 161, 90, 0.28);
  --white: #ffffff;
  --danger: #8a2a38;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: #2b2a26;
  background: var(--ivory);
  overflow-x: hidden;
}

body.is-locked,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
.brand-name,
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
}

p {
  margin-bottom: 1rem;
}

.container-xl {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.08rem;
  color: #5b564c;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3,
.section-dark .display {
  color: var(--ivory);
}

.section-cream {
  background: var(--cream);
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.section-copy {
  max-width: 640px;
}

.gold-btn,
.ghost-btn,
.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.gold-btn {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--navy);
}

.gold-btn:hover {
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(198, 161, 90, 0.35);
}

.ghost-btn {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-2);
}

.ghost-btn:hover {
  background: var(--gold-dim);
  color: var(--gold-2);
}

.ink-ghost {
  border-color: var(--navy);
  color: var(--navy);
}

.ink-ghost:hover {
  background: var(--navy);
  color: var(--ivory);
}

.danger-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #f0e6d4;
}

.danger-btn:hover {
  border-color: #f0e6d4;
  color: #fff;
}

.topbar {
  background: var(--navy);
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.site-header {
  background: #0c1520;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
}

.brand:hover {
  color: var(--ivory);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.15rem;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(198, 161, 90, 0.35);
}

.brand-name {
  display: block;
  font-size: 1.28rem;
  line-height: 1;
  color: var(--ivory);
}

.brand-tag {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.desk-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 12px;
  max-width: min(860px, 78%);
}

.desk-nav a {
  color: #d9d0c0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}

.desk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.desk-nav a:hover,
.desk-nav a.is-active {
  color: var(--gold-2);
}

.desk-nav a:hover::after,
.desk-nav a.is-active::after {
  width: 100%;
}

.nav-hamburger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 100%);
  background: #0b131d;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

.mobile-nav a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.7rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(198, 161, 90, 0.12);
}

.mobile-nav a:hover {
  color: var(--gold-2);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 16, 0.62);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.86) 0%, rgba(7, 16, 24, 0.42) 55%, rgba(7, 16, 24, 0.18) 100%),
    url("../images/hero-casino-hotel.jpg") center/cover no-repeat;
  color: var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 90px 0;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  margin: 0 0 22px;
}

.hero p {
  max-width: 560px;
  color: #e6dcc8;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  justify-self: end;
  width: min(360px, 100%);
  background: rgba(10, 18, 28, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  padding: 28px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(198, 161, 90, 0.16);
  color: #d7ccba;
  font-size: 0.92rem;
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat b {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.strip {
  background: var(--navy-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.strip-item {
  color: var(--sand);
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 36px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.split-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 161, 90, 0.55);
  pointer-events: none;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  color: #514c44;
}

.feature-list i {
  color: var(--gold);
  margin-top: 4px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hotel-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hotel-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.hotel-card:hover img {
  transform: scale(1.12);
}

.hotel-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(7, 16, 24, 0.92) 45%);
  color: var(--ivory);
}

.hotel-card h3 {
  color: var(--ivory);
  font-size: 2rem;
  margin-bottom: 6px;
}

.hotel-meta {
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hotel-card p {
  color: #ddd3c3;
  margin: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 26px 22px;
  min-height: 220px;
}

.game-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.game-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.game-card p {
  color: #cfc4b2;
  margin: 0;
  font-size: 0.95rem;
}

.vip-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.vip-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.pillar {
  background: #fff;
  border: 1px solid rgba(18, 21, 28, 0.08);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(18, 21, 28, 0.05);
}

.pillar i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.notice {
  background: var(--navy);
  color: var(--cream);
  padding: 48px;
  border: 1px solid var(--line);
}

.notice h2 {
  color: var(--ivory);
  margin-bottom: 12px;
}

.notice p,
.notice li {
  color: #d8cebe;
}

.notice a {
  color: var(--gold-2);
  text-decoration: underline;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.email-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.email-chip i {
  color: var(--gold);
}

.site-footer {
  background: #050b12;
  color: #cfc4b2;
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 42px;
}

.site-footer h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  padding: 5px 0;
  color: #cfc4b2;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(198, 161, 90, 0.14);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.age-gate,
.age-restrict {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.86), rgba(5, 10, 16, 0.92)),
    url("../images/hero-casino-hotel.jpg") center/cover no-repeat;
}

.age-gate.is-open,
.age-restrict.is-open {
  display: flex;
}

html.age-ok .age-gate,
html.age-ok .age-restrict {
  display: none !important;
}

.age-card,
.restrict-card {
  width: min(520px, 100%);
  background: #0d1622;
  border: 1px solid var(--line);
  padding: 42px 36px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.age-card h2,
.restrict-card h2 {
  color: var(--ivory);
  font-size: 2.4rem;
  margin: 12px 0 14px;
}

.age-card p,
.restrict-card p {
  color: #d5cbb9;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.age-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.78), rgba(7, 16, 24, 0.78)),
    url("../images/lobby-about.jpg") center/cover no-repeat;
  color: var(--ivory);
  padding: 92px 0 78px;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin: 0;
}

.policy-wrap {
  width: min(860px, calc(100% - 2rem));
  margin: -40px auto 80px;
  background: #fff;
  padding: 48px 42px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.policy-wrap h2 {
  font-size: 1.8rem;
  margin: 28px 0 10px;
}

.policy-wrap h3 {
  font-size: 1.25rem;
  margin: 22px 0 8px;
}

.policy-wrap ul {
  padding-left: 18px;
}

.policy-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .desk-nav {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }
}

@media (max-width: 1199px) {
  .games-grid,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid,
  .split,
  .vip-wrap,
  .contact-band,
  .footer-grid,
  .hotels-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .split-media img,
  .vip-wrap img {
    height: 360px;
  }

  .section {
    padding: 72px 0;
  }

  .notice,
  .policy-wrap {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .games-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hotel-card,
  .hotel-card img {
    min-height: 380px;
    height: 380px;
  }

  .topbar {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }
}
