.confetti-piece {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 14px;
  border-radius: 2px;
  opacity: 0.95;
  z-index: 20000;
  pointer-events: none;
  animation: confetti-fall 1100ms linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translate3d(var(--dx), 110vh, 0) rotate(var(--rot));
    opacity: 0.2;
  }
}

.promo-toast {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translate(-50%, -16px);
  width: calc(100% - 32px);
  max-width: 780px;
  border-radius: 22px;
  border: 1px solid rgba(236,72,153,0.9);
  background:
    radial-gradient(circle at top left, rgba(99,102,241,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236,72,153,0.25), transparent 55%),
    rgba(15,23,42,0.98);
  padding: 16px 18px 16px 18px;
  font-size: 16px;
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
  z-index: 9999;
}

.promo-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.promo-toast-pill {
  min-width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}


.promo-toast-content {
  flex: 1;
}

.promo-toast-title {
  font-size: 17px;
  font-weight: 850;
  margin-bottom: 4px;
  color: var(--accent2);
}

.promo-toast-text {
  font-size: 15px;
  color: var(--muted);
}

.promo-toast-close {
  border: none;
  background: transparent;
  color: #9ca3c9;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 0 0 4px;
}
.promo-toast-close:hover {
  color: var(--text);
}

    :root {
      --bg: #020617;
      --panel: #020617;
      --accent: #6366f1;
      --accent2: #ec4899;
      --text: #e5edff;
      --muted: #9ca3c9;
      --border: rgba(148, 163, 255, 0.4);
      --ok: #22c55e;
      --danger: #ef4444;
      --radius: 22px;
      --radius-pill: 999px;
      --shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
    }
    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
      font-size: 22px;
      background:
        radial-gradient(circle at top, rgba(99,102,241,0.24), transparent 55%),
        radial-gradient(circle at bottom, rgba(236,72,153,0.16), transparent 55%),
        var(--bg);
      color: var(--text);
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 12px;
      flex-direction: column;
      gap: 24px;
    }

    .wizard {
      width: 100%;
      max-width: 980px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 24px 24px 20px;
    }

    .wizard-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .brand {
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 28px;
    }
    .brand-sub {
      font-size: 18px;
      color: var(--muted);
      margin-top: 4px;
    }

    .status-pill {
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border);
      font-size: 15px;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(15, 23, 42, 0.96);
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: var(--ok);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.4);
    }
    .dot.off {
      background: var(--danger);
      box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.4);
    }

    /* header action buttons (more visible) */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .header-link-btn {
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148,163,255,0.8);
      background: rgba(15,23,42,0.98);
      color: var(--text);
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      white-space: nowrap;
      font-weight: 600;
    }

    .header-link-btn::before {
      content: "↗";
      font-size: 13px;
      opacity: 0.7;
    }

    .header-link-btn:hover {
      filter: brightness(1.08);
      border-color: rgba(148,163,255,1);
      box-shadow: 0 0 0 1px rgba(148,163,255,0.4);
    }

    .header-link-btn.primary-discord {
      border: none;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      color: #020617;
      box-shadow: 0 0 0 1px rgba(236,72,153,0.7), 0 10px 30px rgba(0,0,0,0.75);
      font-weight: 800;
    }

    .header-link-btn.primary-discord::before {
      content: "💬";
      opacity: 1;
      font-size: 14px;
    }

    .tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid rgba(148,163,255,0.35);
      padding-bottom: 8px;
      overflow-x: auto;
    }
    .tab-btn {
      padding: 10px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: transparent;
      color: var(--muted);
      font-size: 19px;
      cursor: pointer;
      white-space: nowrap;
    }
    .tab-btn.active {
      border-color: rgba(148,163,255,0.9);
      background: rgba(15,23,42,0.98);
      color: var(--text);
    }

    .tab-content {
      display: none;
    }
    .tab-content.active {
      display: block;
    }

    /* support strip under tabs */
    .support-strip {
      margin-bottom: 12px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px dashed rgba(236,72,153,0.9);
      background: rgba(30, 10, 34, 0.96);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: space-between;
      font-size: 14px;
      color: var(--accent2);
    }

    .support-strip strong {
      color: var(--text);
    }

    .support-strip-btn {
      padding: 7px 14px;
      border-radius: var(--radius-pill);
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #020617;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    .wizard-title {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .wizard-subtitle {
      font-size: 22px;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .steps-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 16px;
      color: var(--muted);
      flex-wrap: wrap;
    }
    .step-badge {
      padding: 7px 13px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148,163,255,0.6);
      background: rgba(15,23,42,0.95);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 16px;
    }
    .step-num {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,255,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .steps-progress {
      flex: 1;
      min-width: 110px;
      height: 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.96);
      overflow: hidden;
      border: 1px solid rgba(15,23,42,1);
    }
    .steps-progress-fill {
      height: 100%;
      width: 33%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transition: width 0.25s ease-out;
    }

    .fields-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 12px;
      margin-bottom: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .field label {
      font-size: 18px;
      color: var(--muted);
    }
    .field input {
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid rgba(148,163,255,0.6);
      background: rgba(15,23,42,0.98);
      color: var(--text);
      font-size: 22px;
      outline: none;
    }
    .field input::placeholder {
      font-size: 18px;
      color: #6b7280;
    }
    .field input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(99,102,241,0.7);
    }

    .columns {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
      gap: 16px;
      margin-top: 10px;
      align-items: stretch;
    }
    @media (max-width: 900px) {
      .columns {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .box {
      border-radius: 16px;
      border: 1px solid rgba(148,163,255,0.4);
      background: rgba(15,23,42,0.96);
      padding: 14px 14px 12px;
      font-size: 16px;
      color: var(--muted);
    }

    .box-title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text);
    }

    .amount-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }
    .amount-btn {
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,255,0.6);
      background: rgba(15,23,42,0.98);
      cursor: pointer;
      font-size: 16px;
      color: var(--muted);
    }

    .price-info {
      font-size: 16px;
      color: var(--muted);
      margin-top: 10px;
    }
    .price-info strong {
      color: var(--accent2);
      font-size: 20px;
    }

    .left-column {
      display: flex;
      flex-direction: column;
      gap: 10px;
      height: 100%;
    }

    .right-column {
      display: flex;
      flex-direction: column;
      gap: 8px;
      height: 100%;
    }

    .right-column .box {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .status-box {
      margin-top: 2px;
      border-radius: 18px;
      border: 1px solid rgba(148,163,255,0.4);
      padding: 16px 15px 14px;
      font-size: 16px;
      color: var(--muted);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .status-header-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .status-header-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .status-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .progress-bar {
      width: 100%;
      height: 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.95);
      overflow: hidden;
    }
    .progress-fill {
      height: 100%;
      width: 0%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transition: width 0.25s ease-out;
    }
    .status-meta {
      display: flex;
      justify-content: space-between;
      font-size: 15px;
      margin-top: 6px;
    }

    .status-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 6px 16px;
      margin-top: 12px;
      font-size: 14px;
      flex-grow: 1;
    }
    .status-detail-row {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .status-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
    }
    .status-value {
      font-size: 16px;
      color: var(--text);
      word-break: break-all;
    }
    .status-hint {
      margin-top: 10px;
      font-size: 13px;
      color: #9ca3c9;
    }

    .wizard-footer {
      margin-top: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148,163,255,0.6);
      background: rgba(15,23,42,0.96);
      color: var(--muted);
      font-size: 20px;
      cursor: pointer;
    }
    .btn-primary {
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #020617;
      font-weight: 750;
    }

    .instructions {
      border-radius: 16px;
      border: 1px solid rgba(148,163,255,0.35);
      background: rgba(15,23,42,0.96);
      padding: 12px 14px;
      font-size: 16px;
      color: var(--muted);
    }
    .instructions-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text);
    }
    .instructions ol {
      margin: 0;
      padding-left: 20px;
    }
    .instructions li {
      margin-bottom: 4px;
    }
    .instructions-disclaimer {
      margin-top: 8px;
      font-size: 15px;
      color: #f97373;
      font-weight: 700;
    }
    .instructions-small-note {
      margin-top: 6px;
      font-size: 14px;
      color: #9ca3c9;
    }

    /* ---- BUY TAB STYLES ---- */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .pricing-card {
      border-radius: 18px;
      border: 1px solid rgba(148,163,255,0.45);
      background:
        radial-gradient(circle at top left, rgba(99,102,241,0.2), transparent 55%),
        radial-gradient(circle at bottom right, rgba(236,72,153,0.12), transparent 55%),
        rgba(15,23,42,0.98);
      padding: 16px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
/* ===== Reviews fixes (override pricing-card behavior only inside reviews) ===== */
#tab-reviews .pricing-card{
  gap: 12px;
  padding: 18px;
}

