:root {
  --forest: #0c1f18;
  --forest-2: #133026;
  --forest-3: #1b3d30;
  --moss: #2a5443;
  --copper: #c9893a;
  --copper-2: #e3b56a;
  --copper-dim: rgba(201, 137, 58, 0.16);
  --parchment: #f6efe2;
  --ivory: #fbf7ef;
  --ink: #17140f;
  --muted: #6d6558;
  --line: rgba(201, 137, 58, 0.28);
  --danger: #7d2b2b;
  --white: #ffffff;
  --display: "Cinzel", "Times New Roman", serif;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --radius: 4px;
  --shadow: 0 28px 70px rgba(12, 31, 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.75;
  color: #2c2820;
  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(--copper);
}

h1,
h2,
h3,
h4,
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--forest);
}

p {
  margin-bottom: 1rem;
}

.container-xl {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--copper);
}

.lead {
  font-size: 1.08rem;
  color: #5a5348;
}

.section {
  padding: 100px 0;
}

.section-forest {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--parchment);
}

.section-forest h2,
.section-forest h3 {
  color: var(--ivory);
}

.section-parchment {
  background: var(--parchment);
}

.section-title {
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.section-intro {
  max-width: 680px;
}

.gold-btn,
.ghost-btn,
.danger-btn,
.ink-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.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.gold-btn {
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: var(--forest);
}

.gold-btn:hover {
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 137, 58, 0.32);
}

.ghost-btn {
  background: transparent;
  border-color: var(--copper);
  color: var(--copper-2);
}

.ghost-btn:hover {
  background: var(--copper-dim);
  color: var(--copper-2);
}

.ink-btn {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.ink-btn:hover {
  background: var(--forest);
  color: var(--ivory);
}

.danger-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #efe4d2;
}

.danger-btn:hover {
  border-color: #efe4d2;
  color: #fff;
}

.topbar {
  background: #081610;
  color: #d8cbb4;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
}

.topbar i {
  color: var(--copper);
  margin-right: 8px;
}

.site-header {
  background: var(--forest);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ivory);
}

.brand:hover {
  color: var(--ivory);
}

.brand-mark {
  width: 50px;
  height: 50px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 1.12rem;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 137, 58, 0.35);
  border-radius: 50%;
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ivory);
}

.brand-tag {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper-2);
}

.desk-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
}

.desk-nav a {
  color: #e4d8c4;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 0;
  position: relative;
}

.desk-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.25s ease;
}

.desk-nav a:hover,
.desk-nav a.is-active {
  color: var(--copper-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(--copper);
  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(420px, 100%);
  background: #0a1a14;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 28px 28px 48px;
  display: flex;
  flex-direction: column;
  box-shadow: -22px 0 50px rgba(0, 0, 0, 0.38);
}

.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(--copper);
  cursor: pointer;
}

.mobile-nav a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.7rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 137, 58, 0.12);
}

.mobile-nav a:hover {
  color: var(--copper-2);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 14, 0.64);
  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 - 148px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8, 22, 17, 0.72) 0%, rgba(8, 22, 17, 0.55) 45%, rgba(8, 22, 17, 0.78) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  color: var(--ivory);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0;
}

.hero h1 {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: clamp(3.1rem, 6.6vw, 6rem);
  line-height: 0.94;
  margin: 0 0 22px;
}

.hero p {
  max-width: 560px;
  color: #efe3d0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-ticket {
  justify-self: end;
  width: min(380px, 100%);
  background: rgba(10, 26, 20, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding: 8px;
}

.hero-ticket-inner {
  border: 1px solid rgba(201, 137, 58, 0.22);
  padding: 26px 24px;
}

.ticket-label {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 18px;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201, 137, 58, 0.16);
  color: #ddd1bc;
  font-size: 0.92rem;
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat b {
  color: var(--copper-2);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
}

.strip {
  background: var(--forest-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.strip-item {
  color: #e4d8c4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.strip-item i {
  color: var(--copper);
  font-size: 1.15rem;
  width: 28px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.split-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 137, 58, 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(--copper);
  margin-top: 5px;
}

.menu-card {
  background: #fff;
  border: 1px solid rgba(23, 20, 15, 0.08);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-card-body {
  padding: 24px 22px 28px;
}

.course-no {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.menu-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.menu-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 28px 22px;
  height: 100%;
}

.game-card i {
  color: var(--copper);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.game-card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.game-card p {
  color: #d6cbb8;
  margin: 0;
  font-size: 0.95rem;
}

.event-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.event-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.event-card:hover img {
  transform: scale(1.1);
}

.event-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(8, 22, 17, 0.94) 48%);
  color: var(--ivory);
}

.event-card h3 {
  color: var(--ivory);
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.event-meta {
  color: var(--copper-2);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-card p {
  color: #ddd3c3;
  margin: 0;
}

.pillar {
  background: #fff;
  border: 1px solid rgba(23, 20, 15, 0.08);
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 10px 28px rgba(23, 20, 15, 0.04);
}

.pillar i {
  color: var(--copper);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.notice {
  background: var(--forest);
  color: var(--parchment);
  padding: 48px;
  border: 1px solid var(--line);
}

.notice h2 {
  color: var(--ivory);
  margin-bottom: 14px;
}

.notice p {
  color: #d8cebe;
}

.notice a {
  color: var(--copper-2);
  text-decoration: underline;
}

.contact-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.contact-note {
  background: #fff;
  border: 1px solid rgba(23, 20, 15, 0.08);
  padding: 32px 28px;
}

.contact-note i {
  color: var(--copper);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.contact-note h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.site-footer {
  background: #07140f;
  color: #cfc4b2;
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  color: var(--ivory);
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  padding: 5px 0;
  color: #cfc4b2;
}

.site-footer a:hover {
  color: var(--copper-2);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 137, 58, 0.14);
  padding-top: 18px;
  margin-top: 36px;
  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(8, 18, 14, 0.88), rgba(8, 18, 14, 0.93)),
    url("../images/hero.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: #10261d;
  border: 1px solid var(--line);
  padding: 42px 36px;
  text-align: center;
  color: var(--parchment);
  box-shadow: var(--shadow);
}

.age-card h2,
.restrict-card h2 {
  color: var(--ivory);
  font-size: 2.35rem;
  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(--copper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--copper);
  font-size: 1.35rem;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: none;
  background: #10261d;
  border: 1px solid var(--line);
  color: #efe4d2;
  box-shadow: var(--shadow);
}

.cookie-bar.is-open {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.92rem;
  color: #ddd2bf;
}

.cookie-inner a {
  color: var(--copper-2);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(8, 22, 17, 0.78), rgba(8, 22, 17, 0.78)),
    url("../images/casino-salon.jpg") center/cover no-repeat;
  color: var(--ivory);
  padding: 92px 0 78px;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  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.75rem;
  margin: 28px 0 10px;
}

.policy-wrap h3 {
  font-size: 1.22rem;
  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: 991px) {
  .hero-grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-ticket {
    justify-self: stretch;
  }

  .split-media img {
    height: 360px;
  }

  .section {
    padding: 72px 0;
  }

  .notice,
  .policy-wrap {
    padding: 28px 22px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }

  .topbar {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .event-card,
  .event-card img {
    min-height: 380px;
    height: 380px;
  }
}
