:root {
  --bg-deep: #0c0a0f;
  --bg-surface: #16121f;
  --bg-panel: #1f1a2e;
  --bg-elevated: #2a2438;
  --accent-emerald: #2dd4a8;
  --accent-gold: #e8b84a;
  --accent-rose: #f472b6;
  --text-primary: #faf7f2;
  --text-secondary: #d4cfc8;
  --text-muted: #9b948c;
  --border-subtle: rgba(232, 184, 74, 0.18);
  --border-emerald: rgba(45, 212, 168, 0.25);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 32px rgba(232, 184, 74, 0.2);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-hero: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --topbar-height: 2.35rem;
  --navbar-height: 4.5rem;
  --container-max: 1180px;
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.5rem;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(45, 212, 168, 0.09), transparent 42%),
    radial-gradient(circle at 85% 5%, rgba(232, 184, 74, 0.08), transparent 38%),
    radial-gradient(circle at 50% 95%, rgba(244, 114, 182, 0.05), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(250, 247, 242, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 242, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

#root {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.svg-inline--fa {
  display: block;
  height: 1em;
  width: 1em;
  vertical-align: -0.125em;
}

.logo__icon .svg-inline--fa,
.feature-card__icon .svg-inline--fa,
.hero__highlight-icon .svg-inline--fa,
.hero__eyebrow .svg-inline--fa,
.btn .svg-inline--fa,
.topbar__badge .svg-inline--fa,
.nav-toggle .svg-inline--fa {
  height: 1em;
  width: 1em;
  color: currentColor;
  fill: currentColor;
}

.logo__icon .svg-inline--fa {
  height: 1.35rem;
  width: 1.35rem;
}

.feature-card__icon .svg-inline--fa {
  height: 1.25rem;
  width: 1.25rem;
}

.hero__highlight-icon .svg-inline--fa {
  height: 1.15rem;
  width: 1.15rem;
}

.nav-toggle .svg-inline--fa {
  height: 1.35rem;
  width: 1.35rem;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #1a1528, #221c35);
  border-bottom: 1px solid var(--border-subtle);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: var(--topbar-height);
  padding: 0.4rem 1rem;
  text-align: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.12rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--accent-gold);
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
}

.topbar__badge i {
  font-size: 0.625rem;
}

.topbar__text {
  color: var(--text-secondary);
}

.navbar {
  position: relative;
  z-index: 50;
  background: rgba(12, 10, 15, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--navbar-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--accent-gold), #c9972e);
  color: var(--bg-deep);
  font-size: 1.35rem;
  box-shadow: var(--shadow-gold);
  border: 2px solid rgba(250, 247, 242, 0.15);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo__tagline {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-emerald);
}

.nav-desktop__pill {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
}

.nav-desktop a {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--text-primary);
  background: var(--bg-elevated);
  outline: none;
}

.nav-desktop__cta {
  background: linear-gradient(135deg, var(--accent-emerald), #1aab82) !important;
  color: var(--bg-deep) !important;
  font-weight: 700 !important;
}

.nav-desktop__cta:hover {
  filter: brightness(1.08);
  background: linear-gradient(135deg, var(--accent-emerald), #1aab82) !important;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  color: var(--accent-gold);
  cursor: pointer;
  font-size: 1.35rem;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border-emerald);
  padding: 0.85rem;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
}

.nav-mobile a:hover,
.nav-mobile a:focus-visible {
  color: var(--text-primary);
  background: var(--bg-elevated);
  border-left-color: var(--accent-emerald);
  outline: none;
}

.nav-mobile__cta {
  background: linear-gradient(135deg, var(--accent-emerald), #1aab82);
  color: var(--bg-deep) !important;
  border-left-color: transparent !important;
  text-align: center;
  margin-top: 0.25rem;
}

.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero__shell {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(165deg, var(--bg-panel) 0%, var(--bg-surface) 55%, #120f18 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero__shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold), var(--accent-rose));
  z-index: 2;
}

.hero__panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
  padding: 2.75rem 2.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(45, 212, 168, 0.12);
  border: 1px solid var(--border-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-emerald);
}

.hero__title {
  font-family: var(--font-hero);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.hero__title::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-emerald));
}

