:root {
  --accent: #FDCA04;
  --accent-2: #FF6B9D;
  --bg: #0a0a12;
  --bg-soft: #12121f;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(1100px 560px at 15% -10%, rgba(253,202,4,0.12), transparent 60%),
    radial-gradient(1000px 560px at 95% 5%, rgba(255,107,157,0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 22px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(10,10,18,0.7);
  border-bottom: 1px solid var(--border);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }
.brand .play { color: var(--accent); }
.nav-links { display: flex; gap: 22px; font-size: 14px; }
.nav-links a { color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero { text-align: center; padding: 70px 0 50px; }
.hero img.app-icon {
  width: 110px; height: 110px; border-radius: 26px;
  box-shadow: 0 18px 60px rgba(253,202,4,0.25); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(36px, 7vw, 60px); font-weight: 900; letter-spacing: -1px; }
.hero h1 .play { color: var(--accent); }
.hero p.tag { font-size: clamp(16px, 3vw, 21px); color: var(--muted); margin-top: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  padding: 11px 20px; border-radius: 40px; font-weight: 700; font-size: 14px;
  background: linear-gradient(135deg, var(--accent), #ffab40); color: #1a1a14;
  box-shadow: 0 8px 26px rgba(253,202,4,0.35);
}

/* Features */
.section-title { text-align: center; font-size: clamp(26px,5vw,36px); font-weight: 800; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 38px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 30px 0; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 22px; transition: transform .2s, border-color .2s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(253,202,4,0.4); }
.feature .ico { font-size: 32px; margin-bottom: 12px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; padding: 20px 0 40px; }
.step { text-align: center; padding: 20px; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #1a1a14;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 14px; }

section { padding: 50px 0; }
.divider { height: 1px; background: var(--border); margin: 0 22px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 30px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
footer .brand { font-size: 16px; }
.foot-links { display: flex; gap: 20px; font-size: 14px; }
.foot-links a { color: var(--muted); font-weight: 600; }
.foot-links a:hover { color: var(--accent); }
.copyright { color: var(--muted); font-size: 13px; width: 100%; }

/* Legal pages */
.legal { max-width: 780px; margin: 0 auto; padding: 50px 22px 80px; }
.legal h1 { font-size: 32px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.legal h2 { font-size: 21px; margin: 32px 0 10px; color: var(--accent); }
.legal p, .legal li { color: rgba(255,255,255,0.82); font-size: 16px; }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal li { margin-bottom: 7px; }
.legal a { text-decoration: underline; }
.back { display: inline-block; margin-bottom: 24px; color: var(--muted); font-weight: 600; }
.back:hover { color: var(--accent); }
