:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #f59e0b;
  --success: #10b981;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --border: #e2e8f0;

  --color-gold: #fbbf24;
  --color-diamond: #ec4899;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --bg-card: #1a1a24;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --border: #2a2a3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-top: 80px;
  padding-bottom: 2rem;
}

/* Animated Background */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-gradient-1,
.bg-gradient-2,
.bg-gradient-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.bg-gradient-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent);
  top: -200px;
  left: -200px;
}

.bg-gradient-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25), transparent);
  top: 40%;
  right: -150px;
  animation-delay: 7s;
}

.bg-gradient-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
  bottom: -200px;
  left: 40%;
  animation-delay: 14s;
}

.bg-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(99, 102, 241, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
}

[data-theme="dark"] .floating-nav {
  background: rgba(26, 26, 36, 0.85);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  color: var(--text-primary);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn svg,
.nav-btn i {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}

/* Dark mode specific styling for nav buttons */
[data-theme="dark"] .nav-btn {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .nav-btn i {
  color: var(--text-primary);
}

.theme-icon {
  width: 18px;
  height: 18px;
  position: absolute;
  transition: var(--transition);
}

.theme-icon.theme-light {
  color: #f59e0b !important;
}

.theme-icon.theme-dark {
  color: #6366f1 !important;
}

[data-theme="light"] .theme-light {
  opacity: 0;
  transform: rotate(-90deg);
}

[data-theme="light"] .theme-dark {
  opacity: 1;
  transform: rotate(0);
}

[data-theme="dark"] .theme-light {
  opacity: 1;
  transform: rotate(0);
}

[data-theme="dark"] .theme-dark {
  opacity: 0;
  transform: rotate(90deg);
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 0.5rem;
}

/* Subscription Card */
.subscription-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
}

/* Section - SPLIT INTO SEPARATE CARDS */
.section {
  margin-bottom: 1rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.section-header i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Plan Options */
.plan-options,
.subscription-options,
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan,
.option,
.payment-method {
  display: flex;
  align-items: center;
  padding: 0.875rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
}

.plan:hover,
.option:hover,
.payment-method:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.plan:active,
.option:active,
.payment-method:active {
  transform: translateY(0);
}

.plan.selected-item,
.option.selected-item,
.payment-method.selected-item {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

/* Radio Button */
.radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.radio.selected {
  border-color: var(--primary);
  background: var(--primary);
}

.radio.selected::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Plan Details */
.plan-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  margin-left: 0.75rem;
}

.plan-image,
.method-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.plan-image img,
.method-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-info {
  flex: 1;
}

.plan-name,
.option-name,
.method-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

/* Option Details */
.option {
  justify-content: space-between;
}

.option-details {
  flex: 1;
  margin-left: 0.75rem;
}

.sublabel {
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.price {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Payment Method */
.method-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  margin-left: 0.75rem;
}

/* Invoice Summary */
.invoice-summary {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.invoice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
}

.invoice-item:first-child {
  padding-top: 0;
}

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

.invoice-item.total {
  padding-top: 0.875rem;
  margin-top: 0.625rem;
  border-top: 2px solid var(--border);
}

.item-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.item-label i {
  width: 16px;
  height: 16px;
}

.item-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8125rem;
  text-align: right;
}

.total-amount {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
}

/* User ID Input */
#user-id-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#user-id-input {
  display: none;
  padding: 0.375rem 0.5rem;
  font-size: 0.8125rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  width: 120px;
}

#user-id-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Payment Note */
.payment-note-box {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.875rem;
}

.payment-note {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}

.payment-note.warning {
  color: #ef4444;
}

.payment-note-box.warning {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}

/* Create Invoice Button */
.create-invoice-btn,
.pay-now-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
}

.create-invoice-btn i,
.pay-now-btn i {
  width: 20px;
  height: 20px;
}

.create-invoice-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.create-invoice-btn:hover {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4), var(--shadow-lg);
  transform: translateY(-2px);
}

.create-invoice-btn:active {
  transform: translateY(0);
}

.create-invoice-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.pay-now-btn {
  background: linear-gradient(135deg, var(--success), #059669);
}

.pay-now-btn:hover {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4), var(--shadow-lg);
  transform: translateY(-2px);
}

.pay-now-btn:active {
  transform: translateY(0);
}

/* ========================================
   CRYPTOCURRENCY MODAL - COMPACT & MOBILE-FRIENDLY
   ======================================== */

.crypto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.crypto-modal.active {
  opacity: 1;
}

.crypto-modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  position: relative;
  animation: modalPop 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.crypto-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  color: white;
}

.crypto-modal-close i {
  width: 16px;
  height: 16px;
}

.crypto-modal-close:hover {
  background: #ef4444;
  transform: rotate(90deg) scale(1.1);
}

.crypto-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.crypto-modal-header {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
  border-bottom: 1px solid var(--border);
}