.hero__desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 30rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.45rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-gold), #d4a03a);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  border-color: var(--accent-emerald);
  background: rgba(45, 212, 168, 0.08);
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 22rem;
}

.hero__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.hero__highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 212, 168, 0.15);
  color: var(--accent-emerald);
  font-size: 1.15rem;
}

.hero__highlight-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero__highlight-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.feature-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-4px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-emerald), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(250, 247, 242, 0.04);
  line-height: 1;
}

.feature-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(232, 184, 74, 0.12);
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.games-section {
  padding: 3.5rem 0 4rem;
}

.games-section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.games-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 184, 74, 0.12);
  border: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.games-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.games-section__desc {
  font-size: 1rem;
  color: var(--text-secondary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
}

.game-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.game-card__inner:hover {
  border-color: var(--border-emerald);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.game-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-panel);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.game-card__inner:hover .game-card__media img {
  transform: scale(1.05);
}

.game-card__type {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(12, 10, 15, 0.82);
  border: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-emerald);
}

.game-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
}

.game-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.game-card__name a {
  color: var(--text-primary);
  transition: color 0.2s;
}

.game-card__name a:hover,
.game-card__name a:focus-visible {
  color: var(--accent-gold);
  outline: none;
}

.game-card__play {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.game-card__play .svg-inline--fa {
  height: 0.95rem;
  width: 0.95rem;
}

.page-games .games-section,
.page-content .games-section {
  padding-top: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(45, 212, 168, 0.12);
  border: 1px solid var(--border-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-emerald);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-text {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 38rem;
}

.steps-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-subtle);
}

.steps-section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.steps-section__intro {
  text-align: center;
  margin-inline: auto;
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.step-card {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-4px);
}

.step-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(250, 247, 242, 0.06);
  line-height: 1;
}

.step-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 212, 168, 0.15);
  color: var(--accent-emerald);
  font-size: 1.15rem;
}

.step-card__icon .svg-inline--fa {
  height: 1.15rem;
  width: 1.15rem;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.steps-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.community-section {
  padding: 4rem 0;
  background: rgba(22, 18, 31, 0.55);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.community-section__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.community-section__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.community-section__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.community-section__stats li {
  flex: 1;
  min-width: 5.5rem;
  padding: 1rem;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.community-section__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.2;
}

.community-section__stats span {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.community-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.community-card {
  padding: 1.35rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s;
}

.community-card:hover {
  border-color: var(--accent-gold);
}

.community-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(232, 184, 74, 0.12);
  color: var(--accent-gold);
}

.community-card__icon .svg-inline--fa {
  height: 1.1rem;
  width: 1.1rem;
}

.community-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.community-card__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.about-section {
  padding: 4rem 0;
  background: rgba(22, 18, 31, 0.5);
  border-top: none;
  border-bottom: 1px solid var(--border-subtle);
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-section__link {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.about-section__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-section__points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.about-section__points .svg-inline--fa {
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
  color: var(--accent-gold);
  margin-top: 0.15rem;
}

.about-section__points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.about-section__points span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.disclaimer-section {
  padding: 4rem 0;
}

.disclaimer-section__box {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-emerald);
  background: linear-gradient(160deg, rgba(45, 212, 168, 0.08), var(--bg-surface));
  padding: 2.5rem 2rem;
}

.disclaimer-section__header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.disclaimer-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--accent-gold);
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.875rem;
}

.disclaimer-section__badge .svg-inline--fa {
  height: 0.9rem;
  width: 0.9rem;
}

.disclaimer-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
}

.disclaimer-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.disclaimer-card {
  padding: 1.35rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.disclaimer-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.65rem;
}

.disclaimer-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-header {
  padding: 2.5rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(22, 18, 31, 0.4);
}