#tab-reviews .pricing-header{
  align-items: flex-start;
}

#tab-reviews .pricing-badge{
  align-self: flex-start;
  margin-top: 2px;
}

#tab-reviews .review-body{
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
}

    .pricing-card.best-deal {
      border-color: rgba(236,72,153,0.9);
      box-shadow: 0 0 0 1px rgba(236,72,153,0.6), 0 18px 40px rgba(0,0,0,0.7);
      position: relative;
    }

    .pricing-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
    }

    .pricing-name {
      font-size: 22px;
      font-weight: 800;
    }

    .pricing-badge {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,255,0.7);
      color: var(--muted);
      background: rgba(15,23,42,0.96);
      white-space: nowrap;
    }

    .pricing-card.best-deal .pricing-badge {
      border-color: var(--accent2);
      color: var(--accent2);
    }

    .pricing-amount {
      font-size: 17px;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .pricing-price {
      font-size: 26px;
      font-weight: 900;
      color: var(--accent2);
      margin-bottom: 4px;
    }

    .pricing-small {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .pricing-list {
      margin: 0 0 8px;
      padding-left: 18px;
      font-size: 14px;
      color: #9ca3c9;
      flex: 1;
    }

    .pricing-list li {
      margin-bottom: 3px;
    }

    .pricing-btn {
      margin-top: 6px;
      padding: 9px 14px;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #020617;
      font-size: 18px;
      font-weight: 800;
      cursor: pointer;
      width: 100%;
      text-align: center;
      text-decoration: none;
    }

    .pricing-btn:hover {
      filter: brightness(1.05);
    }

    .pricing-note {
      font-size: 15px;
      color: var(--muted);
      margin-top: 14px;
    }
.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 520px) {
  .mix-grid { grid-template-columns: minmax(0, 1fr); }
}

.mix-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mix-field label {
  font-size: 14px;
  color: var(--muted);
}

.mix-field input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,255,0.6);
  background: rgba(15,23,42,0.98);
  color: var(--text);
  font-size: 22px;
  outline: none;
}

