:root {
    --bg-primary: #F0F4FF;        /* پس‌زمینه کلی آبی روشن */
    --bg-secondary: #FFFFFF;      /* کارت‌ها و هدر سفید */
    --text-primary: #1E293B;      /* متن تیره */
    --text-secondary: #64748B;    /* متن ملایم */
    --blue-primary: #3B82F6;      /* آبی اصلی */
    --blue-soft: #BFDBFE;         /* آبی خیلی ملایم */
    --blue-hover: #2563EB;        /* آبی تیره‌تر برای هاور */
    --green: #22C55E;             /* سبز وضعیت */
    --border-color: #D1D5DB;      /* مرزها و خطوط ملایم */
}

body {
    font-family: 'IRANSans', Tahoma, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    direction: rtl;
}

/* ===== هدر ===== */
.header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--blue-primary);
}

/* ===== موجودی و دکمه ===== */
.balance-display {
    background-color: var(--blue-soft);
    color: var(--text-primary);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.btn {
    background-color: var(--blue-primary);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn:hover {
    background-color: var(--blue-hover);
}
.credit-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--blue-soft);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.credit-box h3 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.credit-days {
    font-size: 0.85rem;
    color: var(--blue-primary);
    margin-bottom: 0.4rem;
}

/* همان استایل نوار پیشرفت کارت‌ها */
.credit-box .progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--blue-soft);
    border-radius: 3px;
    overflow: hidden;
}

.credit-box .progress-fill {
    height: 100%;
    background-color: #F59E0B; /* نارنجی ملایم */
}

/* ===== سایدبار ===== */
/* ===== سایدبار ===== *//* ===== هدر ===== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 60px; /* ارتفاع هدر */
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    z-index: 1001; /* جلوتر از سایدبار */
}

/* ===== سایدبار ===== */
.sidebar {
    position: fixed;
    top: 85px; /* دقیقا زیر هدر */
    right: 0;
    bottom: 0;
    width: 230px;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: 1000; /* زیر هدر باشه */
}

/* ===== محتوای اصلی ===== */
.main-content {
    margin-top: 80px;   /* زیر هدر قرار بگیره */
    margin-right: 230px; /* کنار سایدبار قرار بگیره */
    padding: 1rem;
    flex: 1;
}

.menu-item {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: background-color 0.2s;
    margin-bottom: 0.4rem;
}

.menu-item:hover {
    background-color: var(--blue-soft);
    color: var(--text-primary);
}

.menu-item.active {
    background-color: #E0F2FE;
    color: var(--blue-primary);
}

/* ===== محتوای اصلی ===== */
.main-content {
    flex: 1;
    padding: 1rem;
    margin-right: 230px; /* برای دسکتاپ، چون سایدبار ثابت */
}

/* موبایل: سایدبار آف‌-کانواس هست، پس margin-right لازم نیست */
@media (max-width: 768px) {
    .main-content {
        margin-right: 0;
    }
}


/* ===== کارت‌های وضعیت ===== */
/* ===== کارت‌ها به‌صورت لیست ===== */
.stats-container {
    display: flex;
    flex-direction: column;   /* ستونی */
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.resource-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-secondary);
    border: 1px solid var(--blue-soft);
    padding: 0.7rem 1rem;
    border-radius: 6px;
}

.resource-title {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.resource-value {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 0.4rem;
}

/* ===== نوار پیشرفت نازک و ملایم ===== */
.progress-bar {
    width: 100%;
    height: 4px;                  /* نازک‌تر */
    background-color: var(--blue-soft);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--blue-primary);
    transition: width 0.3s ease;
}


/* ===== سرویس‌های فعال ===== */
.active-services {
    background-color: var(--bg-secondary);
    border: 1px solid var(--blue-soft);
    padding: 1rem;
    border-radius: 6px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem;
    background-color: #F9FAFB;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* استایل زیرمنو */
.submenu {
    display: none;
    padding-right: 20px;
    flex-direction: column;
}

.submenu a {
    font-size: 14px;
    color: #555;
    margin: 3px 0;
}

/* استایل باز شدن */
.menu-dropdown.open .submenu {
    display: flex;
}

/* استایل فلش کنارش */
.dropdown-toggle::after {
    content: "\25BC"; /* فلش پایین */
    float: left;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu-dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg); /* وقتی باز شد فلش بچرخه */
}
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }

  #sidebar {
    position: fixed;
    width: 80vw; max-width: 320px;
    height: 100dvh;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    box-shadow: -2px 0 12px rgba(0,0,0,.15);
  }
  body.menu-open #sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  body:not(.menu-open) .sidebar-backdrop {
    display: none;
  }
}



#mobileMenuBtn {
  display: none; /* دسکتاپ مخفی */
}

@media (max-width: 768px) {
  #mobileMenuBtn {
    display: inline-flex; /* موبایل نمایش داده بشه */
    align-items: center;
    justify-content: center;
  }
}

