*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #09080f;
  color: #e2e0f0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(168,85,247,0.1);
  background: rgba(9,8,15,0.92);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 58px;
  height: 58px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

.nav-links a { color: #6b6b80; transition: color 0.2s; }
.nav-links a:hover { color: #e2e0f0; }

.btn-ghost-nav {
  color: #6b6b80 !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.btn-ghost-nav:hover { color: #e2e0f0 !important; }

.btn-nav {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 16px rgba(168,85,247,0.35);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { opacity: 0.9; box-shadow: 0 0 24px rgba(168,85,247,0.5); }

.hero {
  position: relative;
  padding: 110px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 600px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.22) 0%, rgba(168,85,247,0.08) 45%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7, 0 0 20px rgba(168,85,247,0.6);
}

.hero-title {
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 22px;
  color: #fff;
}

.hl {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: #4a4a5e;
  max-width: 490px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.3), 0 4px 24px rgba(124,58,237,0.4);
  transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 0 0 1px rgba(168,85,247,0.5), 0 6px 32px rgba(124,58,237,0.55); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #6b6b80;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(168,85,247,0.3); color: #e2e0f0; background: rgba(124,58,237,0.06); }

.hero-stats {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.55), transparent);
}

.hstat {
  padding: 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.hstat:last-child { border-right: none; }
.hstat:hover { background: rgba(124,58,237,0.04); }

.hstat-val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(160deg, #fff 20%, rgba(196,181,253,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hstat-lbl {
  font-size: 11px;
  color: #56566e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.section { padding: 96px 0; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 52px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card {
  position: relative;
  background: #0e0c24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 28px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(124,58,237,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.feat-card:hover {
  border-color: rgba(168,85,247,0.25);
  transform: translateY(-3px);
}

.feat-icon { font-size: 28px; margin-bottom: 18px; }
.feat-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: #56566e; line-height: 1.7; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  background: #0e0c24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 40px 32px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.step-card:hover { border-color: rgba(168,85,247,0.25); }

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(168,85,247,0.7) 50%, transparent 100%);
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(124,58,237,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: #56566e; line-height: 1.7; }

.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  background: #0e0c24;
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 24px;
  padding: 64px 40px;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), transparent);
}

.cta-inner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 16px;
  color: #56566e;
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  background: #0e0c24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(168,85,247,0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: #e2e0f0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: #fff; }

.faq-arrow {
  font-size: 20px;
  color: #3a3a55;
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(90deg); color: #a855f7; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #5c5c7e;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: #3a3a55;
  transition: color 0.2s;
}
.footer-links a:hover { color: #a855f7; }

.footer-copy { font-size: 13px; color: #27272a; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #0e0c24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s;
}

.pricing-card:hover { border-color: rgba(168,85,247,0.2); }

.pricing-card-premium {
  border-color: rgba(168,85,247,0.3);
  background: linear-gradient(160deg, rgba(124,58,237,0.06) 0%, #0e0c24 60%);
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
}

.pricing-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.7), transparent);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  color: #6b6b80;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.pricing-card-premium .pricing-tier { color: #c4b5fd; }

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
}

.price-period {
  font-size: 14px;
  color: #56566e;
  margin-left: 2px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.feat-yes { color: #a1a1aa; }
.feat-no { color: #27272a; }

.feat-yes::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: 700;
  font-size: 13px;
}

.feat-no::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #27272a;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.sub-status {
  font-size: 12px;
  color: #6b6b80;
  text-align: center;
  margin-top: 10px;
}

.payment-toast {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease;
}

.payment-toast.success {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
}

.payment-toast.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hstat { padding: 18px 20px; }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(1), .hstat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links a:not(.btn-nav) { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cta-inner { padding: 40px 24px; }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}
.frow:last-child { margin-bottom: 0; }
.frow-rev .fvisual-wrap { order: -1; }

.fcopy { display: flex; flex-direction: column; }

.fpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(168,85,247,0.22);
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.fh {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.fp {
  font-size: 15px;
  color: #5c5c7e;
  line-height: 1.8;
  margin-bottom: 28px;
}

.ftags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftag {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.13);
  color: #5a5a70;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.ftag:hover {
  border-color: rgba(168,85,247,0.3);
  color: #c4b5fd;
  background: rgba(124,58,237,0.06);
}

.fvisual-wrap { position: relative; }

.fcard-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.fcard {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 44px 80px rgba(0,0,0,0.45), 0 0 60px rgba(124,58,237,0.09), inset 0 1px 0 rgba(255,255,255,0.13);
}

.fcard-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  background: rgba(0,0,0,0.2);
}

