:root {
  --ink: #141124;
  --muted: #706b7d;
  --surface: #ffffff;
  --soft: #fff5f8;
  --pink: #ef4f86;
  --pink-dark: #c92c68;
  --gold: #f6ad55;
  --gold-dark: #c98622;
  --green: #20b66f;
  --border: rgba(20, 17, 36, 0.1);
  --shadow: 0 24px 70px rgba(76, 41, 55, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 79, 134, 0.18), transparent 32rem),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 44%, #fff6fa 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(20, 17, 36, 0.06);
  backdrop-filter: blur(18px);
}

.brand img,
.site-footer img {
  display: block;
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(239, 79, 134, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--pink-dark);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(239, 79, 134, 0.12);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 80px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
  padding: 50px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  min-width: 210px;
  min-height: 64px;
  padding: 12px 24px;
  border-radius: 20px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 20px 42px rgba(239, 79, 134, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.primary-btn small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.primary-btn.compact {
  min-width: 190px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(239, 79, 134, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(100%, 390px);
  min-height: 680px;
  padding: 20px 16px;
  border: 10px solid #221934;
  border-radius: 44px;
  background: linear-gradient(180deg, #fff, #fff7f2);
  box-shadow: var(--shadow), 0 0 0 8px rgba(255, 255, 255, 0.6);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffc071, #ef9231);
}

.phone-top img {
  width: 124px;
}

.wallet-chip {
  padding: 8px 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.ticker {
  margin: 18px 0 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 34px rgba(20, 17, 36, 0.08);
}

.play-panel {
  display: grid;
  gap: 6px;
  padding: 22px 18px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, #ffbd72, #ff9f45);
  color: #160c4a;
}

.gift-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.play-panel strong {
  font-size: 22px;
}

.game-grid-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.game-grid-preview div {
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(239, 79, 134, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 17, 36, 0.09);
}

.game-grid-preview strong,
.game-grid-preview span,
.game-grid-preview em {
  display: block;
}

.game-grid-preview strong {
  min-height: 42px;
  color: #150950;
  font-size: 14px;
}

.game-grid-preview span {
  margin: 12px 0;
  color: #6aa2ff;
  font-weight: 900;
}

.game-grid-preview em {
  color: var(--green);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.download-card,
.notice,
.features,
.install,
.faq {
  margin-top: 34px;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(239, 79, 134, 0.14);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.download-card p,
.feature-grid p,
.notice p,
.steps span,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page .download-card {
  align-items: flex-start;
}

.legal-policy-inner {
  max-width: 720px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.legal-h2 {
  margin: 28px 0 12px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
}

.legal-policy ul,
.legal-policy ol {
  margin: 0 0 16px;
  padding-left: 1.35em;
  color: var(--muted);
  line-height: 1.65;
}

.legal-policy li {
  margin-bottom: 6px;
}

.toc {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid rgba(239, 79, 134, 0.12);
}

.toc ol {
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.toc a {
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-policy a[href^="mailto:"],
.legal-policy a[href^="https://wa.me"] {
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(20, 17, 36, 0.07);
}

.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--soft);
  color: var(--pink);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 17, 36, 0.07);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.notice {
  padding: 26px;
  border: 1px solid rgba(32, 182, 111, 0.18);
  border-radius: 24px;
  background: rgba(236, 255, 245, 0.82);
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 17, 36, 0.05);
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq p {
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 44px;
  border-top: 1px solid rgba(20, 17, 36, 0.08);
}

.site-footer p {
  color: var(--muted);
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 800;
}

.primary-btn:hover,
.secondary-btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 34px 0 48px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 110px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  main {
    padding: 18px 14px 54px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-actions,
  .download-card,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .phone-shell {
    min-height: 660px;
    border-radius: 36px;
  }

  .game-grid-preview {
    gap: 10px;
  }

  .game-grid-preview div {
    min-height: 132px;
    padding: 13px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .download-card,
  .feature-grid article,
  .steps li,
  .notice {
    border-radius: 20px;
    padding: 22px;
  }

  .footer-links {
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  .hero {
    align-items: start;
    min-height: 650px;
    overflow: hidden;
    padding-bottom: 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    position: absolute;
    right: -84px;
    bottom: 18px;
    z-index: 1;
    opacity: 0.28;
  }

  .phone-shell {
    width: 310px;
    min-height: 430px;
    padding: 12px 10px;
    border-width: 8px;
    pointer-events: none;
  }

  .phone-top {
    padding: 12px;
  }

  .phone-top img {
    width: 96px;
  }

  .ticker,
  .play-panel {
    margin-top: 10px;
  }

  .game-grid-preview {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.55);
  outline-offset: 3px;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.privacy-policy {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.8;
}

.privacy-policy h1 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #222;
}

.privacy-policy .updated-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.privacy-policy section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.privacy-policy h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.privacy-policy p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 25px;
        margin: 20px;
    }

    .privacy-policy h1 {
        font-size: 28px;
    }

    .privacy-policy h2 {
        font-size: 20px;
    }

    .privacy-policy p {
        font-size: 15px;
    }
}
