
:root {
  --cream: #fff5f9;
  --cream-2: #ffeef6;
  --paper: #ffffff;
  --ink: #3a2340;
  --ink-soft: #6f5878;
  --muted: #8b7794;

  --pink: #ff4f9a;
  --pink-dark: #cf1f6d;
  --pink-soft: #ffd9ea;
  --purple: #7a3fa8;
  --purple-deep: #45215e;
  --mint: #2fbd6f;
  --sun: #ffc53d;

  --line: #f0d9e6;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 12px 34px rgba(159, 47, 110, .12);
  --shadow-lg: 0 24px 60px rgba(122, 63, 168, .18);

  --font-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --font-ui: 'Fredoka', system-ui, sans-serif;
  --font-text: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--pink-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--purple-deep);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--tint { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section--paper { background: var(--paper); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); max-width: 68ch; }
.center { text-align: center; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-soft);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 245, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 44px; height: 44px; }
.brand b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--purple-deep);
  line-height: 1;
}
.brand span { display: block; font-size: .72rem; color: var(--muted); font-family: var(--font-ui); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
}
.nav a:hover, .nav a[aria-current='page'] { background: var(--pink-soft); color: var(--pink-dark); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 20px;
  color: var(--purple-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, filter .2s;
}
.btn--primary {
  background: linear-gradient(180deg, #ff8ec0, var(--pink) 55%, var(--pink-dark));
  color: #fff;
  box-shadow: 0 6px 0 #a41354, 0 14px 28px rgba(207, 31, 109, .3);
}
.btn--primary:hover { filter: brightness(1.05); }
.btn--primary:active { transform: translateY(4px); box-shadow: 0 2px 0 #a41354; }
.btn--ghost {
  background: var(--paper);
  color: var(--purple-deep);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink-dark); }
.btn--wide { width: 100%; }

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 7vw, 90px) 0 clamp(48px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('assets/hero-mobile.webp');
  background-size: cover;
  background-position: center 70%;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    radial-gradient(62% 52% at 50% 42%, rgba(255, 245, 249, .78), rgba(255, 245, 249, .3) 76%, transparent),
    linear-gradient(180deg, rgba(255, 245, 249, .32) 0%, rgba(255, 245, 249, .45) 60%, var(--cream) 100%);
}
@media (min-width: 760px) {
  .hero::before {
    background-image: url('assets/hero-desktop.webp');
    background-position: center 78%;
  }
  .hero::after {
    background:
      radial-gradient(46% 56% at 50% 44%, rgba(255, 245, 249, .72), rgba(255, 245, 249, .22) 78%, transparent),
      linear-gradient(180deg, rgba(255, 245, 249, .18) 0%, rgba(255, 245, 249, .34) 62%, var(--cream) 100%);
  }
}

.hero-inner { display: grid; justify-items: center; text-align: center; gap: 8px; }
.hero-logo {
  width: clamp(140px, 22vw, 230px);
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(140, 40, 100, .3));
  margin-bottom: 6px;
}
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 60ch; color: #58374f; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 22px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.chip {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .88rem;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(160, 60, 120, .1);
}
.chip b { color: var(--pink-dark); font-family: var(--font-display); }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { display: flex; align-items: center; gap: 10px; }
.card .ico {
  width: 42px; height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  font-size: 1.2rem;
}
.card--flat { box-shadow: none; background: rgba(255, 255, 255, .7); }
.card p { color: var(--ink-soft); }

.split { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }

.check { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.check li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 700;
}
.check--no li::before { content: '✕'; background: #ff6b8b; }

.game-block {
  background: linear-gradient(160deg, #3a1152, #1d0630);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(14px, 2.4vw, 26px);
  box-shadow: var(--shadow-lg);
}
.game-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1d0630;
}
.game-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.game-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-top: 14px;
  color: #f4dcec;
  font-family: var(--font-ui);
  font-size: .92rem;
}
.game-bar a { color: #ffd0e6; }
.game-note {
  margin-top: 18px;
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .95rem;
  color: var(--purple-deep);
}
.game-note b { font-family: var(--font-display); }

@media (max-width: 700px) {
  .game-frame { aspect-ratio: 3 / 4; min-height: 560px; }
}

.pay-table { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pay-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.pay-row img { width: 52px; height: 52px; object-fit: contain; }
.pay-row div { font-size: .92rem; line-height: 1.45; color: var(--ink-soft); }
.pay-row strong { display: block; font-family: var(--font-display); color: var(--purple-deep); font-size: 1rem; }
.pay-row b { color: var(--pink-dark); }

.stats { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--pink-dark);
  line-height: 1;
}
.stat span { font-size: .9rem; color: var(--muted); }

.mode {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--pink);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.mode h3 { margin-bottom: .3em; }
.mode .mode-meta {
  font-family: var(--font-ui);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 8px;
}
.mode:nth-child(2n) { border-left-color: var(--purple); }
.mode:nth-child(3n) { border-left-color: var(--sun); }
.mode:nth-child(4n) { border-left-color: var(--mint); }

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--purple-deep);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--pink); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding-bottom: 18px; color: var(--ink-soft); }

.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-ui); font-weight: 500; font-size: .93rem; color: var(--purple-deep); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--pink);
  outline-offset: 1px;
  background: var(--paper);
}
.form-consent { font-size: .86rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
  background: var(--purple-deep);
  color: #e8d5f0;
  padding: clamp(40px, 6vw, 64px) 0 28px;
  font-size: .94rem;
}
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .6em; }
.site-footer a { color: #ffc9e4; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-brand img { width: 62px; height: 62px; margin-bottom: 10px; }
.footer-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #c8b0d6;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
}
.age {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #ffc9e4;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  flex: 0 0 auto;
}

.doc { background: var(--paper); }
.doc .wrap { max-width: 800px; }
.doc h2 { margin-top: 1.6em; }
.doc h3 { margin-top: 1.4em; }
.doc ul, .doc ol { color: var(--ink-soft); padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc .updated { color: var(--muted); font-size: .9rem; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .94rem; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { font-family: var(--font-ui); color: var(--purple-deep); }

.notice {
  background: #fff8e6;
  border: 1px solid #ffe2a3;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  color: #6b4a12;
  font-size: .95rem;
}
.notice b { color: #4a3208; }

.error-page { text-align: center; padding: clamp(60px, 12vw, 130px) 0; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 11rem);
  line-height: .9;
  color: var(--pink);
  text-shadow: 0 8px 0 var(--pink-soft);
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 16px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }
}