.page-header__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-emerald);
  margin-bottom: 0.5rem;
}

.page-header__title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.page-header__desc {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.page-content {
  padding-bottom: 1rem;
}

.legal-content {
  padding: 2.5rem 0 3.5rem;
  max-width: 48rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0 4rem;
}

.contact-card {
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-card .svg-inline--fa {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--accent-emerald);
  margin: 0 auto 1rem;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent-gold);
}

.contact-card a:hover {
  color: var(--accent-emerald);
}

.contact-card__sub {
  margin-top: 0.5rem;
  font-size: 0.8125rem !important;
  color: var(--text-muted) !important;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, transparent, rgba(22, 18, 31, 0.95));
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.site-footer__logo .svg-inline--fa {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--accent-gold);
}

.site-footer__brand-text,
.site-footer__age {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.site-footer__age {
  padding: 0.75rem;
  background: rgba(232, 184, 74, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
}

.site-footer__age strong {
  color: var(--accent-gold);
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.site-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.site-footer__col a:hover {
  color: var(--accent-emerald);
}

.site-footer__contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.site-footer__contact .svg-inline--fa {
  flex-shrink: 0;
  height: 0.9rem;
  width: 0.9rem;
  color: var(--accent-emerald);
  margin-top: 0.15rem;
}

.site-footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  background: rgba(12, 10, 15, 0.6);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer__copy strong {
  color: var(--text-secondary);
}

.site-footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .community-section__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .about-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .disclaimer-section__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .games-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero__panel {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__eyebrow {
    align-self: center;
  }

  .hero__title::after {
    margin-inline: auto;
  }

  .hero__desc {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    padding-bottom: 0;
  }

  .hero__highlights {
    max-width: none;
    margin-inline: auto;
  }

  .hero__features {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .games-grid .game-card:last-child {
    grid-column: 1 / -1;
    max-width: 22rem;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .logo__tagline {
    display: none;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__disclaimer {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .topbar__inner {
    font-size: 0.6875rem;
  }

  .hero__panel {
    padding: 1.5rem 1rem;
  }

  .hero__highlights {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .modal-card {
    padding: 1.5rem 1.25rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 6, 12, 0.88);
  backdrop-filter: blur(6px);
}

.modal-card {
  width: min(100%, 28rem);
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.modal-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 184, 74, 0.15);
  color: var(--accent-gold);
}

.modal-card__icon-wrap .svg-inline--fa {
  height: 1.5rem;
  width: 1.5rem;
}

.modal-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.modal-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  text-align: left;
}

.modal-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.25rem 0;
  text-align: left;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.modal-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--accent-emerald);
  flex-shrink: 0;
}

.modal-card__btn {
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding: 1rem 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--accent-emerald);
  text-decoration: underline;
}

.cookie-banner__btn {
  flex-shrink: 0;
}

.contact-page .contact-email-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.contact-email-block .svg-inline--fa {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-email-block h2 {
  margin-top: 0;
}

.contact-email-block a {
  color: var(--accent-emerald);
  font-weight: 600;
}

.contact-email-block__sub {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.5rem !important;
}

.game-play-wrap {
  padding-bottom: 3rem;
}

.play-game {
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  background: var(--bg-surface);
}

.play-game--slot {
  --game-accent: #e8b84a;
  --game-glow: rgba(232, 184, 74, 0.35);
}

.play-game--blackjack {
  --game-accent: #2dd4a8;
  --game-glow: rgba(45, 212, 168, 0.35);
}

.play-game--roulette {
  --game-accent: #f472b6;
  --game-glow: rgba(244, 114, 182, 0.35);
}

.play-game__banner {
  position: relative;
  height: 11rem;
  background-size: cover;
  background-position: center;
}

.play-game__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 15, 0.25) 0%, rgba(12, 10, 15, 0.92) 100%);
}

.play-game__banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  text-align: center;
}

