/* Premium Purple Theme — shared across withdraw, deposit, PTC, VIP */
:root {
  --pt-bg: #ffffff;
  --pt-purple-glow: rgba(139, 92, 246, 0.2);
  --pt-child-bg: rgba(255, 255, 255, 0.96);
  --pt-text-dark: #1e1b4b;
  --pt-text-muted: #64748b;
  --pt-accent: #7c3aed;
  --pt-accent-deep: #6500c6;
  --pt-neon-green: #10b981;
  --pt-btn-blue: #4f46e5;
  --pt-btn-yellow: #ffc700;
  --pt-navy: #030712;
  --pt-purple-mid: #7c3aed;
  --pt-purple-light: #a855f7;
  --pt-purple-deep: #6d28d9;
  --pt-gold: #f59e0b;
  --pt-radius-xl: 24px;
  --pt-radius-lg: 18px;
  --pt-radius-md: 12px;
  --pt-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body.pt-theme {
  font-family: "Poppins", sans-serif !important;
  background-color: var(--pt-bg) !important;
  background-image:
    radial-gradient(circle at top left, var(--pt-purple-glow) 0%, transparent 40%),
    radial-gradient(circle at bottom right, var(--pt-purple-glow) 0%, transparent 40%) !important;
}

body.hn-theme-dark.pt-theme {
  background-color: transparent !important;
  background-image: none !important;
}

body.pt-theme #appCapsule {
  max-width: 420px;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.pink-gradient,
.pt-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%) !important;
  color: #fff !important;
}

.pt-gradient-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  border: none;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease;
}

.pt-gradient-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.4);
}

/* ── Header ── */
.pt-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pt-header-left h2 {
  color: var(--pt-accent-deep);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.pt-header-left h2 i {
  color: var(--pt-accent-deep);
}

.pt-header-left p {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 2px 0 0;
}

.pt-history-btn {
  background: var(--pt-purple-glow);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: var(--pt-accent-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pt-history-btn:hover {
  background: rgba(139, 92, 246, 0.35);
  color: var(--pt-accent-deep);
}

/* ── Balance card ── */
.pt-balance-card {
  background: linear-gradient(135deg, #4c1d95 0%, #2e1065 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.pt-balance-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--pt-accent);
  opacity: 0.4;
  filter: blur(30px);
  top: -20px;
  right: -20px;
  border-radius: 50%;
}

.pt-balance-label {
  color: #ddd6fe;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pt-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pt-balance-amount {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.pt-balance-amount span {
  font-size: 16px;
  color: #c084fc;
  font-weight: 500;
  margin-left: 4px;
}

.pt-wallet-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── White child cards ── */
.pt-child-card {
  background: var(--pt-child-bg);
  border-radius: var(--pt-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pt-gateway-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pt-gateway-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pt-text-dark);
  font-weight: 500;
}

.pt-gateway-status i {
  color: var(--pt-neon-green);
}

.pt-gateway-status strong {
  color: var(--pt-accent);
}

.pt-change-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--pt-text-dark);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.pt-change-btn:hover {
  background: #e2e8f0;
}

.pt-input-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.pt-input-wrap {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.pt-input-wrap:focus-within {
  border-color: var(--pt-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.pt-input-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.pt-input-left i {
  color: var(--pt-accent);
  font-size: 16px;
}

.pt-input-left input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--pt-text-dark);
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}

.pt-currency-suffix {
  color: var(--pt-accent);
  font-size: 13px;
  font-weight: 700;
}

/* Quick amounts */
.pt-quick-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 12px;
}

.pt-quick-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pt-quick-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--pt-accent);
  border-radius: 2px;
}

.pt-quick-range {
  font-size: 12px;
  font-weight: 600;
  color: var(--pt-accent);
}

.pt-quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.pt-quick-box {
  background: var(--pt-btn-blue);
  border: 1px solid #4338ca;
  color: #fff;
  border-radius: 12px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pt-quick-box.active {
  background: var(--pt-btn-yellow);
  border-color: #e2b200;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 199, 0, 0.4);
}

/* Invoice rows */
.pt-invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.pt-invoice-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pt-invoice-label {
  color: var(--pt-text-muted);
  font-size: 12px;
  font-weight: 500;
}

.pt-invoice-value {
  color: var(--pt-text-dark);
  font-size: 13px;
  font-weight: 700;
}

.pt-invoice-value.charge {
  color: #ef4444;
}

.pt-invoice-value.received {
  color: var(--pt-neon-green);
  font-size: 15px;
}

.pt-confirm-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
  border: none;
  border-radius: 16px;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Method grid (withdraw step 1) */
.pt-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.pt-method-card {
  background: var(--pt-child-bg);
  border: 1.5px solid #e9d5ff;
  border-radius: var(--pt-radius-lg);
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.08);
  transition: var(--pt-transition);
}

.pt-method-card:hover {
  border-color: var(--pt-purple-light);
  transform: translateY(-2px);
}

.pt-method-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 10px;
}