.mix-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.7);
}

    /* launch promo banner */
    .promo-banner {
      margin-top: 4px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px dashed rgba(236,72,153,0.85);
      background: rgba(30, 10, 34, 0.96);
      font-size: 16px;
      color: var(--accent2);
      text-align: center;
    }

    /* upsell banner after free commends */
    .upsell-banner {
      margin-top: 10px;
      padding: 10px 14px;
      border-radius: 16px;
      border: 1px solid rgba(236,72,153,0.85);
      background: rgba(30, 10, 34, 0.96);
      font-size: 15px;
      color: var(--accent2);
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
    .upsell-banner-text {
      font-size: 15px;
    }
    .upsell-banner-btn {
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      border: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #020617;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .faq-item {
      border-radius: 16px;
      border: 1px solid rgba(148,163,255,0.3);
      background: rgba(15,23,42,0.98);
      padding: 14px 16px;
      margin-bottom: 10px;
      font-size: 18px;
    }
    .faq-q {
      font-weight: 800;
      margin-bottom: 6px;
      font-size: 20px;
    }
    .faq-a {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
    }

    /* SEO section below widget */
    .seo-section {
      width: 100%;
      max-width: 980px;
      border-radius: 18px;
      border: 1px solid rgba(148,163,255,0.35);
      background: rgba(2,6,23,0.96);
      padding: 18px 20px 16px;
      font-size: 16px;
      color: var(--muted);
    }
    .seo-section h1 {
      font-size: 30px;
      margin: 0 0 8px;
      font-weight: 800;
      color: var(--text);
    }
    .seo-section h2 {
      font-size: 24px;
      margin-top: 14px;
      margin-bottom: 6px;
      font-weight: 700;
      color: var(--text);
    }
    .seo-section p {
      margin: 4px 0 8px;
      line-height: 1.6;
    }
    .seo-section ul {
      margin: 4px 0 8px 20px;
      padding: 0;
    }
    .seo-section li {
      margin-bottom: 4px;
    }

    footer {
      padding: 10px 12px 12px;
      font-size: 14px;
      color: var(--muted);
      text-align: center;
      border-top: 1px solid rgba(148,163,255,0.35);
      background: rgba(2,6,23,0.96);
    }
    @media (max-width: 520px) {
  .promo-toast { top: 64px; }
}
#tab-reviews .reviews-grid{
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148,163,255,0.25);
  font-size: 12px;
}

.info-pills-label {
  color: var(--muted);
  margin-right: 6px;
  font-size: 12px;
}

.info-pills a {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,255,0.25);
  color: var(--text);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.85;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.info-pills a:hover {
  opacity: 1;
  border-color: rgba(148,163,255,0.6);
}
