/* ==========================================================================
   ThemeCraft 3D — User Auth, Quotas & Binance Payment Modal Styles
   ========================================================================== */

/* USER STATUS BADGES IN NAV */
.nav-user-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .nav-glass .nav-user-container {
    display: none !important;
  }
}
.nav-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-user-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #0b0f19;
  flex-shrink: 0;
}
.quota-tag {
  background: rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-code);
  white-space: nowrap;
}
.quota-tag.pro {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
}

/* MODAL BACKDROP */
.tc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 15, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: tcFadeIn 0.25s ease-out;
}
.tc-modal-backdrop.active {
  display: flex !important;
}
@keyframes tcFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* MODAL CARD */
.tc-modal-box {
  background: #0f1422;
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 242, 254, 0.15);
  position: relative;
  color: #fff;
}
.tc-modal-box.wide {
  max-width: 640px;
}
.tc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.tc-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: #ef4444;
}

/* MODAL HEADERS */
.tc-modal-header {
  text-align: center;
  margin-bottom: 24px;
}
.tc-modal-header .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
}
.tc-modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.tc-modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* FORM CONTROLS */
.tc-form-group {
  margin-bottom: 18px;
}
.tc-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 7px;
}
.tc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.tc-input-wrap i.prefix-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 14px;
}
.tc-form-input {
  width: 100%;
  background: #090c14;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s;
  outline: none;
}
.tc-form-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.25);
}

/* OTP DIGIT BOXES */
.otp-inputs-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}
.otp-digit {
  width: 48px;
  height: 56px;
  background: #090c14;
  border: 2px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-secondary);
  text-align: center;
  font-family: var(--font-code);
  transition: all 0.2s;
  outline: none;
}
.otp-digit:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.35);
  transform: translateY(-2px);
}

/* PRICING / PAYWALL CARDS */
.tc-pricing-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(0, 242, 254, 0.1));
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-pricing-banner .price-tag {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tc-pricing-banner .duration {
  font-size: 12px;
  color: var(--text-dim);
}

/* CRYPTO PAYMENT BOX */
.crypto-details-card {
  background: #090c14;
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 22px;
}
.crypto-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}
.crypto-row:last-child {
  border-bottom: none;
}
.crypto-row .label {
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.crypto-row .value {
  font-family: var(--font-code);
  color: #fff;
  font-weight: 600;
  word-break: break-all;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-copy {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--color-secondary);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-copy:hover {
  background: var(--color-secondary);
  color: #0b0f19;
}

/* QR CODE WRAP */
.qr-code-center {
  text-align: center;
  margin: 16px 0 20px;
}
.qr-code-img {
  width: 170px;
  height: 170px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
  display: inline-block;
}

/* SCREENSHOT UPLOAD DROPZONE */
.ss-dropzone {
  border: 2px dashed var(--border-subtle);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 18px;
}
.ss-dropzone:hover, .ss-dropzone.drag-active {
  border-color: var(--color-secondary);
  background: rgba(0, 242, 254, 0.05);
}
.ss-preview {
  max-width: 100%;
  max-height: 160px;
  border-radius: 8px;
  margin-top: 10px;
  display: none;
  object-fit: contain;
  border: 1px solid var(--border-glow);
}

/* TOKEN REDEEM CARD */
.token-redeem-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.token-redeem-card h4 {
  font-size: 14px;
  margin: 0 0 10px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.token-input-group {
  display: flex;
  gap: 8px;
}
.token-input-group input {
  flex: 1;
  background: #090c14;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-code);
  font-size: 13px;
  outline: none;
}
.token-input-group input:focus {
  border-color: var(--color-secondary);
}

/* STATUS ALERTS */
.tc-alert {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-alert-warning {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
}
.tc-alert-info {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: #a5f3fc;
}
.tc-alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
}

/* ==========================================================================
   DURATION SELECTOR TABS IN PAYMENT MODAL
   ========================================================================== */
.tc-duration-tabs {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 5px;
  margin: 14px 0 16px;
}
.d-tab {
  flex: 1;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.25s ease;
}
.d-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.d-tab.active {
  background: rgba(99, 102, 241, 0.25);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.35);
}
.d-badge {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   PRICING SECTION & MODERN 3D PRICING CARDS
   ========================================================================== */
.pricing-section {
  padding: 90px 24px;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.09) 0%, transparent 70%);
  overflow: visible;
}
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
.pricing-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.pricing-header .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 28px 0 10px;
}
.pricing-switch-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-switch-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.pricing-switch-btn.active {
  background: var(--gradient-indigo);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
  padding-top: 28px;
  overflow: visible;
}
@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 38px;
    padding-top: 24px;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 38px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  overflow: visible;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 35px rgba(99, 102, 241, 0.25);
}
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.85) 0%, rgba(15, 21, 38, 0.95) 100%);
  border-color: var(--border-glow);
  box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.35);
  position: relative;
  z-index: 2;
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-neon);
  color: #0b0f19;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
}
.plan-tier-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.plan-tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 38px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.plan-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}
.plan-amount {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.plan-duration {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}
.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  flex: 1;
}
.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}
.plan-features-list li i {
  color: var(--color-emerald);
  font-size: 13px;
  flex-shrink: 0;
}
.plan-cta-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
}
.plan-cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.plan-cta-btn.primary {
  background: var(--gradient-indigo);
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}
.plan-cta-btn.primary:hover {
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.55);
}