.pt-method-card h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--pt-text-dark);
  margin-bottom: 10px;
}

.pt-method-select-btn {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── PTC Dashboard ── */
.ptc-shell {
  background: #f8fafc;
  border-radius: var(--pt-radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(109, 40, 217, 0.13);
  margin: 0 -4px;
}

.ptc-site-header {
  padding: 20px 20px 6px;
}

.ptc-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--pt-purple-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.ptc-header-title i {
  color: var(--pt-purple-light);
}

.ptc-header-sub {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--pt-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-top: 3px;
}

.ptc-status-card {
  margin: 14px 20px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 40%, #1e0850 100%);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
}

.ptc-status-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ptc-daily-badge {
  display: inline-flex;
  background: var(--pt-gold);
  color: #7c2d12;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.ptc-counter {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ptc-counter span {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.75;
}

.ptc-counter-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.ptc-progress-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin-top: 10px;
  max-width: 180px;
}

.ptc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fde68a, var(--pt-gold));
  border-radius: 999px;
  transition: width 0.8s ease;
}

.ptc-progress-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.ptc-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: 2px solid rgba(168, 85, 247, 0.6);
  background: rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
}

.ptc-plan-bar {
  margin: 14px 20px 0;
  background: #eef2ff;
  border: 1.5px solid #c7d2fe;
  border-radius: 16px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ptc-crown-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ptc-crown-wrap i {
  font-size: 20px;
  color: #3730a3;
}

.ptc-plan-text {
  flex: 1;
  min-width: 0;
}

.ptc-plan-text strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pt-text-dark);
}

.ptc-plan-text p {
  font-size: 10px;
  color: var(--pt-text-muted);
  margin: 2px 0 0;
}

.ptc-plan-cta {
  background: var(--pt-navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ptc-section-head {
  margin: 22px 20px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptc-section-head h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--pt-purple-mid);
  text-transform: uppercase;
  margin: 0;
}

.ptc-ads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px 24px;
}

.ptc-ad-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #e9d5ff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(109, 40, 217, 0.1);
  display: flex;
  flex-direction: column;
  transition: var(--pt-transition);
}

.ptc-ad-card:hover {
  transform: translateY(-3px);
  border-color: var(--pt-purple-light);
}

.ptc-card-media {
  padding: 14px 12px 10px;
}

.ptc-monitor {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border-radius: 10px;
  border: 1.5px solid #c4b5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ptc-monitor-play {
  width: 30px;
  height: 30px;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
}

.ptc-meta-pills {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  gap: 4px;
}

.ptc-pill {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--pt-text-dark);
}

.ptc-card-footer {
  background: linear-gradient(135deg, var(--pt-purple-light) 0%, var(--pt-purple-deep) 100%);
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ptc-ads-title {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.ptc-view-btn {
  width: 100%;
  background: var(--pt-navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 8px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ptc-view-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── VIP Plans ── */
.vip-app {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vip-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vip-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pt-purple-deep), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.vip-header-icon i {
  color: #fff;
  font-size: 18px;
}

.vip-header-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  background: #6a35f5;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.vip-header-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #a78bfa;
  text-transform: uppercase;
  margin: 0;
}

.vip-status-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.vip-status-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e0b4b 0%, #2d1165 40%, #1a0a3c 100%);
}

.vip-status-inner {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.vip-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #a78bfa;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vip-status-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vip-status-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vip-status-top-text {
  flex: 1;
  min-width: 0;
}

.vip-status-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0;
}

.vip-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.vip-active-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 11px;
  font-weight: 600;
  color: #34d399;
}

.vip-active-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.vip-meta-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.vip-meta-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.35);
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vip-meta-label {
  display: block;
  width: 100%;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #a78bfa;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.vip-meta-value {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vip-status-crown {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(76, 29, 149, 0.35));
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vip-status-crown i {
  font-size: 28px;
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pt-purple-deep), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-section-icon i {
  font-size: 12px;
  color: #fff;
}

.vip-section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(130, 0, 255, 0.95);
}

.vip-plans-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip-plan-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(76, 29, 149, 0.3);
  box-shadow: 0 8px 32px rgba(15, 10, 28, 0.12);
  overflow: hidden;
}

.vip-plan-card.is-active {
  border-color: rgba(16, 185, 129, 0.55);
}

.vip-plan-card::before {
  content: "";
  display: block;
  height: 3px;
}