.crypto-modal-header i {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.crypto-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

.crypto-modal-header p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.crypto-wallets {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.crypto-wallet-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.crypto-wallet-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.crypto-wallet-header {
  padding: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.08),
    rgba(236, 72, 153, 0.08)
  );
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.crypto-currency {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.crypto-network {
  font-size: 0.625rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.crypto-wallet-body {
  padding: 0.75rem;
}

.crypto-amount {
  margin-bottom: 0.75rem;
}

.crypto-address {
  margin-bottom: 0.625rem;
}

.crypto-label {
  display: block;
  font-size: 0.625rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.crypto-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.crypto-address-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.crypto-code {
  flex: 1;
  background: var(--bg-card);
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-family: "Courier New", monospace;
  color: var(--text-primary);
  word-break: break-all;
  border: 1px solid var(--border);
  line-height: 1.4;
}

.crypto-copy-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.crypto-copy-btn i {
  width: 16px;
  height: 16px;
}

.crypto-copy-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.crypto-copy-btn:active {
  transform: scale(0.95);
}

.crypto-copy-btn.copied {
  background: var(--success);
}

.crypto-note {
  font-size: 0.6875rem;
  color: #ef4444;
  padding: 0.5rem 0.625rem;
  background: rgba(239, 68, 68, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid #ef4444;
  line-height: 1.4;
  font-weight: 500;
}

.crypto-instructions {
  padding: 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.crypto-instructions h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}

.crypto-instructions ol {
  list-style-position: inside;
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.6;
  padding-left: 0;
}

.crypto-instructions li {
  margin-bottom: 0.375rem;
  padding-left: 0.25rem;
}

.crypto-instructions li:last-child {
  margin-bottom: 0;
}

.crypto-modal-btn {
  width: calc(100% - 2rem);
  margin: 1rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.crypto-modal-btn i {
  width: 18px;
  height: 18px;
}

.crypto-modal-btn:hover {
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.crypto-modal-btn:active {
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE - MOBILE OPTIMIZED
   ======================================== */

@media (max-width: 640px) {
  body {
    padding-top: 76px;
  }

  .container {
    padding: 0 0.75rem;
    padding-top: 0.75rem;
  }

  .section {
    padding: 1rem;
    margin-bottom: 0.875rem;
  }

  .section:first-child {
    margin-top: 0.5rem;
  }

  .section-header {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
  }

  .section-header i {
    width: 18px;
    height: 18px;
  }

  .plan,
  .option,
  .payment-method {
    padding: 0.75rem;
  }

  .plan-image,
  .method-icon {
    width: 36px;
    height: 36px;
  }

  .plan-name,
  .option-name,
  .method-name {
    font-size: 0.875rem;
  }

  .sublabel {
    font-size: 0.6875rem;
  }

  .price {
    font-size: 1rem;
  }

  .radio {
    width: 18px;
    height: 18px;
  }

  .radio.selected::after {
    width: 7px;
    height: 7px;
  }

  .invoice-summary {
    padding: 0.875rem;
  }

  .invoice-item {
    padding: 0.5rem 0;
  }

  .item-label,
  .item-value {
    font-size: 0.75rem;
  }

  .item-label i {
    width: 14px;
    height: 14px;
  }

  .total-amount {
    font-size: 1.125rem;
  }

  .payment-note-box {
    padding: 0.75rem;
  }

  .payment-note {
    font-size: 0.75rem;
  }

  .create-invoice-btn,
  .pay-now-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
  }

  .create-invoice-btn i,
  .pay-now-btn i {
    width: 18px;
    height: 18px;
  }

  /* Crypto Modal Mobile */
  .crypto-modal {
    padding: 0.75rem;
  }

  .crypto-modal-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
  }

  .crypto-modal-header {
    padding: 1.25rem 0.875rem 0.875rem;
  }

  .crypto-modal-header i {
    width: 24px;
    height: 24px;
  }

  .crypto-modal-header h2 {
    font-size: 1.125rem;
  }

  .crypto-modal-header p {
    font-size: 0.75rem;
  }

  .crypto-wallets {
    padding: 0.875rem;
    gap: 0.625rem;
  }

  .crypto-wallet-header {
    padding: 0.625rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .crypto-currency {
    font-size: 0.8125rem;
  }

  .crypto-network {
    font-size: 0.5625rem;
  }

  .crypto-wallet-body {
    padding: 0.625rem;
  }

  .crypto-value {
    font-size: 0.9375rem;
  }

  .crypto-code {
    font-size: 0.625rem;
    padding: 0.5rem 0.625rem;
  }

  .crypto-copy-btn {
    width: 32px;
    height: 32px;
  }

  .crypto-copy-btn i {
    width: 14px;
    height: 14px;
  }

  .crypto-note {
    font-size: 0.625rem;
    padding: 0.4375rem 0.5rem;
  }

  .crypto-instructions {
    padding: 0.875rem;
  }

  .crypto-instructions h3 {
    font-size: 0.75rem;
  }

  .crypto-instructions ol {
    font-size: 0.6875rem;
  }

  .crypto-modal-btn {
    margin: 0.875rem;
    width: calc(100% - 1.75rem);
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  .crypto-modal-btn i {
    width: 16px;
    height: 16px;
  }

  .crypto-modal-close {
    width: 28px;
    height: 28px;
    top: 0.625rem;
    right: 0.625rem;
  }

  .crypto-modal-close i {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 380px) {
  body {
    padding-top: 80px;
  }

  .container {
    padding-top: 1rem;
  }

  .plan-details,
  .method-info {
    gap: 0.5rem;
  }

  .plan-image,
  .method-icon {
    width: 32px;
    height: 32px;
  }

  .plan-name,
  .option-name,
  .method-name {
    font-size: 0.8125rem;
  }

  .price {
    font-size: 0.9375rem;
  }

  /* Extra small crypto modal */
  .crypto-modal {
    padding: 0.5rem;
  }

  .crypto-modal-header h2 {
    font-size: 1rem;
  }

  .crypto-wallets {
    padding: 0.75rem;
  }

  .crypto-currency {
    font-size: 0.75rem;
  }

  .crypto-value {
    font-size: 0.875rem;
  }

  .crypto-code {
    font-size: 0.5625rem;
    padding: 0.4375rem 0.5rem;
  }

  .crypto-copy-btn {
    width: 28px;
    height: 28px;
  }

  .crypto-instructions h3 {
    font-size: 0.6875rem;
  }

  .crypto-instructions ol {
    font-size: 0.625rem;
  }
}
