:root {
  --bg-color: var(--tg-theme-bg-color, #17212b);
  --secondary-bg-color: var(--tg-theme-secondary-bg-color, #0e1621);
  --card-bg: #242f3d;
  --card-border: rgba(255, 255, 255, 0.08);
  --text-color: var(--tg-theme-text-color, #f5f5f5);
  --text-secondary: var(--tg-theme-hint-color, #7e8b9b);
  --text-muted: #5c6878;
  --accent-blue: var(--tg-theme-button-color, #2481cc);
  --accent-blue-hover: #1c72b8;
  --accent-green: #2bb982;
  --accent-orange: #e59a35;
  --accent-red: #e65353;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --safe-bottom: env(safe-area-inset-bottom, 16px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  background-color: var(--secondary-bg-color);
  color: var(--text-color);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  min-height: 100vh;
  user-select: none;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
}
.uppercase {
  text-transform: uppercase;
}
.text-green { color: var(--accent-green); }
.text-orange { color: var(--accent-orange); }
.text-red { color: var(--accent-red); }
.d-none {
  display: none !important;
}
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }
.my-3 { margin-top: 14px; margin-bottom: 14px; }
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background-color: var(--secondary-bg-color);
}
.login-card {
  width: 100%;
  max-width: 380px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.login-logo {
  font-size: 40px;
  margin-bottom: 10px;
}
.login-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}
.login-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 8px;
}
.waiting-spinner-box {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.waiting-icon {
  font-size: 32px;
  z-index: 2;
}
.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-blue);
  animation: pulse-animation 1.6s ease-out infinite;
}
@keyframes pulse-animation {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
.waiting-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}
.waiting-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.waiting-status {
  font-size: 12px;
}
.app-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-bg-color);
  padding-bottom: calc(70px + var(--safe-bottom));
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--card-border);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.user-meta {
  display: flex;
  flex-direction: column;
}
.user-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.user-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-color);
}
.user-id-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}
.user-id-value {
  color: var(--accent-blue);
  font-weight: 600;
}
.btn-icon {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.btn-icon:hover {
  color: var(--text-color);
}
.btn-refresh {
  width: 36px;
  height: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
}
.btn-refresh.spinning svg {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.app-main {
  padding: 14px 16px;
  flex: 1;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.section-header {
  margin-bottom: 14px;
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-color);
}
.section-desc {
  font-size: 13px;
  color: var(--text-secondary);
}
.card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 16px;
  margin-bottom: 12px;
}
.card-header {
  margin-bottom: 10px;
}
.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.balance-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 20px 16px 16px 16px;
  margin-bottom: 14px;
}
.balance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.balance-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}
.badge-network {
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(36, 129, 204, 0.15);
  color: var(--accent-blue);
  border-radius: 10px;
  font-weight: 600;
}
.balance-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0;
}
.balance-num {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.balance-cur {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-blue);
}
.balance-usd-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.balance-usd {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-muted);
  transition: background 0.2s ease;
}
.rate-badge:hover {
  background: rgba(255, 255, 255, 0.08);
}
.rate-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green);
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.rate-change {
  font-weight: 600;
  font-size: 10px;
  margin-left: 2px;
}
.input-usd-hint {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 5px;
  padding-left: 2px;
  transition: color 0.15s ease;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}
