:root {
  --bg: #09000f;
  --bg-soft: #14031f;
  --panel: rgba(32, 10, 44, 0.92);
  --panel-2: rgba(24, 8, 36, 0.92);
  --line: rgba(255,255,255,0.11);
  --text: #f7efff;
  --muted: #d4bddf;
  --pink: #ff34c7;
  --pink-soft: rgba(255, 52, 199, 0.22);
  --violet: #7e2bff;
  --blue: #2ca6ff;
  --yellow: #ffcf2f;
  --green: #39d98a;
  --shadow: 0 20px 50px rgba(0,0,0,.35);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1320px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 52, 199, .18), transparent 34%),
    radial-gradient(circle at top right, rgba(44, 166, 255, .15), transparent 34%),
    linear-gradient(180deg, #07000b 0%, #0b0012 20%, #120018 55%, #0a0010 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 34px 0 76px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 0, 14, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-title { font-size: 1.78rem; font-weight: 800; line-height: 1; letter-spacing: .02em; }
.brand-subtitle { font-size: .78rem; letter-spacing: .24em; font-weight: 700; opacity: .9; }
.nav-links {
  display: flex; flex-wrap: nowrap; justify-content: center; gap: 4px;
  padding: 0 6px;
}
.nav-links a {
  white-space: nowrap;
  padding: 9px 11px;
  border-radius: 999px;
  color: #f1e4fa;
  font-weight: 600;
  font-size: .94rem;
  transition: .2s ease;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,.07);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-note { display: none; }
.listen-pill, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; border: 0; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.listen-pill {
  padding: 13px 23px; border-radius: 999px; color: #fff;
  background: linear-gradient(90deg, var(--pink), #c61fff 60%, var(--violet));
  box-shadow: 0 12px 32px rgba(198,31,255,.34), inset 0 0 0 1px rgba(255,255,255,.12);
  white-space: nowrap;
}
.listen-pill:hover, .btn:hover { transform: translateY(-1px); }
main { padding-bottom: 18px; }
.hero, .page-hero { padding: 30px 0 0; }
.hero-banner {
  width: 100%; border-radius: 34px; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-grid, .content-grid {
  display: grid; gap: 24px; margin-top: 28px;
}
.hero-grid { grid-template-columns: 1.3fr .9fr; }
.content-grid { grid-template-columns: 1fr 1fr; }
.panel, .full-card, .info-card, .feature, .quote-card, .stream-card, .download-card, .contact-item {
  background: linear-gradient(180deg, rgba(31, 10, 46, .95), rgba(22, 7, 34, .95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel, .full-card { padding: 28px; }
.home-title {
  margin: 0; font-size: clamp(3.2rem, 7vw, 5.6rem); line-height: .92; letter-spacing: -.03em;
  text-shadow: 0 0 18px rgba(255, 52, 199, .35);
}
.tagline { margin: 12px 0 0; font-size: 1.24rem; font-weight: 800; letter-spacing: .24em; color: #ffd8f6; }
.lead, .section-text, .page-hero p, .full-card p { font-size: 1.08rem; color: var(--muted); }
.lead { margin: 22px 0 0; }
.badge-row, .btn-row, .platforms, .stream-links, .download-links { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-row { margin: 22px 0; }
.badge {
  padding: 10px 14px; border-radius: 999px; font-size: .95rem; font-weight: 700;
  color: #ffe8fb; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
}
.btn-row { margin-top: 24px; }
.btn { min-height: 50px; padding: 14px 22px; border-radius: 18px; }
.btn-primary {
  color: #fff; background: linear-gradient(90deg, #ff31c5 0%, #c81fff 56%, #7e2bff 100%);
  box-shadow: 0 12px 30px rgba(197, 31, 255, .28), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn-secondary {
  color: #fff; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.player-card audio, .full-card audio { width: 100%; margin: 16px 0 18px; }
.player-note, .small-muted, .form-note, .playlist-help { color: #c6b2d4; font-size: .95rem; }
.platform-link, .download-link, .stream-link {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 12px 16px; border-radius: 16px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  font-weight: 700;
}
.platform-link:hover, .download-link:hover, .stream-link:hover { background: rgba(255,255,255,.09); }
.section-title { margin: 0 0 10px; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.08; }
.section-text { max-width: 850px; margin: 0 0 26px; }
.card-grid {
  display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card { padding: 24px; }
.info-card h3 { margin: 0 0 10px; font-size: 1.55rem; }
.info-card p { margin: 0; color: var(--muted); }
.card-icon {
  width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px; margin-bottom: 18px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.24), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 10px 24px rgba(0,0,0,.22);
}
.card-icon svg { width: 28px; height: 28px; color: #fff; }
.cta-strip {
  margin-top: 28px; padding: 28px; border-radius: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(90deg, rgba(255, 52, 199, .18), rgba(126, 43, 255, .14), rgba(44,166,255,.12));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.cta-strip h2 { margin: 0 0 8px; font-size: 2rem; }
.cta-strip p { margin: 0; color: var(--muted); }
.page-hero-inner {
  border-radius: 32px; padding: 36px; box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 52, 199, .16), rgba(126, 43, 255, .12) 45%, rgba(44,166,255,.08) 100%),
    linear-gradient(180deg, rgba(25, 7, 38, .95), rgba(16, 5, 25, .95));
  border: 1px solid rgba(255,255,255,.1);
}
.page-hero-content h1 { margin: 0 0 10px; font-size: clamp(2.4rem, 5vw, 4.2rem); }
.full-card h2 { margin: 0 0 12px; font-size: 1.78rem; }
.feature-list { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature { padding: 20px; }
.feature strong { display: block; font-size: 1.16rem; margin-bottom: 6px; }
.feature span { color: var(--muted); }
.timeline { display: grid; gap: 16px; margin-top: 18px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 16px; align-items: start; }
.timeline-item strong {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
}
.quote-card { margin-top: 18px; padding: 24px; font-size: 1.2rem; color: #fff; }
.contact-list { display: grid; gap: 16px; }
.contact-item { padding: 18px 20px; }
.contact-item strong { display: block; font-size: 1rem; color: #ffe4fc; }
.contact-item a { color: #fff; word-break: break-word; }
.top-widget-wrap { padding: 0; overflow: hidden; }
.form-card { display: grid; gap: 18px; }
.form-row { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { display: grid; gap: 8px; }
label { font-weight: 700; }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: #fff; font: inherit; outline: none;
}
input::placeholder, textarea::placeholder { color: #b8a3c8; }
input:focus, textarea:focus {
  border-color: rgba(255, 52, 199, .5);
  box-shadow: 0 0 0 4px rgba(255, 52, 199, .14);
}
textarea { min-height: 160px; resize: vertical; }
.hidden-field { display: none; }
.now-playing-box {
  display: grid; gap: 10px; padding: 18px 20px; border-radius: 20px; margin: 18px 0 10px;
  background: linear-gradient(90deg, rgba(255,52,199,.12), rgba(126,43,255,.1));
  border: 1px solid rgba(255,255,255,.1);
}
.now-playing-label { font-size: .86rem; text-transform: uppercase; letter-spacing: .14em; color: #f6d4ff; }
.now-playing-track { font-size: 1.2rem; font-weight: 800; color: #fff; }
.now-playing-meta { color: var(--muted); font-size: .95rem; }
.stream-grid, .download-grid {
  display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px;
}
.stream-card, .download-card { padding: 22px; }
.stream-card h3, .download-card h3 { margin: 0 0 8px; font-size: 1.32rem; }
.stream-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 8px 12px;
  border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); font-weight: 700; font-size: .92rem;
}
.warning-box {
  margin-top: 16px; padding: 14px 16px; border-radius: 16px; background: rgba(255, 207, 47, .09); border: 1px solid rgba(255, 207, 47, .18); color: #ffe9a2;
}
.mini-list { margin: 0; padding-left: 18px; color: var(--muted); }
footer {
  padding: 24px 0 42px; border-top: 1px solid rgba(255,255,255,.07); color: #cfbadc; text-align: center;
}
code.inline { padding: 2px 8px; border-radius: 8px; background: rgba(255,255,255,.08); }
@media (max-width: 1200px) {
  .nav-links { flex-wrap: wrap; }
}
@media (max-width: 1100px) {
  .navbar { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .hero-grid, .content-grid, .card-grid, .feature-list, .stream-grid, .download-grid { grid-template-columns: 1fr; }
  .header-actions { width: 100%; justify-content: space-between; }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .site-header { position: static; }
  .brand-title { font-size: 1.5rem; }
  .brand-subtitle { font-size: .76rem; letter-spacing: .2em; }
  .page-hero-inner, .panel, .full-card, .cta-strip, .info-card { padding: 20px; }
  .home-title { font-size: 3rem; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { gap: 4px; }
  .nav-links a { padding: 8px 10px; font-size: .95rem; }
  .listen-pill { padding: 12px 18px; }
}


.subpage-banner {
  padding-top: 30px;
}
.subpage-banner .hero-banner {
  display: block;
}
.stream-card, .download-card, .full-card, .panel {
  height: 100%;
}
.soft-note {
  color: var(--muted);
  margin-top: 10px;
}

.final-icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.final-mini-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}
.final-mini-card strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: #fff;
}
.final-mini-card span {
  color: var(--muted);
}
.how-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.how-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.how-step-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 10px 24px rgba(198,31,255,.25);
}
.how-step strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.how-step span {
  color: var(--muted);
}
.dual-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.choice-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
}
.choice-card h3 {
  margin: 0 0 8px;
  font-size: 1.42rem;
}
.choice-card p {
  margin: 0 0 16px;
}
.now-playing-meta {
  display: none;
}
.suggest-tabs-note {
  margin: 0 0 18px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .final-icon-row,
  .dual-choice {
    grid-template-columns: 1fr;
  }
}