/* ===== مودال (بک‌دراپ) ===== */
.modal {
  position: fixed;
  inset: 0; /* top, right, bottom, left = 0 */
  display: none; /* پیش‌فرض مخفی */
  align-items: center; /* عمودی وسط */
  justify-content: center; /* افقی وسط */
  background: rgba(0,0,0,.55);
  z-index: 1000;
  backdrop-filter: blur(2px); /* محو پس‌زمینه */
}

/* ===== جعبه مودال ===== */
.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  animation: modalFadeIn .3s ease;
  font-family: "Vazir", sans-serif; /* فونت فارسی (درصورت نصب) */
  margin: auto;
}

/* انیمیشن ورود */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== هدر مودال ===== */
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.modal-header h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #1f2937; /* خاکستری تیره */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-header i {
  color: #2563eb; /* آبی */
}

.close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280; /* خاکستری */
  transition: color .2s;
}
.close-modal:hover {
  color: #dc2626; /* قرمز */
}

/* ===== بدنه مودال ===== */
.modal-body label {
  font-size: 0.95rem;
  color: #374151;
  display: block;
  margin-bottom: 0.5rem;
}

/* ===== ورودی مبلغ ===== */
.amount-input-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
}

.currency-symbol {
  background: #f3f4f6;
  padding: 0.5rem 0.75rem;
  border-left: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #374151;
}

.input-field {
  flex: 1;
  padding: 0.75rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  direction: rtl;
  text-align: right;
}

/* ===== دکمه پرداخت ===== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: .85rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: all .25s;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 6px 16px rgba(37,99,235,.4);
}
.btn-primary i {
  font-size: 1.1rem;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 480px) {
  .modal-content {
    padding: 1rem;
    border-radius: 12px;
  }
  .modal-header h2 {
    font-size: 1rem;
  }
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
}
/* باکس احراز هویت */
.auth-box {
  max-width: 450px;
  margin: auto;
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* فرم */
label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 600;
  color: #444;
}

input {
  width: 95%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}
input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
  background: #fff;
}

/* چینش کنار هم */
.inline {
  display: flex;
  gap: 8px;
}

/* دکمه‌ها */
button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#sendCodeBtn, #verifyBtn {
  background: #2196F3;
  color: white;
}
#sendCodeBtn:hover, #verifyBtn:hover {
  background: #1976D2;
}

#submitBtn {
  background: #4CAF50;
  color: white;
  width: 100%;
  margin-top: 20px;
}
#submitBtn:hover {
  background: #388E3C;
}

/* نمایش تدریجی */
.hidden { display: none; }
.fade-in { animation: fadeIn 0.5s ease forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



  .host-selection, .country-selection, .plans-grid, .os-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
  }
  .host-card, .country-card, .plan-card, .os-card {
    flex: 1 1 calc(25% - 1rem);
    background: var(--bg-secondary);
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  .host-card.selected, .country-card.selected,
  .plan-card.selected, .os-card.selected {
    border-color: var(--blue-primary);
  }
  .feature-list { list-style: none; padding: 0; margin: .5rem 0 0 0; }
  .feature-list li { font-size: .9rem; color: var(--text-secondary); }
  
  .resource-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resource-info {
  display: flex;
  flex-direction: column;
}

.server-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.server-meta {
  font-size: .85rem;
  color: #555;
}

.status-badge {
  background: #22c55e;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: .8rem;
}

.vm-main-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem;
  background: #f5f7fa; /* بک‌گراند ملایم */
  min-height: calc(100vh - 60px); /* ارتفاع کل صفحه منهای هدر */
}
@media (max-width: 768px) {
  .vm-main-content {
    padding: 3rem; /* گوشی فضای کمتر */
  }
}

/* کارت سرور */
.vm-server-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 600px; /* کارت وسط صفحه */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: vm-fadeIn 0.4s ease;
}

/* عنوان کارت */
.vm-server-card h1 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: .5rem;
}

/* مشخصات سرور */
.vm-server-details p {
  margin: .6rem 0;
  font-size: .95rem;
  color: #374151;
}
.vm-server-details strong {
  color: #111827;
}

/* دکمه‌ها */
.vm-server-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.vm-server-actions .vm-btn {
  flex: 1;
  text-align: center;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: #2563eb;
  color: #fff;
  transition: background .2s ease;
}
.vm-server-actions .vm-btn:hover {
  background: #1d4ed8;
}
.vm-server-actions .vm-btn-danger {
  background: #dc2626;
}
.vm-server-actions .vm-btn-danger:hover {
  background: #b91c1c;
}

/* انیمیشن */
@keyframes vm-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


