/* ========================================= */
/* 💎 ZNST ULTIMATE UI - FINAL FIXED V6 💎 */
/* ========================================= */

:root {
  --neon-green: #00ffa3;
  --neon-glow: rgba(0, 255, 163, 0.4);
  --dark-bg: #050b14;
  --panel-bg: rgba(16, 24, 39, 0.85);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --font-main: "Vazirmatn", "Poppins", sans-serif;
  --wcm-z-index: 10000 !important;
}

/* --- Reset و تنظیمات پایه --- */
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden !important;
  padding-bottom: 80px;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* فونت انگلیسی برای اعداد */
.amount,
.token-name,
input,
.brand,
.unit,
.result-value,
select {
  font-family: "Poppins", sans-serif !important;
}

/* ویدیو پس‌زمینه */
#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(5, 11, 20, 0.7) 0%,
    #050b14 95%
  );
  z-index: -1;
  backdrop-filter: blur(5px);
}

/* --- کانتینر اصلی --- */
.app-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Grid System (دسکتاپ) --- */
.main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.right-column {
  position: sticky;
  top: 20px;
}

/* --- استایل‌های شیشه‌ای --- */
.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glow-border {
  border: 1px solid rgba(0, 255, 163, 0.4);
  box-shadow: 0 0 25px rgba(0, 255, 163, 0.15);
}

/* --- هدر --- */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px var(--neon-glow));
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}
.tagline {
  font-size: 11px;
  color: var(--neon-green);
  letter-spacing: 1px;
}

/* منوی زبان */
.right-header-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.language-menu {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 320px;
  padding: 4px 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.language-menu::-webkit-scrollbar {
  display: none;
}

.language-menu span {
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.language-menu span:hover {
  transform: scale(1.25);
  z-index: 2;
}

.language-menu img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.guide-icon-btn {
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.8;
  font-size: 1.2rem;
}
.guide-icon-btn:hover {
  color: var(--neon-green);
  opacity: 1;
}

/* --- کارت خرید (Purchase Card) --- */
.purchase-card {
  padding: 30px;
  position: relative;
}
.card-header-center {
  text-align: center;
  margin-bottom: 25px;
}
.card-header-center h2 {
  font-size: 20px;
  font-weight: 700;
}

.input-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 15px;
  transition: 0.3s;
  width: 100%;
}
.input-container:focus-within {
  border-color: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-glow);
}
.input-container.filled {
  background: rgba(0, 255, 163, 0.08);
  border-color: rgba(0, 255, 163, 0.3);
}

/* --- مهم: تنظیمات ردیف اینپوت برای جلوگیری از شکستن --- */
.input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap; /* حیاتی: هرگز به خط بعد نرود */
}

/* استایل اینپوت‌ها */
.input-row input,
.result-value {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px; /* کمی کوچک شد برای جا شدن در موبایل */
  font-weight: 700;
  width: 100%;
  outline: none;
  min-width: 0; /* حیاتی: اجازه میدهد اینپوت کوچک شود */
  flex: 1; /* فضای باقی مانده را پر کند */
}

.currency-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #334155;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0; /* حیاتی: اجازه ندهد بج فشرده شود */
  overflow: hidden;
  text-overflow: ellipsis;
}
.currency-badge img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.currency-badge.secondary {
  background: var(--neon-green);
  color: #000;
}

.input-label-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.conversion-arrow {
  display: flex;
  justify-content: center;
  margin: -12px 0;
  position: relative;
  z-index: 2;
}
.conversion-arrow svg {
  background: #0f172a;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 5px;
  width: 32px;
  height: 32px;
  color: var(--text-secondary);
}