.play-game__banner-title {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.play-game__banner-sub {
  font-size: 0.8125rem;
  color: var(--game-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

.play-game__body {
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-surface) 100%);
}

.play-game__hud {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.play-game__stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.play-game__stat .svg-inline--fa {
  height: 1.35rem;
  width: 1.35rem;
  color: var(--game-accent);
  flex-shrink: 0;
}

.play-game__stat--balance {
  border-color: rgba(232, 184, 74, 0.35);
  box-shadow: 0 0 24px rgba(232, 184, 74, 0.08);
}

.play-game__stat-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.play-game__stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.play-game__stage {
  margin-bottom: 0.5rem;
}

.play-game__message {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 1.25rem 0;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.play-game__message--success {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  box-shadow: 0 0 20px rgba(45, 212, 168, 0.15);
  animation: message-pop 0.45s ease;
}

@keyframes message-pop {
  0% { transform: scale(0.98); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.play-game__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn--game {
  min-width: 9rem;
  box-shadow: 0 4px 20px var(--game-glow);
}

.play-game__hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.slot-cabinet {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(145deg, #2a1f3d, #1a1228);
  border-radius: var(--radius-lg);
  border: 3px solid var(--accent-gold);
  box-shadow:
    0 0 40px rgba(232, 184, 74, 0.15),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.4s;
}

.slot-cabinet.is-active {
  box-shadow:
    0 0 50px rgba(232, 184, 74, 0.25),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.slot-cabinet.is-celebrate {
  animation: slot-celebrate 0.6s ease 2;
  box-shadow:
    0 0 60px rgba(45, 212, 168, 0.45),
    inset 0 0 40px rgba(232, 184, 74, 0.1);
}

@keyframes slot-celebrate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.slot-cabinet__top {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.slot-cabinet__light {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
}

.slot-cabinet.is-active .slot-cabinet__light {
  animation: light-blink 0.4s ease infinite alternate;
}

.slot-cabinet.is-active .slot-cabinet__light:nth-child(2) {
  animation-delay: 0.15s;
}

.slot-cabinet.is-active .slot-cabinet__light:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes light-blink {
  from { opacity: 0.4; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1.15); }
}

.slot-cabinet__window {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  background: #0a0810;
  border-radius: var(--radius-md);
  border: 2px inset rgba(232, 184, 74, 0.3);
}

.slot-cabinet__payline {
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  box-shadow: 0 0 12px var(--accent-gold);
}

.slot-reel {
  width: 5.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1f1a2e 0%, #14101c 50%, #1f1a2e 100%);
  border: 2px solid rgba(232, 184, 74, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
}

.slot-reel.is-blur .slot-reel__symbol {
  animation: reel-blur 0.07s linear infinite;
  filter: blur(1px);
}

.slot-reel.is-landing .slot-reel__symbol {
  animation: reel-land 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  filter: none;
}

@keyframes reel-blur {
  0% { transform: translateY(-8px); opacity: 0.7; }
  100% { transform: translateY(8px); opacity: 1; }
}

@keyframes reel-land {
  0% { transform: translateY(-20px) scale(0.9); }
  100% { transform: translateY(0) scale(1); }
}

.slot-reel__symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.slot-reel__symbol .svg-inline--fa {
  height: 2rem;
  width: 2rem;
}

.slot-reel__symbol span {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.sym-crown .svg-inline--fa { color: var(--accent-gold); }
.sym-gem .svg-inline--fa { color: #22d3ee; }
.sym-ruby .svg-inline--fa { color: #f472b6; }
.sym-seven .svg-inline--fa { color: #a78bfa; }
.sym-star .svg-inline--fa { color: #fbbf24; }

.slot-paytable {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.slot-paytable li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
}

.slot-paytable__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-paytable__icon .svg-inline--fa {
  height: 0.9rem;
  width: 0.9rem;
}

.slot-paytable__label {
  flex: 1;
  color: var(--text-secondary);
}

.slot-paytable__val {
  font-weight: 700;
  color: var(--accent-gold);
}

.bj-table {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 0.35rem;
  background: linear-gradient(145deg, #8b6914, #5c4510);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.bj-table.is-dealing .bj-table__felt {
  animation: felt-pulse 0.5s ease;
}

@keyframes felt-pulse {
  0%, 100% { box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: inset 0 0 60px rgba(45, 212, 168, 0.15); }
}

.bj-table__felt {
  position: relative;
  padding: 1.75rem 1.25rem;
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45, 212, 168, 0.08), transparent),
    linear-gradient(160deg, #0d5c3f 0%, #084530 50%, #063828 100%);
  border: 2px solid rgba(45, 212, 168, 0.2);
  min-height: 16rem;
}

.bj-table__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.bj-table__divider {
  height: 2px;
  margin: 1.25rem 0;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 74, 0.5), transparent);
}

.bj-zone__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.bj-zone__score {
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.35);
  color: var(--accent-gold);
  font-size: 0.75rem;
}

.bj-zone__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-height: 5.5rem;
}

.bj-card {
  width: 4.25rem;
  height: 6rem;
  border-radius: 0.45rem;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.card-deal-in {
  animation: card-deal 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes card-deal {
  from {
    opacity: 0;
    transform: translateY(-24px) rotate(-8deg) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

.bj-card--face {
  background: linear-gradient(145deg, #fffef9, #f0ebe3);
  border: 1px solid #ccc5b8;
  color: #1a1a2e;
}

.bj-card--red {
  color: #c0392b;
}

.bj-card--back {
  background: linear-gradient(135deg, #3d2a5c, #1f1530);
  border: 2px solid var(--accent-gold);
  overflow: hidden;
}

.bj-card__pattern {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(232, 184, 74, 0.15) 6px, rgba(232, 184, 74, 0.15) 12px);
}

.bj-card__corner {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.bj-card__corner--tl { top: 0.35rem; left: 0.35rem; }
.bj-card__corner--br { bottom: 0.35rem; right: 0.35rem; transform: rotate(180deg); }

.bj-card__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
}

.roulette-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1rem;
  min-height: 18rem;
}

.roulette-stage__glow {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--game-glow), transparent 70%);
  top: 2rem;
  pointer-events: none;
}

.roulette-stage.is-spinning .roulette-stage__glow {
  animation: glow-pulse 0.8s ease infinite alternate;
}

@keyframes glow-pulse {
  from { transform: scale(0.95); opacity: 0.6; }
  to { transform: scale(1.08); opacity: 1; }
}

.roulette-wheel-wrap {
  position: relative;
  width: 13rem;
  height: 13rem;
}

.roulette-wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--accent-gold);
  background:
    conic-gradient(
      #0d7a4a 0deg 9.73deg,
      #c0392b 9.73deg 19.46deg,
      #1c1c28 19.46deg 29.19deg,
      #c0392b 29.19deg 38.92deg,
      #1c1c28 38.92deg 48.65deg,
      #c0392b 48.65deg 58.38deg,
      #1c1c28 58.38deg 68.11deg,
      #c0392b 68.11deg 77.84deg,
      #1c1c28 77.84deg 87.57deg,
      #c0392b 87.57deg 97.3deg,
      #1c1c28 97.3deg 107.03deg,
      #c0392b 107.03deg 116.76deg,
      #1c1c28 116.76deg 126.49deg,
      #c0392b 126.49deg 136.22deg,
      #1c1c28 136.22deg 145.95deg,
      #c0392b 145.95deg 155.68deg,
      #1c1c28 155.68deg 165.41deg,
      #c0392b 165.41deg 175.14deg,
      #1c1c28 175.14deg 184.87deg,
      #c0392b 184.87deg 194.59deg,
      #1c1c28 194.59deg 204.32deg,
      #c0392b 204.32deg 214.05deg,
      #1c1c28 214.05deg 223.78deg,
      #c0392b 223.78deg 233.51deg,
      #1c1c28 233.51deg 243.24deg,
      #c0392b 243.24deg 252.97deg,
      #1c1c28 252.97deg 262.7deg,
      #c0392b 262.7deg 272.43deg,
      #1c1c28 272.43deg 282.16deg,
      #c0392b 282.16deg 291.89deg,
      #1c1c28 291.89deg 301.62deg,
      #c0392b 301.62deg 311.35deg,
      #1c1c28 311.35deg 321.08deg,
      #c0392b 321.08deg 330.81deg,
      #1c1c28 330.81deg 340.54deg,
      #c0392b 340.54deg 350.27deg,
      #1c1c28 350.27deg 360deg
    );
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 2.8s cubic-bezier(0.15, 0.85, 0.2, 1);
}

.roulette-wheel-cap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f472b6, #be185d);
  border: 3px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.roulette-wheel-cap__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.roulette-ball {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  width: 0.85rem;
  height: 0.85rem;
  margin-left: -0.425rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #ddd 40%, #999);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transform-origin: 50% 6.15rem;
}

.roulette-ball.is-rolling {
  animation: ball-orbit 2.8s cubic-bezier(0.15, 0.85, 0.2, 1);
}

@keyframes ball-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(2520deg); }
}

.roulette-result-pill {
  margin-top: 1.25rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  border: 2px solid var(--border-subtle);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-width: 4rem;
  text-align: center;
}

.roulette-result-pill--red {
  border-color: #c0392b;
  color: #ff6b6b;
  box-shadow: 0 0 20px rgba(192, 57, 43, 0.35);
}

.roulette-result-pill--black {
  border-color: #555;
  color: #ccc;
}

.roulette-result-pill--green {
  border-color: #0d7a4a;
  color: #2dd4a8;
  box-shadow: 0 0 20px rgba(45, 212, 168, 0.35);
}

.roulette-choices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.roulette-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1;
  max-width: 5.5rem;
  margin: 0 auto;
  cursor: pointer;
  font-family: var(--font-body);
  background: var(--bg-deep);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.roulette-chip:hover:not(:disabled) {
  transform: translateY(-3px);
}

.roulette-chip.is-selected {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px var(--game-glow);
}

.roulette-chip--red.is-selected {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.2);
}

.roulette-chip--black.is-selected {
  border-color: #888;
  background: rgba(80, 80, 90, 0.4);
}

.roulette-chip--odd.is-selected,
.roulette-chip--even.is-selected {
  border-color: var(--accent-gold);
  background: rgba(232, 184, 74, 0.15);
}

.roulette-chip__inner {
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.roulette-chip__payout {
  font-size: 0.5625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roulette-history {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.roulette-history__item {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid var(--border-subtle);
  animation: history-in 0.35s ease;
}

@keyframes history-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.roulette-history__item--red {
  background: #c0392b;
  color: #fff;
}

.roulette-history__item--black {
  background: #1c1c28;
  color: #fff;
}

.roulette-history__item--green {
  background: #0d7a4a;
  color: #fff;
}

.game-page-disclaimer {
  padding: 1.5rem;
  background: rgba(45, 212, 168, 0.06);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-lg);
}

.game-page-disclaimer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.game-page-disclaimer p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.game-page-disclaimer a {
  color: var(--accent-emerald);
}

@media (max-width: 600px) {
  .play-game__banner {
    height: 8rem;
  }

  .play-game__hud {
    grid-template-columns: 1fr;
  }

  .slot-reel {
    width: 4.25rem;
    height: 5.25rem;
  }

  .slot-reel__symbol .svg-inline--fa {
    height: 1.5rem;
    width: 1.5rem;
  }

  .roulette-choices {
    grid-template-columns: repeat(2, 1fr);
  }

  .roulette-wheel-wrap {
    width: 10.5rem;
    height: 10.5rem;
  }

  .roulette-ball {
    transform-origin: 50% 4.9rem;
  }

  .bj-card {
    width: 3.5rem;
    height: 5rem;
  }
}
