:root {
  --bg: #fff8fb;
  --bg-soft: #fff1f7;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(255, 244, 249, 0.95);
  --line: rgba(196, 92, 140, 0.14);
  --line-strong: rgba(196, 92, 140, 0.24);
  --text: #2f1630;
  --muted: #7e627d;
  --accent: #eb5ea8;
  --accent-strong: #d7408c;
  --accent-warm: #ff94c4;
  --accent-coral: #ff6fae;
  --accent-pink: #da4589;
  --success: #2aa275;
  --danger: #d25779;
  --shadow: 0 24px 64px rgba(203, 126, 160, 0.18);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 7.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 177, 209, 0.38), transparent 34%),
    radial-gradient(circle at 88% 6%, rgba(255, 212, 226, 0.55), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(235, 94, 168, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #fff5fa 48%, #fff1f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(215, 96, 148, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 96, 148, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.85));
  pointer-events: none;
  opacity: 0.3;
}

body::after {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 177, 209, 0.34), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(255, 205, 225, 0.32), transparent 24%),
    radial-gradient(circle at 72% 74%, rgba(235, 94, 168, 0.16), transparent 22%),
    radial-gradient(circle at 24% 82%, rgba(255, 232, 242, 0.5), transparent 28%);
  filter: blur(22px);
  opacity: 0.95;
  pointer-events: none;
  animation: ambientGlowShift 22s ease-in-out infinite alternate;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent-pink);
  color: #ffffff;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading > * + * {
  margin-top: 0.95rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  align-self: start;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-copy,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.eyebrow {
  color: var(--accent);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -30%;
  width: 38%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg) translateX(-180%);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  animation: buttonSheen 0.95s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-coral) 50%, var(--accent-pink));
  box-shadow: 0 16px 36px rgba(235, 79, 150, 0.22);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(235, 94, 168, 0.1);
  border-color: rgba(215, 64, 140, 0.3);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 251, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(206, 144, 175, 0.1);
}

main,
.site-footer,
.age-gate {
  position: relative;
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 14px;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  color: #6d4f6c;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
}

.nav-toggle-bar {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.hero {
  padding: clamp(2.8rem, 5vw, 4.4rem) 0 clamp(3.4rem, 5vw, 4.8rem);
  position: relative
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(420px, 62vh, 620px);
  padding: clamp(3rem, 7vw, 5rem);
  border: 1px solid rgba(215, 64, 140, 0.16);
  border-radius: 40px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.56)),
    linear-gradient(135deg, rgba(255, 244, 249, 0.3), rgba(255, 232, 242, 0.14));
  backdrop-filter: blur(5px);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  box-shadow: 0 28px 70px rgba(203, 126, 160, 0.16);
  animation: heroFloat 8.5s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url(images/hero-lounge-bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shell::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(235, 94, 168, 0.14), transparent 26%);
  animation: heroAuraShift 13s ease-in-out infinite alternate;
}

.hero-shell::after {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
  gap: 1.2rem;
}

.hero-title {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-subtitle {
  width: min(100%, 980px);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.16rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.hero-points,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.point-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  min-height: 152px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 241, 247, 0.88));
  box-shadow: var(--shadow);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.point-card::before {
  content: "";
  position: absolute;
  inset: auto -10% 74% 30%;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 94, 168, 0.14), transparent 68%);
}

.point-label {
  position: relative;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.point-value {
  position: relative;
  display: block;
  margin-top: 0.85rem;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.point-card p {
  position: relative;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.hero-disclaimer,
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chips-row {
  margin-bottom: 1.5rem;
}

.disclaimer-chip,
.meta-chip,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  color: var(--accent);
}

.hero-visual,
.showcase-panel {
  position: relative;
  padding: 1.55rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(235, 94, 168, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 177, 209, 0.28), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 242, 247, 0.92));
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.hero-visual::after,
.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(215, 64, 140, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.showcase-panel .visual-topline {
  margin-bottom: 1.5rem;
}

.visual-topline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.visual-topline strong {
  display: block;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.visual-topline p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.visual-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.game-mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(206, 144, 175, 0.12);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.game-mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.game-mini-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.game-mini-content h3 {
  margin: 0 0 0.4rem;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.game-mini-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-banner {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  max-width: 280px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(206, 144, 175, 0.16);
}

.hero-banner > * + * {
  margin-top: 0.7rem;
}

.hero-banner strong {
  display: block;
  margin-top: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.grid-3,
.policy-grid,
.catalog-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.info-card,
.policy-card,
.game-card,
.contact-card,
.contact-form,
.legal-article,
.page-hero-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 249, 0.92));
  box-shadow: var(--shadow);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}

.info-card,
.policy-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.info-card > * + *,
.policy-card > * + * {
  margin-top: 0.9rem;
}

.info-card::before,
.policy-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 60%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235, 94, 168, 0.14), transparent 70%);
}

