:root {
  --ink: #080611;
  --ink-soft: #120a22;
  --panel: rgba(18, 10, 34, 0.72);
  --gold: #e8c98a;
  --gold-bright: #f6e4b8;
  --violet: #b79cff;
  --cyan: #7ee7f3;
  --text: #f6f1ea;
  --muted: #b7a9c9;
  --line: rgba(232, 201, 138, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-locked,
body.gate-locked {
  overflow: hidden;
  height: 100%;
}

html.gate-locked {
  overflow: hidden;
}

body.gate-locked .page {
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

h1 {
  font-size: clamp(38px, 5.4vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(26px, 3.2vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 28px);
}

h4,
h5,
h6 {
  font-size: clamp(16px, 1.6vw, 22px);
}

.page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 8% -10%, rgba(183, 156, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 8%, rgba(126, 231, 243, 0.12), transparent 50%),
    radial-gradient(700px 400px at 70% 100%, rgba(232, 201, 138, 0.1), transparent 45%),
    linear-gradient(180deg, #0c0818 0%, var(--ink) 42%, #0a0714 100%);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
}

.topbar {
  position: relative;
  z-index: 4;
  background: linear-gradient(90deg, #140c24 0%, #1a1230 50%, #120a1e 100%);
  border-bottom: 1px solid var(--line);
}

.topbar-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.topbar-copy i {
  color: var(--gold);
  font-size: 14px;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 17, 0.35);
  backdrop-filter: blur(16px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #1a1208;
  background:
    linear-gradient(145deg, var(--gold-bright), var(--gold) 45%, #c9a15b);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 10px 24px rgba(232, 201, 138, 0.28);
  font-size: 18px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand-tag {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(232, 201, 138, 0.1);
  box-shadow: 0 0 0 1px var(--line) inset;
}

.nav-toggle,
.nav-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-bright);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100%;
  background:
    linear-gradient(180deg, #161028 0%, #0c0818 100%);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 28px;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 0;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.mobile-nav-links a:hover {
  background: rgba(232, 201, 138, 0.1);
  color: var(--gold-bright);
}

.mobile-nav-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.mobile-nav-foot i {
  color: var(--gold);
  margin-right: 6px;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 64px 0 88px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-orb-one {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 40px;
  background: rgba(183, 156, 255, 0.18);
}

.hero-orb-two {
  width: 340px;
  height: 340px;
  right: -60px;
  bottom: -80px;
  background: rgba(232, 201, 138, 0.12);
}

.hero-copy {
  max-width: 620px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 20px;
}

.hero h1 span {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-sheen,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-sheen {
  color: #1a1208;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #c9a15b);
  box-shadow: 0 12px 30px rgba(232, 201, 138, 0.28);
}

.btn-sheen:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 10, 34, 0.7);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.hero-chips i {
  color: var(--cyan);
}

.hero-studios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.studio-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.studio-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(232, 201, 138, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.studio-card h2 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.studio-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  margin: 0;
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 80px rgba(183, 156, 255, 0.18);
  background: #120a22;
}

.hero-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: floaty 8s ease-in-out infinite;
}

.hero-seal {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 6, 17, 0.72);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  backdrop-filter: blur(12px);
}

.hero-seal i {
  font-size: 12px;
  margin-bottom: 2px;
}

.hero-seal strong {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.hero-seal span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 6, 17, 0.72);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-caption i {
  color: var(--cyan);
}

@keyframes floaty {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.06) translateY(-8px);
  }
}

.games-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 96px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 span {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 201, 138, 0.45);
}

.game-media {
  display: block;
  overflow: hidden;
  background: #120a22;
}

.game-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-media img {
  transform: scale(1.05);
}

.game-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}

.game-kind {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-body h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.game-body h3 a {
  background: linear-gradient(90deg, var(--text), var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.game-body h3 a:hover {
  background: linear-gradient(90deg, var(--gold-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.game-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.game-play {
  margin-top: auto;
  width: 100%;
}

.story-section,
.flow-section,
.community-section,
.disclaimer-section {
  position: relative;
  z-index: 2;
  padding: 24px 0 96px;
}

.story-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.story-copy .btn-ghost {
  margin-top: 8px;
}

.info-card,
.value-card,
.notice-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.info-card i,
.value-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(232, 201, 138, 0.12);
  color: var(--gold);
  font-size: 18px;
}

.info-card h3,
.value-card h3,
.notice-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.info-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.notice-card {
  box-shadow: var(--shadow);
}

.notice-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(232, 201, 138, 0.12);
  color: var(--gold);
  font-size: 20px;
}

.notice-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.notice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--gold-bright);
  font-weight: 600;
}

.notice-link:hover {
  color: var(--cyan);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 10, 34, 0.72), rgba(8, 6, 17, 0.92));
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-about {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.footer-aware {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.footer-aware img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-footer h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--gold-bright);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-notes article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(8, 6, 17, 0.45);
}

.footer-notes h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 20px;
}

.footer-notes i {
  color: var(--gold);
  font-size: 16px;
}

.footer-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 42px 0 64px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-frame {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 21px;
  }

  .hero-studios {
    grid-template-columns: 1fr;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-sheen,
  .btn-ghost {
    width: 100%;
  }

  .hero-seal {
    width: 74px;
    height: 74px;
  }

  .value-grid,
  .footer-notes {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.age-gate,
.age-restrict {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 6, 17, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.age-gate.is-open,
.age-restrict.is-open {
  display: flex;
}

.age-card {
  width: min(420px, 100%);
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(16, 10, 32, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-card i {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 12px;
}

.age-card h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.age-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.age-actions {
  display: flex;
  gap: 10px;
}

.age-actions button,
.cookie-actions button {
  flex: 1;
  min-height: 48px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.age-yes,
.cookie-yes {
  color: #1a1208;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #c9a15b);
}

.age-no,
.cookie-no {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line) !important;
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(16, 10, 32, 0.94);
  box-shadow: var(--shadow);
}

.cookie-bar.is-open {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-bar a {
  color: var(--gold-bright);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  padding: 0 16px;
  min-width: 140px;
}

.inner-hero {
  position: relative;
  z-index: 2;
  padding: 56px 0 28px;
}

.inner-hero .section-kicker {
  margin-bottom: 16px;
}

.inner-hero h1 {
  margin: 0 0 16px;
}

.inner-hero h1 span {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.inner-body {
  position: relative;
  z-index: 2;
  padding: 12px 0 96px;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.prose p {
  margin: 0 0 18px;
}

.prose h2 {
  margin: 32px 0 14px;
}

.prose h3 {
  margin: 24px 0 10px;
  font-size: 24px;
}

.prose ul {
  margin: 0 0 18px;
  padding-left: 18px;
  list-style: disc;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-bright);
  font-size: 18px;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.faq-item button i {
  color: var(--gold);
}

.faq-item .faq-a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.faq-item.is-open .faq-a {
  display: block;
}

.play-stage {
  margin: 0 0 42px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(232, 201, 138, 0.16), transparent 60%),
    rgba(16, 10, 32, 0.78);
  box-shadow: var(--shadow);
}

.play-status {
  min-height: 28px;
  margin: 16px 0 0;
  text-align: center;
  color: var(--gold-bright);
  font-size: 16px;
  font-weight: 600;
}

.slot-machine {
  max-width: 560px;
  margin: 0 auto;
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 6, 17, 0.72);
  box-shadow: 0 0 40px rgba(183, 156, 255, 0.16) inset;
}

.slot-reel {
  height: 132px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #120a22;
  position: relative;
}

.slot-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 18px 18px rgba(8, 6, 17, 0.45), inset 0 -18px 18px rgba(8, 6, 17, 0.45);
}

.slot-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.slot-symbol {
  height: 132px;
  display: grid;
  place-items: center;
}

.slot-symbol img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 24px rgba(232, 201, 138, 0.28);
}

.slot-machine.is-glow .slot-window {
  box-shadow: 0 0 48px rgba(232, 201, 138, 0.35), 0 0 80px rgba(126, 231, 243, 0.18);
}

.play-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.salon-table {
  display: grid;
  gap: 22px;
}

.hand-row h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 168px;
}

.playing-card {
  width: 112px;
  height: 158px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f1e6, #efe4cf);
  color: #2a1a12;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  animation: dealin 0.45s ease;
}

.playing-card.is-red {
  color: #8a2a32;
}

.playing-card strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.playing-card span {
  font-size: 22px;
  align-self: flex-end;
}

.playing-card.is-back {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.playing-card.is-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheel-stage {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.wheel-frame {
  position: relative;
  width: min(360px, 86vw);
  height: min(360px, 86vw);
}

.wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(232, 201, 138, 0.28),
    0 0 60px rgba(183, 156, 255, 0.28);
}

.wheel-pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-bright);
  font-size: 22px;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.tone-picks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tone-picks button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
}

.tone-picks button.is-on {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(232, 201, 138, 0.25);
}

@keyframes dealin {
  from {
    transform: translateY(12px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .cookie-bar,
  .age-actions,
  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions button,
  .age-actions button {
    width: 100%;
  }

  .playing-card {
    width: 92px;
    height: 132px;
  }
}