/* دکمه‌ها */
.action-buttons {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.btn-connect,
.btn-confirm {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.btn-connect {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-color);
}
.btn-confirm {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #000;
  box-shadow: 0 4px 20px var(--neon-glow);
}
.btn-confirm:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.btn-confirm:disabled {
  background: #334155;
  color: #64748b;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

/* --- چارت و آمار --- */
.chart-wrapper {
  padding: 20px;
  height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.live-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}
#chart {
  flex-grow: 1;
  width: 100%;
  min-height: 0;
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.stat-item h4 {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.stat-value.highlight {
  color: var(--neon-green);
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-color);
}

/* --- کارت دانلود --- */
.download-card {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(16, 24, 39, 0.8) 0%,
    rgba(0, 255, 163, 0.1) 100%
  );
  flex-wrap: wrap;
  gap: 15px;
}
.download-content {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
}
.dl-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.dl-text p {
  font-size: 11px;
  color: var(--text-secondary);
}
.dl-btn {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: 0.3s;
  white-space: nowrap;
}

/* --- کارت سواپ (اصلاح شده برای نمایش کامل) --- */
.swap-card {
  padding: 20px;
  width: 100%;
}
.swap-header h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 15px;
}
.swap-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.swap-row {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  width: 100%;
  gap: 10px;
  flex-wrap: nowrap; /* جلوگیری از شکست خط */
}
.swap-row input,
.swap-result {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  min-width: 0; /* برای اینکه در فضای کم هم جا شود */
  width: 100%;
}

/* FIX 1: بهبود کانتینر انتخاب ارز */
.token-select-wrapper {
  flex-shrink: 0; /* جلوگیری از له شدن */
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.05); /* پس‌زمینه محو برای خوانایی */
  border-radius: 8px;
  padding: 5px 8px;
  min-width: 90px; /* حداقل عرض برای دیده شدن */
}

/* FIX 2: استایل سلکت باکس (مخصوصاً برای آیفون) */
.token-select-wrapper select,
select#crypto-select {
  background: transparent;
  border: none;
  color: var(--neon-green);
  font-weight: 700;
  outline: none;
  width: 100%;
  /* تنظیمات حذف استایل بومی آیفون */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 25px 5px 5px; /* فضای کافی برای متن و فلش */

  /* اضافه کردن فلش دستی */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300ffa3%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
  font-size: 16px; /* جلوگیری از زوم خودکار آیفون */
}

/* در حالت RTL فلش برود سمت چپ */
html[dir="rtl"] .token-select-wrapper select,
html[dir="rtl"] select#crypto-select {
  padding: 5px 5px 5px 25px;
  background-position: left center;
}

.token-select-wrapper img {
  max-width: 24px;
  height: auto;
  margin-right: 8px;
  object-fit: contain;
}

.unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  padding-left: 10px;
}
.swap-divider {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin: -5px 0;
}
.btn-swap {
  width: 100%;
  padding: 12px;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
}

/* ========================================= */
/* 🕵️‍♂️ APP DETECTION & UTILS 🕵️‍♂️ */
/* ========================================= */

body.in-app .app-only-hide {
  display: none !important;
}

body.in-app {
  padding-bottom: 40px !important;
}

.scroll-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* ========================================= */
/* 🚨 MOBILE RESPONSIVE FIX (V6 - ULTIMATE) 🚨 */
/* ========================================= */