.info-card h3,
.policy-card h3,
.contact-card h2,
.contact-form h2 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.info-card p,
.policy-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card p + p {
  margin-top: 0.95rem;
}

.story-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.story-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.story-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 248, 0.92));
  box-shadow: var(--shadow);
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.story-panel > * + * {
  margin-top: 1rem;
}

.story-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.story-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.story-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  line-height: 1.7;
}

.story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 148, 196, 0.3), rgba(235, 94, 168, 0.18));
  color: var(--text);
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-weight: 700;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.faq-item[open] {
  background: linear-gradient(180deg, rgba(255, 245, 249, 0.98), rgba(255, 236, 244, 0.96));
}

.faq-item summary {
  position: relative;
  padding: 1.25rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.3rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-card,
.contact-form {
  align-self: start;
  padding: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-card > * + *,
.contact-form > * + * {
  margin-top: 1.35rem;
}

.contact-card ul {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0.15rem 0 0;
  list-style: none;
}

.contact-card li {
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  line-height: 1.7;
}

.contact-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 1.35rem;
  margin-top: 0;
}

.field {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

input,
textarea,
select {
  width: 100%;
  padding: 1.05rem 1.15rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(126, 98, 125, 0.78);
}

textarea {
  min-height: 220px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(215, 64, 140, 0.45);
  box-shadow: 0 0 0 4px rgba(235, 94, 168, 0.14);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-top: 0.15rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.checkbox-row label {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 0.83rem;
  line-height: 1.4;
}

.field-error:empty {
  display: none;
}

.form-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 52ch;
}

.contact-form h2, .contact-card h2 {
  margin: 10px 0
}

.form-status {
  min-height: 0;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.contact-form .button {
  margin-top: 0.1rem;
  min-width: 240px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.page-hero {
  padding: clamp(2.8rem, 5vw, 4.5rem) 0 2.6rem;
}

.page-hero-panel {
  padding: 1.7rem;
  display: grid;
  gap: 1rem;
}

.page-hero-panel .section-title {
  margin-top: 0;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
}

.page-hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-grid {
  padding-bottom: 0.25rem;
}

.game-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.game-card-body {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  flex: 1 1 auto;
  padding: 1.4rem 1.4rem 1.55rem;
}

.game-card-body h2,
.game-card-body h3 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.game-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.game-card-body .button {
  margin-top: auto;
}

.legal-shell {
  padding-top: 0.4rem;
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.legal-article {
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  line-height: 1.9;
}

.legal-article h2 {
  margin: 2rem 0 0.75rem;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.42rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article ul {
  padding-left: 1.2rem;
}

.legal-article ul,
.legal-article p + p,
.legal-article p + ul,
.legal-article ul + p {
  margin-top: 0.95rem;
}

.notice-panel {
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(235, 94, 168, 0.2);
  border-radius: 20px;
  background: rgba(255, 191, 220, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.notice-panel p {
  margin: 0;
  color: #7c355d;
}

.iframe-stage {
  width: 100%;
  padding: 0;
  background: #fff0f7;
}

.game-frame {
  display: block;
  width: 100%;
  min-height: calc(100vh - 210px);
  height: 78vh;
  border: 0;
  background: #fff4f8;
}

.site-footer {
  margin-top: clamp(4rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  background: rgba(255, 244, 249, 0.92);
}

.game-page .site-footer {
  margin-top: 0;
}

.footer-inner {
  padding: 2.7rem 0 1.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 1.25rem;
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.footer-brand p,
.footer-column p,
.footer-column li,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
}

.footer-column h2,
.footer-column h3,
.footer-brand strong {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-brand p {
  margin: 0;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--accent-strong);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-brand .brand {
  margin-bottom: 0;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 243, 248, 0.78);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.age-gate.is-active {
  opacity: 1;
  visibility: visible;
}

.age-gate-card {
  position: relative;
  overflow: hidden;
  width: min(560px, 100%);
  padding: 1.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(235, 94, 168, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 177, 209, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 249, 0.96));
  box-shadow: 0 32px 90px rgba(206, 144, 175, 0.22);
  animation: modalDrift 10s ease-in-out infinite;
}

.age-gate-card > * + * {
  margin-top: 1rem;
}

.age-gate-card h2 {
  margin: 0;
  font-family: "Oxanium", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.age-gate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.age-gate-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.age-gate-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  line-height: 1.7;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0;
}

.age-gate-note {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-glow,
.ambient-float {
  display: block;
  position: absolute;
  pointer-events: none;
}

.ambient-shell {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.ambient-shell .ambient-float {
  position: relative;
}

.ambient-glow {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.54;
  mix-blend-mode: screen;
}

.ambient-glow-one {
  top: 12%;
  left: -4%;
  width: min(28vw, 360px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 186, 216, 0.56), transparent 70%);
  animation: glowOrbitOne 18s ease-in-out infinite alternate;
}

.ambient-glow-two {
  right: -5%;
  top: 34%;
  width: min(26vw, 320px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(235, 94, 168, 0.28), transparent 72%);
  animation: glowOrbitTwo 22s ease-in-out infinite alternate;
}

.ambient-glow-three {
  left: 42%;
  bottom: -10%;
  width: min(24vw, 300px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 233, 241, 0.8), transparent 72%);
  animation: glowOrbitThree 20s ease-in-out infinite alternate;
}

.ambient-float {
  opacity: 0.58;
  will-change: transform;
}

.ambient-coin {
  width: clamp(52px, 5.6vw, 96px);
  aspect-ratio: 1;
  background: url("images/floating-coin-gold.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 30px rgba(235, 155, 76, 0.22));
}

.ambient-pad {
  width: clamp(78px, 9.5vw, 156px);
  aspect-ratio: 1.45 / 1;
  background: url("images/floating-gamepad-pink.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 28px rgba(222, 95, 149, 0.14));
}

.ambient-token {
  width: clamp(52px, 5.4vw, 92px);
  aspect-ratio: 1;
  background: url("images/floating-star-token.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 26px rgba(235, 94, 168, 0.18));
}

.ambient-spark {
  width: clamp(24px, 2.6vw, 42px);
  aspect-ratio: 1;
  opacity: 0.48;
  background: url("images/floating-spark-cluster.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(235, 94, 168, 0.16));
}

.ambient-item-a {
  top: 9%;
  left: 4%;
}

.ambient-item-b {
  top: 16%;
  right: 11%;
}

.ambient-item-c {
  top: 39%;
  left: 8%;
}

.ambient-item-d {
  top: 52%;
  right: 6%;
}

.ambient-item-e {
  bottom: 14%;
  left: 14%;
}

.ambient-item-f {
  bottom: 11%;
  right: 18%;
}

.ambient-item-g {
  top: 24%;
  left: 32%;
}

.ambient-item-h {
  top: 63%;
  right: 30%;
}

.ambient-item-i {
  bottom: 22%;
  left: 48%;
}

.ambient-item-j {
  top: 12%;
  right: 33%;
}

.ambient-item-a .ambient-float {
  animation: driftCoinA 24s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.ambient-item-b .ambient-float {
  animation: driftPadA 22s ease-in-out infinite;
}

.ambient-item-c .ambient-float {
  animation: driftCoinB 19s ease-in-out infinite;
}

.ambient-item-d .ambient-float {
  animation: driftCoinC 26s ease-in-out infinite;
}

.ambient-item-e .ambient-float {
  animation: driftPadB 23s ease-in-out infinite;
}

.ambient-item-f .ambient-float {
  animation: driftCoinD 18s ease-in-out infinite;
}

.ambient-item-g .ambient-float {
  animation: driftPixelA 14s ease-in-out infinite;
}

.ambient-item-h .ambient-float {
  animation: driftPixelB 16s ease-in-out infinite;
}

.ambient-item-i .ambient-float {
  animation: driftPixelC 18s ease-in-out infinite;
}

.ambient-item-j .ambient-float {
  animation: driftPixelD 15s ease-in-out infinite;
}

.game-page .ambient-scene {
  opacity: 0.72;
}

.point-card:hover,
.point-card:focus-within,
.hero-visual:hover,
.showcase-panel:hover,
.game-mini-card:hover,
.info-card:hover,
.policy-card:hover,
.game-card:hover,
.contact-card:hover,
.contact-form:hover,
.legal-article:hover,
.page-hero-panel:hover,
.story-media:hover,
.story-panel:hover,
.faq-item:hover,
.notice-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 64, 140, 0.26);
  box-shadow: 0 30px 60px rgba(206, 144, 175, 0.2);
}

.hero-actions .button:first-child {
  animation: ctaPulse 4.8s ease-in-out infinite;
}

@keyframes ambientGlowShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, -1.5%, 0) scale(1.08);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes heroAuraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }
  100% {
    transform: translate3d(1.4%, -1.4%, 0) scale(1.03);
    opacity: 1;
  }
}

@keyframes buttonSheen {
  0% {
    transform: rotate(18deg) translateX(-180%);
  }
  100% {
    transform: rotate(18deg) translateX(500%);
  }
}

@keyframes modalDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes glowOrbitOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(12%, 8%, 0) scale(1.08);
  }
}

@keyframes glowOrbitTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-10%, -8%, 0) scale(1.06);
  }
}

@keyframes glowOrbitThree {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(8%, -10%, 0) scale(1.04);
  }
}

@keyframes driftCoinA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  30% {
    transform: translate3d(0, -18px, 0) rotate(95deg);
  }
  70% {
    transform: translate3d(0, 14px, 0) rotate(220deg);
  }
}

@keyframes driftPadA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }
  35% {
    transform: translate3d(0, 16px, 0) rotate(6deg);
  }
  65% {
    transform: translate3d(0, -14px, 0) rotate(-10deg);
  }
}