/* ==========================================================================
   STANDALONE PRICING COMPARISON TABLE & FAQ
   ========================================================================== */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 50px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}
.pricing-compare-table th, .pricing-compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-compare-table th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  color: #fff;
}
.pricing-compare-table tr:last-child td {
  border-bottom: none;
}
.pricing-compare-table td:not(:first-child), .pricing-compare-table th:not(:first-child) {
  text-align: center;
}
.pricing-check {
  color: var(--color-emerald);
  font-size: 16px;
}
.pricing-cross {
  color: var(--text-dim);
  font-size: 14px;
}

/* CRYPTO PAYMENT INFO BOX */
.crypto-guide-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 27, 75, 0.6) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 32px;
  margin-top: 50px;
}
.crypto-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.crypto-guide-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  padding: 18px;
  border-radius: 12px;
}

/* FAQ ACCORDION */
.faq-section {
  padding: 80px 24px;
}
.faq-grid {
  max-width: 860px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 22px 26px;
  transition: all 0.25s ease;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-question i {
  color: var(--color-secondary);
  font-size: 14px;
}
.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ADSENSE AD CONTAINER SLOTS (Hidden until approved & active) */
.ilc-ad-slot {
  display: none !important;
  margin: 36px auto;
  max-width: 970px;
  min-height: 90px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
}
.ilc-ad-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

/* ==========================================================================
   ULTRA-COMPACT RESPONSIVE RULES FOR MODALS, PRICING & PAYMENT (300px - 360px)
   ========================================================================== */
@media (max-width: 360px) {
  /* MODAL POSITIONING & BOX */
  .tc-modal-backdrop {
    padding: 6px !important;
  }
  .tc-modal-box {
    padding: 20px 12px !important;
    border-radius: 14px !important;
    max-height: 94vh !important;
    width: 100% !important;
  }
  .tc-modal-close {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
  .tc-modal-header {
    margin-bottom: 16px !important;
  }
  .tc-modal-header .icon-wrap {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
  }
  .tc-modal-header h2 {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  .tc-modal-header p {
    font-size: 12px !important;
  }

  /* FORMS & INPUTS */
  .tc-form-group {
    margin-bottom: 14px !important;
  }
  .tc-form-input {
    padding: 10px 12px 10px 34px !important;
    font-size: 13px !important;
  }
  .tc-input-wrap i.prefix-icon {
    left: 10px !important;
    font-size: 13px !important;
  }

  /* OTP INPUTS SCALING (6 DIGITS FITTING COMFORTABLY IN 280px-300px) */
  .otp-inputs-row {
    gap: 4px !important;
    margin: 14px 0 !important;
    justify-content: center !important;
  }
  .otp-digit {
    width: 34px !important;
    height: 42px !important;
    font-size: 18px !important;
    border-radius: 6px !important;
  }

  /* CRYPTO PAYMENT CARD */
  .crypto-details-card {
    padding: 12px 10px !important;
    border-radius: 10px !important;
  }
  .crypto-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 8px 0 !important;
  }
  .crypto-row .value {
    font-size: 11px !important;
    word-break: break-all !important;
    flex-wrap: wrap !important;
  }
  .btn-copy {
    padding: 3px 8px !important;
    font-size: 10px !important;
  }
  .qr-code-img {
    width: 140px !important;
    height: 140px !important;
  }
  .token-input-group {
    flex-direction: column !important;
  }
  .token-input-group input {
    width: 100% !important;
  }
  .token-input-group button {
    width: 100% !important;
    justify-content: center !important;
  }

  /* PRICING PAGE ON SMALL MOBILES */
  .pricing-header h2 {
    font-size: 24px !important;
  }
  .pricing-header p {
    font-size: 13px !important;
  }
  .pricing-toggle-wrap {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .pricing-switch-btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .pricing-card {
    padding: 22px 14px !important;
    border-radius: 14px !important;
  }
  .plan-amount {
    font-size: 38px !important;
  }
  .plan-features-list li {
    font-size: 12px !important;
    gap: 8px !important;
  }
  .pricing-table-wrap {
    margin-top: 30px !important;
  }
  .pricing-compare-table {
    font-size: 11px !important;
  }
  .pricing-compare-table th, .pricing-compare-table td {
    padding: 10px 8px !important;
  }
  .faq-section {
    padding: 40px 8px !important;
  }
  .faq-item {
    padding: 14px 10px !important;
  }
  .faq-question {
    font-size: 14px !important;
  }
  .faq-answer {
    font-size: 12px !important;
  }
}

@media (max-width: 320px) {
  .otp-digit {
    width: 30px !important;
    height: 38px !important;
    font-size: 16px !important;
  }
  .qr-code-img {
    width: 120px !important;
    height: 120px !important;
  }
  .pricing-card {
    padding: 18px 10px !important;
  }
  .plan-amount {
    font-size: 32px !important;
  }
  .crypto-row .value {
    font-size: 10px !important;
  }
}