.vip-plan-card.is-active::before {
  background: linear-gradient(90deg, var(--pt-neon-green), #6ee7b7);
}

.vip-plan-card.is-locked::before {
  background: linear-gradient(90deg, var(--pt-purple-deep), #8b5cf6);
}

.vip-plan-card-inner {
  padding: 20px 18px;
}

.vip-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.vip-plan-header-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.vip-plan-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.vip-plan-card.is-active .vip-plan-play {
  background: linear-gradient(135deg, var(--pt-neon-green), #059669);
}

.vip-plan-card.is-locked .vip-plan-play {
  background: linear-gradient(135deg, var(--pt-purple-deep), var(--pt-accent));
}

.vip-plan-card-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--pt-text-dark);
}

.vip-plan-card-price {
  font-size: 13px;
  font-weight: 700;
}

.vip-plan-card.is-active .vip-plan-card-price {
  color: var(--pt-neon-green);
}

.vip-plan-card.is-locked .vip-plan-card-price {
  color: var(--pt-accent);
}

.vip-badge-active {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #059669;
}

.vip-plan-crown-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(109, 40, 217, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-plan-crown-sm i {
  font-size: 16px;
  color: #f59e0b;
}

.vip-plan-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 16px;
}

.vip-feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 9px 7px;
  text-align: center;
  border: 1px solid;
}

.vip-feat-label,
.vip-feat-value {
  display: block;
  width: 100%;
  line-height: 1.25;
}

.vip-feature-badge.feat-ads {
  background: rgba(59, 130, 246, 0.07);
  border-color: rgba(59, 130, 246, 0.2);
}

.vip-feature-badge.feat-validity {
  background: rgba(124, 58, 237, 0.07);
  border-color: rgba(124, 58, 237, 0.2);
}

.vip-feature-badge.feat-support {
  background: rgba(16, 185, 129, 0.07);
  border-color: rgba(16, 185, 129, 0.2);
}

.vip-feat-icon {
  font-size: 12px;
  display: block;
  margin-bottom: 3px;
}

.vip-feat-ads .vip-feat-icon {
  color: #3b82f6;
}

.vip-feat-validity .vip-feat-icon {
  color: var(--pt-accent);
}

.vip-feat-support .vip-feat-icon {
  color: var(--pt-neon-green);
}

.vip-feat-label {
  font-size: 8.5px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
}

.vip-feat-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--pt-text-dark);
}

.vip-plan-divider {
  height: 1px;
  background: rgba(76, 29, 149, 0.1);
  margin-bottom: 15px;
}

.vip-btn-active {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: default;
}

.vip-btn-unlock {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 55%, #9333ea 100%);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.4);
}

@media (max-width: 380px) {
  .pt-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Bottom nav hidden under overlays */
#appBottomNav.app-bottom-nav {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body:has(#paynow.is-open) #appBottomNav,
body:has(.df-modal-overlay.is-open) #appBottomNav {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* ── Dark theme: PTC + VIP (NovaPulse) ── */
html.hn-theme-dark .ptc-shell {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(199, 125, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

html.hn-theme-dark .ptc-header-title {
  color: #e9d5ff !important;
  -webkit-text-fill-color: #e9d5ff;
}

html.hn-theme-dark .ptc-header-sub {
  color: rgba(255, 255, 255, 0.55) !important;
}

html.hn-theme-dark .ptc-plan-bar {
  background: rgba(99, 102, 241, 0.15) !important;
  border-color: rgba(199, 125, 255, 0.25) !important;
}

html.hn-theme-dark .ptc-plan-text strong {
  color: #f3e8ff !important;
}

html.hn-theme-dark .ptc-plan-text p {
  color: rgba(255, 255, 255, 0.6) !important;
}

html.hn-theme-dark .ptc-section-head h2 {
  color: #f3e8ff !important;
}

html.hn-theme-dark .ptc-ad-card,
html.hn-theme-dark .ptc-empty-state {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(199, 125, 255, 0.22) !important;
}

html.hn-theme-dark .ptc-ads-title {
  color: #f3e8ff !important;
}

html.hn-theme-dark .ptc-empty-state h3 {
  color: #e9d5ff !important;
}

html.hn-theme-dark .ptc-empty-state p {
  color: rgba(255, 255, 255, 0.55) !important;
}

html.hn-theme-dark .vip-header-title {
  background: linear-gradient(135deg, #e9d5ff, #c77dff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

html.hn-theme-dark .vip-header-sub,
html.hn-theme-dark .vip-section-title {
  color: rgba(233, 213, 255, 0.75) !important;
}

html.hn-theme-dark .vip-plan-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(199, 125, 255, 0.28) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

html.hn-theme-dark .vip-plan-card-name,
html.hn-theme-dark .vip-feat-value {
  color: #f3e8ff !important;
}

html.hn-theme-dark .vip-feat-label {
  color: rgba(255, 255, 255, 0.55) !important;
}

html.hn-theme-dark .vip-feature-badge {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(199, 125, 255, 0.2) !important;
}

html.hn-theme-dark .vip-plan-card.is-locked .vip-plan-card-price,
html.hn-theme-dark .vip-plan-card.is-active .vip-plan-card-price {
  color: #c77dff !important;
}

html.hn-theme-dark .vip-meta-badge {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(167, 139, 250, 0.38) !important;
}

html.hn-theme-dark .vip-meta-label {
  color: #a78bfa !important;
}

html.hn-theme-dark .vip-meta-value {
  color: #fff !important;
}

html.hn-theme-dark .ptc-pill {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(199, 125, 255, 0.28) !important;
  color: #f3e8ff !important;
}
