:root {
  --ink: #110e0c;
  --espresso: #1a1511;
  --panel: #221c17;
  --ivory: #f6efe4;
  --paper: #efe4d4;
  --gold: #c9a45c;
  --gold-soft: #e3c98a;
  --copper: #b56a3a;
  --muted: #9a8c7c;
  --line: rgba(201, 164, 92, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

[hidden] {
  display: none !important;
}

.topbar {
  background: #0c0a08;
  border-bottom: 1px solid var(--line);
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.7rem 0.75rem;
}

.topbar p {
  margin: 0;
  overflow-wrap: anywhere;
}

.topbar i {
  margin-right: 0.45rem;
  color: var(--gold);
}

.site-nav {
  background: var(--espresso);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.brand-mark i {
  transform: rotate(-45deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
}

.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desk-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.desk-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 0.2rem 0;
}

.desk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.desk-nav a:hover,
.desk-nav a:focus-visible {
  color: var(--gold-soft);
}

.desk-nav a:hover::after,
.desk-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, 0.97);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
}

.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 14, 12, 0.25) 0%, rgba(17, 14, 12, 0.55) 45%, rgba(17, 14, 12, 0.92) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  padding: 7rem 0 4.5rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 1.2rem;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  max-width: 640px;
  color: var(--paper);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-gold,
.btn-ghost,
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(201, 164, 92, 0.12);
  color: var(--gold-soft);
}

.btn-solid {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--line);
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--espresso);
}

.section-ivory {
  background: var(--ivory);
  color: var(--ink);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.kicker {
  display: inline-block;
  color: var(--copper);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.section-dark .kicker,
.hero .kicker {
  color: var(--gold);
}

h2,
.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
}

.section-ivory .lead,
.section-paper .lead {
  color: #5f5348;
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 1.5rem;
}

.frame {
  position: relative;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.frame::before,
.frame::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  z-index: 1;
  pointer-events: none;
}

.frame::before {
  top: 10px;
  left: 10px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.frame::after {
  right: 10px;
  bottom: 10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-card,
.game-card,
.event-card,
.info-card {
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem;
  overflow: hidden;
}

.section-ivory .menu-card,
.section-ivory .game-card,
.section-ivory .event-card,
.section-ivory .info-card,
.section-paper .menu-card,
.section-paper .game-card,
.section-paper .event-card,
.section-paper .info-card {
  background: #fffdf8;
  border-color: rgba(17, 14, 12, 0.08);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.menu-head h3,
.game-card h3,
.event-card h3,
.info-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0;
}

.price {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.2rem;
  white-space: nowrap;
}

.section-dark .price {
  color: var(--gold);
}

.menu-card p,
.game-card p,
.event-card p,
.info-card p {
  margin: 0;
  color: #8f8274;
  font-size: 0.95rem;
}

.section-dark .menu-card p,
.section-dark .game-card p,
.section-dark .event-card p,
.section-dark .info-card p {
  color: var(--muted);
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 1rem;
}

.event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -1.5rem -1.35rem 1.2rem;
  width: calc(100% + 2.7rem);
  max-width: none;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.disclaimer-box {
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  background: rgba(201, 164, 92, 0.05);
}

.site-footer {
  background: #0c0a08;
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
  color: var(--paper);
}

.footer-brand .brand-name {
  font-size: 1rem;
}

.footer-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-title {
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--paper);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-soft);
}

.footer-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(17, 14, 12, 0.82), rgba(17, 14, 12, 0.92)),
    url("../images/casino.jpg") center/cover no-repeat;
}

.legal-page {
  background: var(--ivory);
  color: var(--ink);
  padding: 3.5rem 0 5rem;
}

.legal-page h2 {
  font-size: 1.7rem;
  margin-top: 2.2rem;
}

.legal-page p,
.legal-page li {
  color: #4d433a;
}

.legal-page ul {
  padding-left: 1.1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(8, 6, 5, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-card,
.restrict-card {
  width: min(520px, 100%);
  background: var(--espresso);
  border: 1px solid var(--line);
  padding: 2.2rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-card .brand,
.restrict-card .brand {
  justify-content: center;
  margin-bottom: 1.2rem;
}

.modal-card h2,
.restrict-card h2 {
  font-size: 2rem;
}

.modal-card p,
.restrict-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.cookie-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 80;
  width: auto;
  max-width: calc(100% - 1.5rem);
  box-sizing: border-box;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-bar p {
  margin: 0;
  color: var(--paper);
  font-size: 0.92rem;
  max-width: 62ch;
}

.cookie-bar a {
  color: var(--gold);
  text-decoration: underline;
}

@media (min-width: 992px) {
  .desk-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .desk-nav {
    gap: 0.8rem;
  }

  .desk-nav a {
    letter-spacing: 0.08em;
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
    align-items: center;
    padding-top: 5.5rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .row.g-5,
  .row.gy-5,
  .row.gx-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }

  .topbar {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0.55rem 0.75rem;
  }

  .event-card img {
    margin: -1.5rem -1.35rem 1.2rem;
    width: calc(100% + 2.7rem);
  }
}