.fcard-dots { display: flex; gap: 5px; }
.fcard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.fcard-dots span:nth-child(1) { background: rgba(239,68,68,0.55); }
.fcard-dots span:nth-child(2) { background: rgba(245,158,11,0.55); }
.fcard-dots span:nth-child(3) { background: rgba(34,197,94,0.55); }

.fcard-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  flex: 1;
  letter-spacing: 0.3px;
}

.fcard-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.fcard-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mod-entry {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mod-bar { width: 3px; flex-shrink: 0; }

.mod-info {
  flex: 1;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mod-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mod-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid;
  letter-spacing: 0.6px;
  flex-shrink: 0;
}

.mod-user {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  flex: 1;
}

.mod-time {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.mod-reason {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.mod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 2px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}

.stats-grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.stats-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stats-val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.stats-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  font-weight: 500;
}

.chart-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 10px;
  padding: 12px 14px;
}

.chart-label {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  margin-bottom: 12px;
  font-weight: 500;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  background: rgba(168,85,247,0.28);
  border-radius: 3px 3px 0 0;
}

.chart-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.18);
  font-weight: 500;
  white-space: nowrap;
}

.player-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 10px;
}

.player-art {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(168,85,247,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.player-track {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist { font-size: 12px; color: rgba(255,255,255,0.28); }
.player-dur { font-size: 12px; color: rgba(255,255,255,0.28); flex-shrink: 0; }

.player-progress-wrap { padding: 0 2px; }

.player-progress-bg {
  height: 4px;
  background: rgba(255,255,255,0.13);
  border-radius: 2px;
  position: relative;
}

.player-progress-fill {
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 2px;
}

.player-progress-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(168,85,247,0.8);
}

.player-times {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  margin-top: 5px;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pctrl {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  font-family: inherit;
  padding: 0;
  line-height: 1;
}
.pctrl:hover { opacity: 0.9; }
.pctrl-main {
  width: 36px;
  height: 36px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(168,85,247,0.35) !important;
  border-radius: 50%;
  font-size: 14px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pctrl-dim { opacity: 0.25; }

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.eq-bar {
  flex: 1;
  height: var(--h);
  background: rgba(168,85,247,0.3);
  border-radius: 2px 2px 0 0;
  animation: eq-bounce 0.9s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.eq-bar:nth-child(2n) { animation-delay: -0.25s; background: rgba(168,85,247,0.22); }
.eq-bar:nth-child(3n) { animation-delay: -0.5s; }
.eq-bar:nth-child(4n) { animation-delay: -0.75s; background: rgba(168,85,247,0.38); }

@keyframes eq-bounce {
  from { transform: scaleY(1); }
  to { transform: scaleY(0.3); }
}

.fcard-panel-body {
  flex-direction: row !important;
  gap: 0 !important;
  padding: 0 !important;
}

.panel-sidebar {
  width: 112px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.055);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.12);
}

.panel-nav-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
  padding: 7px 10px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.panel-nav-active {
  background: rgba(168,85,247,0.14);
  color: #c4b5fd;
}

.panel-content {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.panel-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  padding: 9px 11px;
  gap: 8px;
}

.panel-setting-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.panel-setting-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-setting-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}

.panel-toggle {
  width: 32px;
  height: 18px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.panel-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.panel-toggle.on { background: rgba(124,58,237,0.7); }
.panel-toggle.on::after { transform: translateX(14px); background: #fff; }

.panel-save-btn {
  margin-top: 2px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.panel-save-btn:hover { opacity: 0.88; }

@media (max-width: 960px) {
  .frow {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 72px;
  }
  .frow-rev .fvisual-wrap { order: 0; }
}
