:root {
  --ink: #122028;
  --ink-soft: #3a4d58;
  --mist: #eef5f4;
  --paper: #f7fbfa;
  --teal: #0f7a6c;
  --teal-deep: #0a554c;
  --mint: #7fd6c2;
  --coral: #d76a4d;
  --line: rgba(18, 32, 40, 0.1);
  --shadow: 0 24px 60px rgba(15, 55, 48, 0.14);
  --radius-md: 18px;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(127, 214, 194, 0.28), transparent 55%),
    radial-gradient(900px 420px at 90% 0%, rgba(215, 106, 77, 0.12), transparent 50%),
    linear-gradient(180deg, #f4faf8 0%, var(--paper) 35%, #edf4f2 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: linear-gradient(90deg, #0d3f38, #145a50 45%, #1a6b5f);
  color: #e8fff9;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.7rem 0;
  text-align: center;
}

.topbar-text i {
  color: var(--mint);
  flex-shrink: 0;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(247, 251, 250, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  padding: 0.85rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 70%);
  box-shadow: 0 10px 24px rgba(15, 122, 108, 0.28);
  flex-shrink: 0;
}

.brand-mark i {
  font-size: 1.15rem;
  line-height: 1;
  color: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.custom-toggler {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: #fff;
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(15, 122, 108, 0.18);
}

.toggler-bars {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggler-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--teal-deep);
  background: rgba(15, 122, 108, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #c4553a);
  box-shadow: 0 10px 24px rgba(215, 106, 77, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(215, 106, 77, 0.34);
}

.hero {
  position: relative;
  min-height: clamp(540px, 88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 28, 26, 0.78) 8%, rgba(8, 28, 26, 0.42) 48%, rgba(8, 28, 26, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 22, 24, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 4.5rem 3.5rem;
}

.hero-panel {
  max-width: 680px;
  color: #f4fffb;
  padding: 1.6rem 0 0.4rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.1rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(244, 255, 251, 0.88);
  max-width: 54ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary-glow,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary-glow {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #129987);
  box-shadow: 0 14px 30px rgba(15, 122, 108, 0.35);
}

.btn-primary-glow:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.games-section {
  background:
    linear-gradient(180deg, transparent, rgba(217, 232, 227, 0.45) 18%, rgba(217, 232, 227, 0.45) 82%, transparent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-card-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0d1c1a;
}

.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card-media img {
  transform: scale(1.05);
}

.game-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.game-card-body h3 {
  font-size: 1.28rem;
  margin: 0;
}

.game-card-body h3 a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.game-card-body h3 a:hover {
  color: var(--teal);
}

.game-card-body p {
  color: var(--ink-soft);
  margin: 0 0 0.5rem;
  flex: 1;
}

.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: auto;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #129987);
  box-shadow: 0 12px 24px rgba(15, 122, 108, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-play-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 122, 108, 0.34);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--teal-deep);
}

.text-link:hover {
  color: var(--coral);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: start;
}

.about-copy h2,
.community-layout h2,
.disclaimer-intro h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.about-copy p,
.community-layout p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about-points {
  display: grid;
  gap: 1rem;
}

.info-tile {
  padding: 1.35rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--teal-deep);
  background: linear-gradient(160deg, #dff7f1, #c7ebe2);
}

.info-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.info-tile p {
  margin: 0;
  color: var(--ink-soft);
}

.experience-section {
  background:
    linear-gradient(180deg, transparent, rgba(217, 232, 227, 0.4) 20%, rgba(217, 232, 227, 0.4) 80%, transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  padding: 1.7rem 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.step-card h3 {
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.disclaimer-panel {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: 28px;
  color: #f4fffb;
  background:
    linear-gradient(125deg, rgba(13, 63, 56, 0.97), rgba(18, 90, 78, 0.93)),
    var(--teal-deep);
  box-shadow: var(--shadow);
}

.eyebrow.light {
  color: var(--mint);
}

.disclaimer-intro {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.disclaimer-intro p {
  color: rgba(244, 255, 251, 0.86);
  font-size: 1.05rem;
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.disclaimer-item {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.disclaimer-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(127, 214, 194, 0.18);
  color: var(--mint);
}

.disclaimer-item h3 {
  font-size: 1.1rem;
  color: #fff;
}

.disclaimer-item p {
  margin: 0;
  color: rgba(244, 255, 251, 0.82);
  font-size: 0.98rem;
}

.community-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.3rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn-solid,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #129987);
}

.btn-solid:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--teal-deep);
  border: 1px solid rgba(15, 122, 108, 0.28);
  background: transparent;
}

.btn-outline:hover {
  color: var(--teal-deep);
  background: rgba(15, 122, 108, 0.08);
}

.community-list {
  display: grid;
  gap: 0.9rem;
}

.community-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(15, 122, 108, 0.06);
  font-weight: 600;
}

.community-list i {
  margin-top: 0.2rem;
  color: var(--teal);
}

.site-footer {
  margin-top: 0;
  padding: 3.8rem 0 1.8rem;
  background: #0d1c1a;
  color: rgba(234, 246, 242, 0.78);
}

.footer-intro {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.footer-intro .brand-logo {
  margin-bottom: 1rem;
}

.footer-intro p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name,
.footer-brand .brand-tag,
.footer-intro .brand-name {
  color: #fff;
}

.footer-intro .brand-tag {
  color: rgba(234, 246, 242, 0.55);
}

.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-badge {
  display: inline-flex;
  margin-top: 1.1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  transition: transform 0.2s ease;
}

.footer-badge:hover {
  transform: translateY(-2px);
}

.footer-badge img {
  width: 140px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.footer-disclaimers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note i {
  margin-top: 0.2rem;
  color: var(--mint);
}

.footer-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-note strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.4rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.brand-logo.compact .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .navbar-nav {
    gap: 0.2rem;
  }

  .nav-cta {
    margin: 0.45rem 0 0;
    width: 100%;
  }

  .footer-grid,
  .games-grid,
  .about-layout,
  .steps-grid,
  .disclaimer-grid,
  .community-layout,
  .footer-disclaimers {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-block: 3.2rem 2.6rem;
  }
}

@media (max-width: 575.98px) {
  .topbar-text {
    align-items: flex-start;
    text-align: left;
    font-size: 0.82rem;
  }

  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid .game-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  height: 100%;
}

.age-gate,
.age-restrict {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate.is-visible,
.age-restrict.is-visible {
  display: flex;
}

.age-gate-backdrop,
.age-restrict-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 24, 0.28);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.age-gate-dialog,
.age-restrict-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 1.7rem 1.5rem 1.5rem;
  border-radius: 24px;
  background: rgba(247, 251, 250, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(15, 55, 48, 0.22);
  text-align: center;
}

.age-gate-dialog h2,
.age-restrict-dialog h2 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.age-gate-dialog p,
.age-restrict-dialog p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.age-gate-icon,
.age-restrict-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  font-size: 1.25rem;
  box-shadow: 0 12px 24px rgba(15, 122, 108, 0.28);
}

.age-restrict-icon {
  background: linear-gradient(145deg, var(--coral), #c4553a);
  box-shadow: 0 12px 24px rgba(215, 106, 77, 0.28);
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.age-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.age-btn:hover {
  transform: translateY(-1px);
}

.age-btn.accept {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #129987);
  box-shadow: 0 10px 22px rgba(15, 122, 108, 0.28);
}

.age-btn.decline,
.age-btn.retry {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(13, 28, 26, 0.96);
  color: rgba(234, 246, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cookie-consent-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent-inner a {
  color: var(--mint);
  font-weight: 700;
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #129987);
  cursor: pointer;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 4.2rem) 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.page-hero p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-content {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.content-block {
  max-width: 820px;
}

.content-block h2 {
  font-size: 1.55rem;
  margin-top: 2rem;
}

.content-block p,
.content-block li {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.content-block ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding: 0;
}

.content-block li {
  position: relative;
  padding-left: 1.2rem;
}

.content-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
}

.faq-item {
  padding: 1.3rem 1.35rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-panel {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.contact-card {
  padding: 1.4rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 1.25rem;
}

.contact-card a {
  color: var(--teal-deep);
  font-weight: 700;
}

.game-stage-wrap {
  margin: 0 0 2rem;
}

.game-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(127, 214, 194, 0.22), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(215, 106, 77, 0.18), transparent 35%),
    linear-gradient(160deg, #0d1c1a, #14352f 55%, #0f2420);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  color: #eefaf6;
}

.game-stage-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.game-stage-top h2 {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
}

.game-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 700;
}

.game-pill strong {
  color: var(--mint);
}

.game-notice {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 250, 246, 0.84);
  font-size: 0.95rem;
}

.game-disclaimer-box {
  margin-top: 1.5rem;
  padding: 1.4rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.game-disclaimer-box h2 {
  font-size: 1.25rem;
}

.game-disclaimer-box p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.game-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.slot-machine {
  display: grid;
  gap: 1rem;
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.18));
  border: 1px solid rgba(127, 214, 194, 0.25);
  box-shadow: inset 0 0 40px rgba(127, 214, 194, 0.08), 0 0 30px rgba(15, 122, 108, 0.25);
}

.slot-reel {
  aspect-ratio: 0.85;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(127, 214, 194, 0.25), transparent 55%),
    linear-gradient(160deg, #1a3d38, #102824);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--mint);
  text-shadow: 0 0 18px rgba(127, 214, 194, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-reel.is-spinning {
  animation: reelPulse 0.18s linear infinite;
}

.slot-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.game-action-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1aa894, #0f7a6c);
  box-shadow: 0 0 0 1px rgba(127, 214, 194, 0.25), 0 12px 28px rgba(15, 122, 108, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-action-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(127, 214, 194, 0.35), 0 16px 32px rgba(15, 122, 108, 0.4);
}

.game-action-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.game-action-btn.secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.slot-result {
  min-height: 1.5rem;
  font-weight: 700;
  color: var(--mint);
}

.bj-table {
  display: grid;
  gap: 1.2rem;
}

.bj-row {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bj-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: rgba(238, 250, 246, 0.8);
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 96px;
}

.playing-card {
  width: 68px;
  height: 96px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff, #e8f7f3);
  color: #122028;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 0 18px rgba(127, 214, 194, 0.15);
  animation: cardIn 0.35s ease;
}

.playing-card.red {
  color: #c4553a;
}

.playing-card.back {
  background: linear-gradient(145deg, #0f7a6c, #0a554c);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.roulette-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.roulette-wheel-wrap {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    conic-gradient(
      #0f7a6c 0deg 30deg,
      #102824 30deg 60deg,
      #d76a4d 60deg 90deg,
      #102824 90deg 120deg,
      #0f7a6c 120deg 150deg,
      #102824 150deg 180deg,
      #7fd6c2 180deg 210deg,
      #102824 210deg 240deg,
      #d76a4d 240deg 270deg,
      #102824 270deg 300deg,
      #0f7a6c 300deg 330deg,
      #102824 330deg 360deg
    );
  border: 6px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 40px rgba(127, 214, 194, 0.28), inset 0 0 40px rgba(0, 0, 0, 0.35);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.roulette-center {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #1b4a43, #0d1c1a);
  border: 2px solid rgba(127, 214, 194, 0.35);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 0 24px rgba(15, 122, 108, 0.35);
}

.roulette-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--mint);
  filter: drop-shadow(0 0 8px rgba(127, 214, 194, 0.7));
  z-index: 2;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.chip-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at 30% 30%, #2a6b61, #12352f);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(15, 122, 108, 0.3);
}

.chip-btn.is-active {
  border-style: solid;
  border-color: var(--mint);
  box-shadow: 0 0 22px rgba(127, 214, 194, 0.45);
}

.bet-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.bet-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.bet-btn.is-active {
  background: rgba(127, 214, 194, 0.18);
  border-color: rgba(127, 214, 194, 0.45);
  box-shadow: 0 0 18px rgba(127, 214, 194, 0.2);
}

@keyframes reelPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .roulette-layout {
    grid-template-columns: 1fr;
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .age-gate-actions {
    grid-template-columns: 1fr;
  }

  .playing-card {
    width: 56px;
    height: 80px;
    font-size: 1rem;
  }
}