.action-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  cursor: pointer;
}
.action-btn:active {
  opacity: 0.7;
}
.action-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
}
.action-icon-deposit { color: var(--accent-green); }
.action-icon-withdraw { color: var(--accent-red); }
.action-icon-transfer { color: var(--accent-blue); }
.action-icon-customid { color: var(--accent-orange); }
.action-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}
.id-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.id-badge {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.id-badge-gift {
  color: var(--accent-orange);
  font-weight: 600;
}
.id-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}
.btn-small {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.btn-small:active {
  background: var(--accent-blue);
  color: #ffffff;
}
.btn-text {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.seg-control {
  display: flex;
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 4px;
  margin-bottom: 14px;
  border: 1px solid var(--card-border);
}
.seg-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
}
.seg-btn.active {
  background-color: var(--card-bg);
  color: var(--text-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.qr-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.qr-frame {
  background: #ffffff;
  padding: 12px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 224px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  margin: 0 auto 14px auto;
}
.qr-box {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin: 0 auto;
}
.qr-box svg,
.qr-box canvas,
.qr-box img {
  display: block !important;
  width: 200px !important;
  height: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  margin: 0 auto !important;
  border-radius: 4px;
  object-fit: contain;
}
.qr-instructions {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  max-width: 280px;
  line-height: 1.4;
}
.form-group {
  margin-bottom: 14px;
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
}
.form-subtext {
  font-size: 12px;
  color: var(--text-muted);
}
.form-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-warning {
  font-size: 11px;
  color: var(--accent-orange);
  margin-top: 6px;
  line-height: 1.35;
}
.address-display, .memo-display {
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 12px;
  word-break: break-all;
  color: var(--text-color);
}
.memo-group {
  background-color: rgba(229, 154, 53, 0.08);
  border: 1px solid rgba(229, 154, 53, 0.25);
  padding: 12px;
  border-radius: var(--radius-md);
}
.memo-label {
  color: var(--accent-orange);
  font-weight: 700;
}
.memo-display {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-orange);
  background-color: rgba(0, 0, 0, 0.4);
}
.input-row {
  position: relative;
  display: flex;
  align-items: center;
}
.input-field {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}
.input-field:focus {
  border-color: var(--accent-blue);
}
.input-addon-btn {
  position: absolute;
  right: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--accent-blue);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.summary-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}
.summary-total {
  font-weight: 600;
  color: var(--text-color);
  padding-top: 4px;
  border-top: 1px solid var(--card-border);
}
.info-note {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(36, 129, 204, 0.1);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}
.price-box {
  text-align: center;
  padding: 14px;
  background: rgba(229, 154, 53, 0.08);
  border: 1px solid rgba(229, 154, 53, 0.2);
  border-radius: var(--radius-md);
}
.price-title {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.price-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 4px 0;
}
.price-sub {
  font-size: 12px;
  color: var(--text-secondary);
}
.order-content {
  text-align: center;
}
.order-id-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 4px;
}
.order-price {
  font-size: 13px;
  color: var(--text-secondary);
}
.memo-box-order {
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  border-radius: var(--radius-md);
}
.memo-box-order code {
  color: var(--accent-orange);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn:active {
  opacity: 0.75;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background-color: var(--accent-blue);
  color: #ffffff;
}
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-color);
}
.tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.05s ease;
}
.tx-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.tx-item:active {
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(0.99);
}
.tx-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tx-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.tx-deposit { background: rgba(43, 185, 130, 0.15); color: var(--accent-green); }
.tx-withdraw { background: rgba(230, 83, 83, 0.15); color: var(--accent-red); }
.tx-transfer { background: rgba(36, 129, 204, 0.15); color: var(--accent-blue); }
.tx-buyid { background: rgba(139, 92, 246, 0.18); color: #a78bfa; }
.tx-sellid { background: rgba(245, 158, 11, 0.18); color: var(--accent-orange); }
.tx-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tx-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
}
.tx-time {
  font-size: 11px;
  color: var(--text-secondary);
}
.tx-amount {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}
.tx-amount.pos { color: var(--accent-green); }
.tx-amount.neg { color: var(--accent-red); }
.loading-state {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.tx-modal-box {
  max-width: 380px;
  text-align: left;
  padding: 20px;
}
.tx-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tx-modal-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.tx-modal-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tx-modal-type-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
}
.tx-modal-date {
  font-size: 12px;
  color: var(--text-secondary);
}
.tx-modal-amount-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.tx-modal-amount {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}
.tx-modal-usd {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(52, 199, 89, 0.12);
  color: #34c759;
  border: 1px solid rgba(52, 199, 89, 0.28);
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.12);
  letter-spacing: 0.2px;
  backdrop-filter: blur(8px);
}
.badge-status svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.badge-status.badge-status-pending {
  background: rgba(255, 149, 0, 0.12);
  color: #ff9500;
  border: 1px solid rgba(255, 149, 0, 0.28);
  box-shadow: 0 2px 8px rgba(255, 149, 0, 0.12);
}
.badge-status.badge-status-failed {
  background: rgba(255, 59, 48, 0.12);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.28);
  box-shadow: 0 2px 8px rgba(255, 59, 48, 0.12);
}
.tx-modal-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tx-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.tx-detail-row:last-child {
  border-bottom: none;
}
.tx-row-label {
  color: var(--text-secondary);
  font-size: 12px;
}
.tx-row-value-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 65%;
  justify-content: flex-end;
}
.tx-row-value-wrap span {
  word-break: break-all;
  text-align: right;
  font-size: 12px;
}
.btn-icon-copy {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, opacity 0.15s ease;
}
.btn-icon-copy:hover {
  color: var(--text-color);
}
.btn-icon-copy:active {
  opacity: 0.6;
}
.tx-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}
.tx-link:hover {
  text-decoration: underline;
}
.app-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 8px 12px calc(8px + var(--safe-bottom)) 12px;
  background-color: var(--bg-color);
  border-top: 1px solid var(--card-border);
  z-index: 100;
}
.nav-item {
  background: none;
  border: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
}
.nav-item.active {
  color: var(--accent-blue);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-box {
  width: 100%;
  max-width: 340px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.modal-status-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(43, 185, 130, 0.15);
  color: var(--accent-green);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}
.modal-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.modal-message {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.modal-tx {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  word-break: break-all;
}
.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 90%;
  max-width: 360px;
}
.toast {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-color);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.toast-success { border-left: 3px solid var(--accent-green); }
.toast-error { border-left: 3px solid var(--accent-red); }
.toast-info { border-left: 3px solid var(--accent-blue); }
