:root {
  --navy: #07151c;
  --bay: #0d2630;
  --teal: #184850;
  --sea: #2a6b74;
  --gold: #c9a36a;
  --gold-soft: #e4c99a;
  --cream: #f6efe4;
  --ivory: #fbf7f1;
  --sand: #e8dcc8;
  --ink: #132026;
  --muted: #6a787e;
  --line: rgba(201, 163, 106, 0.35);
  --shadow: 0 24px 60px rgba(7, 21, 28, 0.18);
  --radius: 22px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar {
  background: var(--navy);
  color: var(--sand);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.topbar i {
  color: var(--gold);
  margin-right: 0.45rem;
}

.site-nav {
  background: var(--ivory);
  border-bottom: 1px solid rgba(19, 32, 38, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 30;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  transform: rotate(45deg);
}

.brand-mark i {
  transform: rotate(-45deg);
  font-size: 1.05rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.brand-copy small {
  margin-top: 0.28rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-backdrop {
  display: none;
}

.nav-panel-label,
.nav-links em {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 30;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  margin: 5px auto;
  transition: 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 138px);
  background:
    linear-gradient(180deg, rgba(7, 21, 28, 0.28) 0%, rgba(7, 21, 28, 0.62) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  position: relative;
}

.hero-inner {
  padding: 5.5rem 0 4.8rem;
  max-width: 760px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
  max-width: 100%;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(251, 247, 241, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn-gold,
.btn-ghost,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  border-color: rgba(251, 247, 241, 0.5);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: rgba(251, 247, 241, 0.08);
}

.btn-line {
  border-color: var(--gold);
  color: var(--navy);
  background: transparent;
}

.btn-line:hover {
  background: var(--navy);
  color: var(--gold);
}

.section {
  padding: 6.2rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--ivory);
}

.section-bay {
  background: var(--bay);
  color: var(--ivory);
}

.section-cream {
  background: var(--cream);
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
}

.section-dark .lead,
.section-bay .lead {
  color: rgba(246, 239, 228, 0.72);
}

.about-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
}

.stat {
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
}

.section-dark .stat b,
.section-bay .stat b {
  color: var(--gold-soft);
}

.stat span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-dark .stat span,
.section-bay .stat span {
  color: rgba(246, 239, 228, 0.6);
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.journey-card {
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(201, 163, 106, 0.22);
  background: rgba(255, 255, 255, 0.02);
  min-height: 240px;
}

.journey-card i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.journey-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.6rem;
}

.journey-card p {
  color: rgba(246, 239, 228, 0.7);
  margin: 0;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 21, 28, 0.08);
  height: 100%;
}

.menu-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-card .body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.menu-card h3 {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.menu-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.price {
  color: var(--teal);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.casino-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
}

.casino-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.feature-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(246, 239, 228, 0.8);
}

.feature-list i {
  color: var(--gold);
  margin-top: 0.3rem;
}

.game-tile {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  color: var(--ivory);
}

.game-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 28, 0.08), rgba(7, 21, 28, 0.84));
  z-index: 1;
}

.game-tile > * {
  position: relative;
  z-index: 2;
}

.game-tile h3 {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}

.event-panel {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
}

.event-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.event-box {
  background: #fff;
  padding: 1.6rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
}

.event-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.event-box p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.contact-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 163, 106, 0.2);
}

.contact-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.6rem;
}

.site-footer {
  background: #050f14;
  color: rgba(246, 239, 228, 0.72);
  padding: 4.2rem 0 1.6rem;
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ivory);
  display: block;
  margin-bottom: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin: 1.6rem 0;
}

.footer-links a {
  color: var(--gold-soft);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--ivory);
}

.disclaimer {
  font-size: 0.9rem;
  border-top: 1px solid rgba(201, 163, 106, 0.18);
  padding-top: 1.3rem;
  margin-top: 0.4rem;
}

.copy {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(246, 239, 228, 0.5);
}

.policy-hero {
  background: var(--navy);
  color: var(--ivory);
  padding: 4.5rem 0 3.4rem;
}

.policy-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
}

.policy-wrap {
  padding: 4rem 0 5rem;
}

.policy-wrap h2 {
  font-size: 1.9rem;
  margin: 2.2rem 0 0.8rem;
}

.policy-wrap p,
.policy-wrap li {
  color: var(--muted);
}

.policy-wrap ul {
  padding-left: 1.1rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 20, 0.78);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.overlay.is-on {
  display: flex;
}

.modal-card,
.restrict-card {
  width: min(460px, 100%);
  background: var(--ivory);
  color: var(--ink);
  padding: 2.2rem 1.8rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.modal-card h2,
.restrict-card h2 {
  font-size: 2.1rem;
  margin: 0 0 0.8rem;
}

.modal-card p,
.restrict-card p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.cookie-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: auto;
  max-width: calc(100vw - 24px);
  z-index: 70;
  background: var(--navy);
  color: var(--ivory);
  padding: 1.1rem 1.2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.cookie-bar.is-on {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(246, 239, 228, 0.78);
}

.cookie-bar a {
  color: var(--gold-soft);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .nav-toggle.is-open {
    background: var(--navy);
  }

  .nav-toggle.is-open span {
    background: var(--gold);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 20, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 40;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel-label {
    display: block;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(20.5rem, 86vw);
    height: 100dvh;
    max-height: 100dvh;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 6.4rem 1.5rem 2rem;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    overflow-x: hidden;
    overflow-y: auto;
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-left: 1px solid rgba(201, 163, 106, 0.28);
  }

  .nav-links.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    color: var(--ivory);
    font-size: 1.05rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(201, 163, 106, 0.16);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links em {
    display: inline;
    font-style: normal;
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 0.95rem;
    min-width: 1.6rem;
  }

  .stat-row,
  .journey,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .cookie-actions .btn-gold,
  .cookie-actions .btn-ghost {
    flex: 1;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    letter-spacing: 0.06em;
    font-size: 0.68rem;
    padding: 0.65rem 1rem;
  }

  .hero {
    min-height: 78vh;
    align-items: center;
  }

  .hero .container,
  .hero-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-inner {
    padding-top: 4rem;
    padding-bottom: 3.4rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.68rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
  }

  .stat-row,
  .journey,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-frame,
  .about-frame img,
  .casino-visual,
  .casino-visual img,
  .event-panel,
  .event-panel img {
    min-height: 280px;
  }

  .section {
    padding: 4.4rem 0;
  }

  .modal-card,
  .restrict-card {
    padding: 1.6rem 1.2rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn-gold,
  .modal-actions .btn-line {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .policy-hero,
  .policy-wrap {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