@media (max-width: 900px) {
  /* 1. تنظیمات کلی صفحه موبایل */
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
  }

  .app-container {
    padding: 15px 10px !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 2. کارت‌ها تمام عرض شوند */
  .glass-panel,
  .purchase-card,
  .swap-card,
  .chart-wrapper,
  .download-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 15px !important;
    margin: 0 0 15px 0 !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  /* 3. ساختار تک ستونی */
  .main-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .left-column,
  .right-column {
    width: 100%;
    min-width: 0 !important;
  }
  .left-column {
    order: 1;
  }
  .right-column {
    order: 2;
  }

  /* 4. FIX حیاتی برای اینپوت‌ها (رفع مشکل نصفه دیده شدن) */
  .input-container,
  .glow-border {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .input-row,
  .swap-row {
    display: flex !important;
    flex-direction: row !important; /* حتما سطری باشد */
    flex-wrap: nowrap !important; /* شکستن خط ممنوع */
    align-items: center !important;
    width: 100% !important;
    justify-content: space-between;
  }

  /* تنظیم عرض اینپوت‌ها */
  .input-row input,
  .result-value,
  .swap-row input,
  select {
    width: auto !important;
    flex: 1 1 auto !important; /* اجازه رشد و کوچک شدن */
    min-width: 50px !important; /* حداقل عرض برای دیده شدن */
    font-size: 18px !important; /* سایز فونت مناسب موبایل */
    padding: 0 !important;
    background: transparent !important;
  }

  /* بخش سمت چپ (ارز/دراپ‌داون) */
  .currency-badge,
  .token-select-wrapper {
    flex: 0 0 auto !important; /* اندازه ثابت بر اساس محتوا */
    max-width: 45% !important;
    margin-right: 0 !important;
  }

  /* فاصله در RTL */
  html[dir="rtl"] .currency-badge,
  html[dir="rtl"] .token-select-wrapper {
    margin-left: 10px !important;
    margin-right: 0 !important;
  }

  /* فاصله در LTR */
  html[dir="ltr"] .currency-badge,
  html[dir="ltr"] .token-select-wrapper {
    margin-right: 10px !important;
    margin-left: 0 !important;
  }

  /* 5. دکمه‌های پهن */
  .btn-connect,
  .btn-confirm,
  .btn-swap,
  .dl-btn {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* 6. کارت دانلود */
  .download-card {
    flex-direction: column !important;
    text-align: center !important;
  }
  .download-content {
    flex-direction: column !important;
    width: 100% !important;
  }
  .dl-btn {
    width: 100% !important;
    margin-top: 10px;
  }

  .desktop-only {
    display: none !important;
  }
}

/* ========================================= */
/* 🧩 MODALS & EXTRAS 🧩 */
/* ========================================= */

.modal-overlay,
.wallet-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex; /* تغییر به flex برای وسط‌چین شدن */
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
}

/* مخفی کردن پیش‌فرض */
.modal-overlay[style*="display: none"],
.wallet-modal-overlay[style*="display: none"] {
  display: none !important;
}

.modal-content.guide-container {
  width: 90%;
  max-width: 450px;
  background: #1e293b;
  border-radius: 24px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  margin: 0 10px;
}
.guide-header {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 15px;
  text-align: center;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border-color);
}
.guide-timeline {
  padding: 15px;
  overflow-y: auto;
  flex-grow: 1;
  background: #1e293b;
}
.guide-footer {
  padding: 15px;
  background: #1e293b;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}
.guide-done-btn {
  width: 100%;
  padding: 12px;
  background: var(--neon-green);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
}

.guide-step {
  position: relative;
  padding-left: 20px;
  padding-bottom: 25px;
  border-left: 2px dashed rgba(74, 222, 128, 0.2);
}
.guide-step:last-child {
  border-left: none;
  padding-bottom: 0;
}
.guide-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--neon-green);
  border-radius: 50%;
  border: 2px solid #1e293b;
}
.guide-step h3 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}
.guide-step p {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}
.guide-step img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
  border: 1px solid var(--border-color);
}
html[dir="rtl"] .guide-step {
  padding-left: 0;
  padding-right: 20px;
  border-left: none;
  border-right: 2px dashed rgba(74, 222, 128, 0.2);
}
html[dir="rtl"] .guide-step::before {
  left: auto;
  right: -7px;
}

/* --- زیبا سازی مودال انتخاب کیف پول و Coming Soon --- */
.wallet-modal-content {
  background: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  max-width: 90%;
  width: 340px; /* عرض ثابت و مناسب برای موبایل */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  margin: auto;
}

/* دکمه بستن مودال */
.wallet-modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

/* دکمه‌های داخل مودال */
.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.wallet-option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.wallet-option-btn:active {
  background: rgba(255, 255, 255, 0.1);
}
.wallet-option-btn img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
html[dir="rtl"] .wallet-option-btn img {
  margin-right: 0;
  margin-left: 12px;
}
.wallet-option-btn span {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

/* استایل مخصوص مودال Coming Soon */
#modal-soon-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: #3b82f6; /* رنگ آبی */
}

#modal-soon-message {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0 !important;
  margin-bottom: 25px !important;
}

/* دکمه اکشن داخل مودال Coming Soon */
#modal-soon-action-btn {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  margin-top: 10px;
}

#modal-soon-action-btn:active {
  transform: scale(0.96);
}

.highlight-amount {
  color: var(--neon-green);
  font-size: 1.2em;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 163, 0.6);
}
.highlight-unit {
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  margin-left: 5px;
}

wcm-modal {
  position: relative;
  z-index: 10000 !important;
}