@keyframes driftCoinB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, -24px, 0) rotate(180deg) scale(1.08);
  }
}

@keyframes driftCoinC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(0, -22px, 0) rotate(72deg);
  }
  75% {
    transform: translate3d(0, 16px, 0) rotate(214deg);
  }
}

@keyframes driftPadB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  45% {
    transform: translate3d(0, -22px, 0) rotate(-4deg);
  }
  70% {
    transform: translate3d(0, 10px, 0) rotate(12deg);
  }
}

@keyframes driftCoinD {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 16px, 0) rotate(-180deg);
  }
}

@keyframes driftPixelA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(45deg);
  }
}

@keyframes driftPixelB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, 12px, 0) rotate(-42deg) scale(1.12);
  }
}

@keyframes driftPixelC {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(32deg);
  }
}

@keyframes driftPixelD {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(0, 10px, 0) rotate(-32deg) scale(1.08);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(235, 79, 150, 0.22);
  }
  50% {
    box-shadow: 0 22px 46px rgba(235, 79, 150, 0.34);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .hero-shell {
    min-height: clamp(400px, 56vh, 540px);
  }

  .story-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    margin-left: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 251, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-points,
  .promise-grid,
  .grid-3,
  .catalog-grid,
  .policy-grid,
  .form-grid,
  .visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 2.3rem 1.35rem;
    border-radius: 30px;
  }

  .ambient-pad {
    width: clamp(62px, 18vw, 96px);
  }

  .ambient-coin {
    width: clamp(42px, 12vw, 64px);
  }

  .ambient-token {
    width: clamp(42px, 12vw, 62px);
  }

  .ambient-spark {
    width: clamp(20px, 6vw, 32px);
  }

  .hero-shell::after {
    inset: 0.7rem;
    border-radius: 24px;
  }

  .hero-banner {
    position: static;
    max-width: none;
    margin-top: 1.35rem;
  }

  .game-frame {
    min-height: calc(100vh - 180px);
    height: 82vh;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-title,
  .section-title,
  .page-hero-panel .section-title {
    letter-spacing: 0.02em;
  }

  .hero-shell {
    min-height: 380px;
    padding: 2rem 1rem;
  }

  .ambient-item-b,
  .ambient-item-e,
  .ambient-item-j {
    display: none;
  }

  .hero-copy p,
  .hero-subtitle,
  .section-copy,
  .section-heading p {
    font-size: 0.98rem;
  }

  .point-card,
  .contact-card,
  .contact-form,
  .story-panel,
  .legal-article,
  .page-hero-panel {
    padding: 1.2rem;
  }

  .hero-visual {
    padding: 1rem;
  }

  .game-card-body {
    padding: 1.15rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .age-gate-actions {
    flex-direction: column;
  }

  .game-mini-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-card-body,
  .contact-card,
  .contact-form,
  .story-panel {
    gap: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .ambient-scene {
    display: none;
  }
}
