:root {
  --bg: #040b1d;
  --bg-soft: #0d2249;
  --surface: rgba(108, 168, 255, 0.11);
  --surface-strong: rgba(138, 191, 255, 0.18);
  --text: #e8f2ff;
  --muted: #b5c8e6;
  --gold: #f2c763;
  --amber: #5bc0ff;
  --border: rgba(95, 176, 255, 0.42);
  --success: #6ad58d;
  --danger: #f36d6d;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.62;
  background:
    radial-gradient(1200px 760px at 92% -10%, rgba(87, 175, 255, 0.36), transparent 62%),
    radial-gradient(940px 640px at -10% 42%, rgba(43, 114, 214, 0.24), transparent 58%),
    linear-gradient(180deg, #040b1d 0%, #071633 58%, #081f45 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section:nth-of-type(odd) {
  background: linear-gradient(180deg, rgba(86, 174, 255, 0.05), transparent 58%);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(106, 213, 141, 0.04), transparent 58%);
}

.section-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.section-subtitle {
  margin: 0;
  max-width: 770px;
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.5vw, 1.13rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 38, 0.82);
  border-bottom: 1px solid rgba(86, 174, 255, 0.25);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.2), transparent 45%),
    radial-gradient(circle at 70% 75%, #1f5ea8, #2f79cc 62%, #2c6eb8 100%);
  color: #ffd978;
  border: 1px solid rgba(224, 242, 255, 0.32);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 7px 18px rgba(44, 114, 187, 0.42),
    0 0 16px rgba(242, 199, 99, 0.32);
  text-shadow:
    0 0 10px rgba(255, 217, 120, 0.95),
    0 0 22px rgba(242, 190, 72, 0.82),
    0 0 38px rgba(226, 157, 52, 0.68);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: #e9f4ff;
  border: 1px solid transparent;
  transition: 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #f0f8ff;
  border-color: rgba(86, 174, 255, 0.5);
  background: rgba(86, 174, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-id-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(242, 199, 99, 0.58);
  color: #ffd978;
  background: linear-gradient(120deg, rgba(242, 199, 99, 0.22), rgba(86, 174, 255, 0.12));
  box-shadow: 0 0 0 1px rgba(242, 199, 99, 0.15) inset;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(242, 199, 99, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.93rem;
  transition: 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  color: #05244a;
  background: linear-gradient(120deg, #7acbff, #56aff8 65%, #7acbff);
  box-shadow: 0 12px 30px rgba(86, 174, 255, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.56) 50%, transparent 74%);
  transform: translateX(-145%);
  animation: btn-sheen 4.8s linear infinite;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(86, 174, 255, 0.4);
}

.btn-ghost {
  color: #e9f4ff;
  border-color: rgba(86, 174, 255, 0.5);
  background: rgba(86, 174, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(86, 174, 255, 0.15);
}

.lang-link {
  font-size: 0.86rem;
  color: #c4d9f6;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(86, 174, 255, 0.3);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(86, 174, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  color: #cfe5ff;
}

.hero {
  padding: 108px 0 74px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(2px);
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.33), transparent 66%);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 213, 141, 0.15), transparent 68%);
}