table.transactions {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
table.transactions th, table.transactions td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
table.transactions th {
  background: #f5f5f5;
  font-weight: bold;
}
.status.paid { color: green; font-weight: bold; }
.status.unpaid { color: red; font-weight: bold; }
.btn-pay {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
}
.status-badge.success {
    background-color: #16a34a; /* سبز */
    color: #fff;
}

.status-badge.danger {
    background-color: #dc2626; /* قرمز */
    color: #fff;
}
/* ===== بخش کلی تنظیمات ===== */
.user-actions {
  flex: 1; /* پر کنه فضای کنار سایدبار */
  padding: 20px;
  background: #f9f9f9;
  min-height: 100vh; /* تا ارتفاع کل صفحه کشیده بشه */
}

.user-section {
  display: flex;
  flex-direction: column;
  gap: 20px; /* فاصله بین سکشن‌ها */
}

/* ===== سکشن‌ها ===== */
.section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
}

.section-header h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.section-content {
  margin-top: 10px;
}

/* ===== فرم‌ها ===== */
.section-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-content input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.section-content input:focus {
  border-color: #0077ff;
}

/* ===== دکمه‌ها ===== */
.btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: #005fcc;
}

.btn.delete {
  background: #e53935;
}

.btn.delete:hover {
  background: #c62828;
}

/* ===== متن خطر ===== */
.danger {
  color: #e53935;
  font-weight: bold;
}

.country-card img.emoji {
  width: 20px;   /* عرض پرچم */
  height: 20px;  /* ارتفاع پرچم */
  vertical-align: middle; /* وسط‌چین بشه کنار متن */
  margin-left: 5px; /* فاصله با متن */
}
/* جدول تراکنش‌ها */
table.transactions {
  width: 100%;              /* تمام عرض کانتینر */
  border-collapse: collapse; /* حذف فاصله بین سلول‌ها */
  margin-top: 1rem;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table.transactions th,
table.transactions td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
  font-size: 0.9rem;
}

table.transactions th {
  background: #f5f5f5;
  font-weight: bold;
  color: #333;
}

table.transactions tr:last-child td {
  border-bottom: none; /* خط آخر جدول حذف بشه */
}

/* وضعیت پرداخت */
.status.paid {
  color: #16a34a; /* سبز */
  font-weight: bold;
}
.status.unpaid {
  color: #dc2626; /* قرمز */
  font-weight: bold;
}

/* دکمه پرداخت */
.btn-pay {
  background: #2563eb;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.btn-pay:hover {
  background: #1d4ed8;
}

/* ریسپانسیو موبایل */
@media (max-width: 600px) {
  table.transactions th,
  table.transactions td {
    padding: 8px;
    font-size: 0.8rem;
  }
  table.transactions {
    font-size: 0.85rem;
    display: block;
    overflow-x: auto; /* جدول اسکرول افقی بخوره */
    white-space: nowrap;
  }
}
/* ===== کارت‌ها (resource-item, section, vm-server-card) ===== */
.resource-item, .section, .vm-server-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.resource-item:hover, .section:hover, .vm-server-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== وضعیت سرورها (status-badge) ===== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px; /* گرد کامل */
  font-size: .8rem;
  font-weight: 600;
}
.status-badge.running {
  background: #dcfce7;
  color: #166534;
}
.status-badge.stopped {
  background: #fee2e2;
  color: #991b1b;
}
.status-badge.pending {
  background: #fef9c3;
  color: #92400e;
}

/* ===== دکمه اصلی (btn-primary) ===== */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 10px;
  font-weight: 600;
  padding: .7rem 1.2rem;
  box-shadow: 0 3px 10px rgba(37,99,235,.25);
  transition: all .25s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37,99,235,.35);
}

/* ===== هدر و سایدبار ===== */
.header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.sidebar {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-left: 1px solid #e5e7eb;
}
.menu-item.active {
  background: linear-gradient(90deg, #eff6ff, #dbeafe);
  color: #2563eb;
  font-weight: 600;
}

/* ===== انیمیشن ورود کارت‌ها ===== */
.resource-item {
  animation: fadeInUp .5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.server-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;  /* متن تیره */
  margin-bottom: .4rem;
}

.server-meta {
  font-size: .85rem;
  color: #64748b;  /* متن ملایم */
  line-height: 1.6;
}
.resource-footer {
  display: flex;
  align-items: center;
  gap: 10px; /* فاصله بین دکمه و وضعیت */
}
.deposit-card {
    background: radial-gradient(1200px 600px at 100% -10%, rgba(34, 197, 94, 0.12), transparent 40%), linear-gradient(357deg, #1057ff, #ffffff);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  color: #e5e7eb;
}

.deposit-card::after {
  content: "";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(34,197,94,0.15), transparent 60%);
  filter: blur(6px);
  pointer-events: none;
}

.deposit-level-text {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: .1px;
}

.deposit-progress-text {
  margin: 6px 0 10px;
  font-size: .92rem;
  font-weight: 600;
  color: #93c5fd;
}

.deposit-card .progress-bar {
  width: 100%;
  height: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.deposit-card .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a 60%, #0ea5e9);
  box-shadow: 0 0 12px rgba(34,197,94,.35);
  transition: width .35s ease;
}
