*, *::before, *::after { box-sizing: border-box; }
:root {
  --bg-deep: #1a0b2e;
  --bg-card: rgba(255, 255, 255, 0.08);
  --accent: #c084fc;
  --accent-2: #a855f7;
  --accent-hot: #f472b6;
  --text: #f3e8ff;
  --text-muted: #d8b4fe;
  --border: rgba(192, 132, 252, 0.35);
  --radius: 16px;
  --safe-bottom: env(safe-area-inset-bottom, 0);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(168, 85, 247, 0.45), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(244, 114, 182, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(139, 92, 246, 0.25), transparent);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 1rem;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.25rem calc(5rem + var(--safe-bottom));
}
@media (min-width: 768px) {
  .wrap { max-width: 52rem; padding: 1.5rem 2rem calc(5rem + var(--safe-bottom)); }
  body { font-size: 1.05rem; }
}
header.hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: var(--bg-card);
}
h1 {
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.65rem;
  background: linear-gradient(135deg, #fce7f3, #d8b4fe 40%, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-img {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: auto;
  margin: 0 auto 1.15rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a0b2e;
  background: linear-gradient(135deg, #fbbf24, #f472b6 50%, #c084fc);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(192, 132, 252, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 114, 182, 0.45);
  color: #1a0b2e;
}
.nav-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.nav-chips a {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
}
.nav-chips a:hover { color: #fff; border-color: var(--accent); }
section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  section { padding: 1.6rem 1.75rem; margin-bottom: 1.15rem; }
}
section h2 {
  font-size: 1.25rem;
  margin: 0 0 0.85rem;
  color: #fce7f3;
  font-weight: 700;
}
section h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--accent);
  font-weight: 600;
}
section h3:first-child { margin-top: 0; }
.table-wrap {
  margin: 0 0 0.85rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--border);
}
.spec-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table th,
.spec-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table th {
  width: 38%;
  max-width: 11rem;
  color: #fce7f3;
  font-weight: 600;
  background: rgba(168, 85, 247, 0.12);
}
.spec-table td {
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .spec-table { font-size: 0.95rem; }
  .spec-table th { width: 32%; }
}
section p { margin: 0 0 0.85rem; }
section p:last-child { margin-bottom: 0; }
ul.disc {
  margin: 0.5rem 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}
ul.disc li { margin-bottom: 0.35rem; }
ul.disc li::marker { color: var(--accent-hot); }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 0.85rem 0 0;
  margin-top: 0.85rem;
}
.faq-item:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.faq-q {
  font-weight: 600;
  color: #fce7f3;
  margin: 0 0 0.35rem;
}
.faq-a { margin: 0; color: var(--text-muted); }
.intro h2 { font-size: 1.45rem; }
.metrika-noscript-hit {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fab-play {
  position: fixed;
  bottom: calc(1rem + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media (min-width: 480px) {
  .fab-play { left: auto; right: 1.25rem; transform: none; }
}
.subhead {
  padding: 1.25rem 0 0.5rem;
  text-align: center;
}
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bg-card);
  margin-bottom: 1rem;
}
.back-home:hover { color: #fff; border-color: var(--accent); }
.page-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.page-h1 {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  text-align: center;
  background: linear-gradient(135deg, #fce7f3, #d8b4fe 40%, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}
.site-footer__nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}
.site-footer__nav a:hover { color: var(--accent); text-decoration: underline; }
.site-footer__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin: 0;
}