.hero-film {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-film-light,
.hero-film-vignette,
.hero-film-noise {
  position: absolute;
  inset: 0;
}

.hero-film-light {
  background:
    radial-gradient(58% 62% at 20% 20%, rgba(86, 174, 255, 0.22), transparent 72%),
    radial-gradient(42% 46% at 82% 72%, rgba(106, 213, 141, 0.14), transparent 72%);
}

.hero-film-vignette {
  background:
    linear-gradient(102deg, rgba(5, 18, 46, 0.55) 0%, transparent 28%),
    linear-gradient(258deg, rgba(5, 18, 46, 0.55) 0%, transparent 28%),
    radial-gradient(80% 76% at 50% 36%, transparent 54%, rgba(0, 0, 0, 0.36) 100%);
}

.hero-film-noise {
  opacity: 0.16;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(63deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: soft-light;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #cfe5ff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(86, 174, 255, 0.65);
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.45rem, 1.5rem + 4.2vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero-title span {
  color: #7acbff;
}

.hero-text {
  margin: 20px 0 28px;
  max-width: 690px;
  color: #c8ddf8;
  font-size: clamp(1rem, 0.92rem + 0.7vw, 1.18rem);
}

.hero-copy {
  max-width: 760px;
}

.hero-cta-wrap {
  display: grid;
  gap: 10px;
}

.cta-status {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  font-size: 0.82rem;
  color: #d8ecff;
  border: 1px solid rgba(86, 174, 255, 0.48);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(86, 174, 255, 0.15);
}

.cta-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ad8ff;
  box-shadow: 0 0 14px rgba(138, 216, 255, 0.8);
}

.club-id-inline {
  color: #ffd978;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(242, 199, 99, 0.65),
    0 0 24px rgba(242, 199, 99, 0.32);
}

.cta-status .club-id-inline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(242, 199, 99, 0.45);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(242, 199, 99, 0.12);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(86, 174, 255, 0.5);
  padding: 7px 12px;
  color: #cfe5ff;
  font-size: 0.82rem;
  background: rgba(86, 174, 255, 0.08);
}

.hero-proof {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.proof-item {
  border-radius: 14px;
  border: 1px solid rgba(86, 174, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 14px;
  backdrop-filter: blur(8px);
}

.proof-item:nth-child(1) {
  background: linear-gradient(155deg, rgba(86, 174, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.proof-item:nth-child(2) {
  background: linear-gradient(155deg, rgba(242, 199, 99, 0.14), rgba(255, 255, 255, 0.04));
}

.proof-item:nth-child(3) {
  background: linear-gradient(155deg, rgba(106, 213, 141, 0.12), rgba(255, 255, 255, 0.04));
}

.proof-kicker {
  display: block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ed4ff;
}

.proof-item strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.28;
  color: #e9f4ff;
}

.live-strip {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(86, 174, 255, 0.3);
  border-radius: 999px;
  background: linear-gradient(100deg, rgba(5, 18, 46, 0.65), rgba(8, 37, 78, 0.55));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.live-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 9px 14px;
  color: #d8ecff;
  font-size: 0.87rem;
  letter-spacing: 0.01em;
  animation: live-marquee 26s linear infinite;
}

.live-track span {
  white-space: nowrap;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: -34%;
  top: -26%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 202, 255, 0.44) 0%, rgba(86, 174, 255, 0.1) 52%, transparent 72%);
  filter: blur(8px);
  animation: card-glow 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.hero-card p {
  margin: 0;
  color: #c4d9f6;
}

.hero-stat-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stat {
  border: 1px solid rgba(86, 174, 255, 0.32);
  border-radius: 12px;
  padding: 12px;
  background: rgba(8, 8, 8, 0.35);
}

.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #cfe5ff;
}

.hero-stat span {
  font-size: 0.8rem;
  color: #a8c5e5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid rgba(86, 174, 255, 0.36);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
}

.card p,
.card li {
  color: #c4d9f6;
}

.rooms-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  position: relative;
  border: 1px solid rgba(86, 174, 255, 0.42);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(8, 10, 8, 0.55));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.room-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.room-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.room-rank {
  font-weight: 700;
  color: #cfe5ff;
  border: 1px solid rgba(86, 174, 255, 0.45);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.78rem;
}

.room-best {
  position: absolute;
  top: -12px;
  right: 18px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #05244a;
  background: linear-gradient(120deg, #cfe5ff, #56aff8);
}

.room-meta {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.room-meta li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.room-meta span:last-child {
  color: #cfe5ff;
  text-align: right;
}

.inline-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-list li {
  border: 1px solid rgba(86, 174, 255, 0.32);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.82rem;
  color: #c6dbf7;
  background: rgba(86, 174, 255, 0.06);
}

.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  border: 1px solid rgba(86, 174, 255, 0.35);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  color: #7acbff;
}

.card:hover,
.feature:hover,
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 174, 255, 0.62);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.44);
}

.chip-scene {
  position: relative;
  margin: -6px 0 8px;
  height: 236px;
  display: grid;
  place-items: center;
  perspective: 900px;
}

.chip-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 174, 255, 0.34) 0%, rgba(86, 174, 255, 0.1) 46%, transparent 73%);
  filter: blur(9px);
  animation: chip-glow 3.6s ease-in-out infinite;
}

.chip-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 222, 158, 0.45);
}

.chip-orbit-a {
  width: 206px;
  height: 206px;
  animation: orbit-spin 13s linear infinite;
}

.chip-orbit-b {
  width: 246px;
  height: 246px;
  border-color: rgba(255, 255, 255, 0.24);
  animation: orbit-spin-rev 16s linear infinite;
}

.poker-chip {
  width: 192px;
  height: 192px;
  position: relative;
  transform-style: preserve-3d;
  background: url("chip-gold.png") center/contain no-repeat;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.5));
  animation: chip-spin 11s linear infinite, chip-float 3.2s ease-in-out infinite;
}

.poker-chip::before {
  content: none;
}

.poker-chip::after {
  content: none;
}

.chip-spark {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  font-weight: 700;
  color: #8ad8ff;
  text-shadow:
    0 0 10px rgba(255, 226, 137, 0.85),
    0 0 22px rgba(247, 199, 76, 0.72),
    0 2px 8px rgba(0, 0, 0, 0.45);
  animation: chip-spark 2.2s ease-in-out infinite;
  pointer-events: none;
}

.chip-spark-a {
  top: 26px;
  right: 38px;
}

.chip-spark-b {
  left: 28px;
  bottom: 38px;
  animation-delay: 0.6s;
}

.chip-spark-c {
  right: 22px;
  bottom: 54px;
  animation-delay: 1.1s;
}

.faq-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(86, 174, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  color: #e2f1ff;
  background: transparent;
  padding: 17px 18px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-question span:last-child {
  color: #54b2ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 18px 17px;
  color: #c8ddf8;
}

.page-hero {
  padding: 86px 0 34px;
}

.page-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 1.4rem + 3.2vw, 4rem);
  line-height: 0.97;
}

.page-lead {
  margin: 18px 0 0;
  max-width: 820px;
  color: #c4d9f6;
  font-size: 1.09rem;
}

.breadcrumbs {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: #a8c5e5;
}

.breadcrumbs a {
  color: #c5daf7;
}

.content {
  display: grid;
  gap: 16px;
}

.content h2 {
  margin: 22px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 1.3rem + 1vw, 2.2rem);
}

.content h3 {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.content p,
.content li,
.content td,
.content th {
  color: #c8ddf8;
}

.content ul,
.content ol {
  margin: 8px 0 0;
  padding-left: 22px;
}

.combo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.combo-gallery figure {
  margin: 0;
  border: 1px solid rgba(86, 174, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.combo-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.combo-gallery figcaption {
  padding: 10px 12px;
  color: #c8ddf8;
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
  border: 1px solid rgba(86, 174, 255, 0.35);
}

.table th,
.table td {
  border-bottom: 1px solid rgba(86, 174, 255, 0.25);
  padding: 11px 10px;
  text-align: left;
}

.table th {
  background: rgba(86, 174, 255, 0.08);
  color: #cfe5ff;
}

.callout {
  border: 1px solid rgba(106, 213, 141, 0.36);
  border-radius: 14px;
  background: rgba(106, 213, 141, 0.08);
  padding: 15px;
  color: #d8ecff;
}

.warning {
  border-color: rgba(243, 109, 109, 0.45);
  background: rgba(243, 109, 109, 0.09);
}

.links-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.links-grid a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(86, 174, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.links-grid a:hover {
  background: rgba(86, 174, 255, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(86, 174, 255, 0.25);
  margin-top: 56px;
  padding: 34px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: #c2d8f5;
  font-size: 0.92rem;
}

.footer-note {
  margin: 8px 0 0;
  color: #9dbadb;
  font-size: 0.87rem;
}

.disclaimer {
  text-align: right;
  color: #cfe5ff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chip-spin {
  0% {
    transform: rotateY(14deg) rotateX(8deg) rotateZ(0deg);
  }
  100% {
    transform: rotateY(14deg) rotateX(8deg) rotateZ(360deg);
  }
}

@keyframes chip-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
}

@keyframes orbit-spin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes orbit-spin-rev {
  0% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes chip-glow {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.58;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.96;
  }
}

@keyframes chip-spark {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0) scale(0.9) rotate(-8deg);
  }
  40% {
    opacity: 1;
    transform: translateY(-8px) scale(1.1) rotate(8deg);
  }
}

@keyframes btn-sheen {
  0% {
    transform: translateX(-145%);
  }
  100% {
    transform: translateX(145%);
  }
}

@keyframes card-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.32;
  }
  50% {
    transform: translate3d(30px, 12px, 0);
    opacity: 0.62;
  }
}

@keyframes live-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 78px 14px auto;
    border: 1px solid rgba(86, 174, 255, 0.34);
    border-radius: 14px;
    background: rgba(10, 12, 9, 0.98);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.55);
    padding: 14px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    justify-content: center;
    width: 100%;
  }

  .header-actions .btn {
    display: none;
  }

  .club-id-chip {
    display: none;
  }

  .burger {
    display: inline-grid;
    place-items: center;
  }

  .grid-2,
  .links-grid,
  .combo-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 94px;
  }

  .rooms-grid,
  .feature-grid,
  .hero-stat-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-cta-wrap {
    gap: 8px;
  }

  .cta-status {
    font-size: 0.77rem;
  }

  .live-track {
    gap: 20px;
    font-size: 0.8rem;
  }

  .chip-scene {
    height: 202px;
  }

  .poker-chip {
    width: 154px;
    height: 154px;
  }

  .chip-orbit-a {
    width: 174px;
    height: 174px;
  }

  .chip-orbit-b {
    width: 206px;
    height: 206px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  .card,
  .feature,
  .hero-card,
  .chip-glow,
  .chip-orbit,
  .poker-chip,
  .chip-spark {
    animation: none !important;
    transition: none !important;
  }
}
