/* Deposit Page Specific Styles */
:root {
  --dep-bg: #090812;
  --dep-card: #13111c;
  --dep-card-hover: #1c192b;
  --dep-primary: #581c87; /* Purple */
  --dep-primary-hover: #6b21a8;
  --dep-success: #10b981;
  --dep-text: #ffffff;
  --dep-text-muted: #9ca3af;
  --dep-border: #2e294e;
}

body {
  background-color: var(--dep-bg);
  color: var(--dep-text);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.dep-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Header */
.dep-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dep-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--dep-card);
  border: 1px solid var(--dep-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dep-text);
  cursor: pointer;
  text-decoration: none;
}

.dep-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dep-logo img {
  height: 64px;
}

.dep-support-btn {
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--dep-card);
  border: 1px solid var(--dep-border);
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dep-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Title Area */
.dep-title-area {
  margin-bottom: 24px;
}
.dep-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.dep-title-row h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.dep-secure-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--dep-text-muted);
  font-size: 12px;
}
.dep-subtitle {
  color: var(--dep-text-muted);
  font-size: 14px;
  margin: 0;
}

/* Promo Banner */
.dep-promo {
  background: radial-gradient(circle at 100% 100%, #581c87 0%, #0f0d1a 100%);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(251, 191, 36, 0.2);
  box-shadow: 0 10px 30px rgba(88, 28, 135, 0.2), inset 0 0 20px rgba(251, 191, 36, 0.05);
}

.dep-promo::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: #fbbf24;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

.dep-promo-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  font-size: 75px;
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(251,191,36,0.4));
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(-50%) rotate(-10deg); }
  50% { transform: translateY(-55%) rotate(-5deg); }
}

.dep-promo-content {
  position: relative;
  z-index: 2;
  width: 65%;
}

.dep-promo-top {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #fbbf24;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.dep-promo-title {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 6px 0;
  line-height: 1.1;
  color: #ffffff;
}

.dep-promo-title span {
  background: linear-gradient(to right, #fde68a, #fbbf24, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Make sure background clip works in all browsers */
  background-clip: text;
  color: transparent;
}

.dep-promo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-weight: 500;
}

.dep-promo-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  border: none;
  color: #451a03;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  transition: transform 0.2s;
}

.dep-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Step Header */
.dep-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dep-step-num {
  width: 24px;
  height: 24px;
  background: var(--dep-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.dep-step-title {
  font-size: 16px;
  font-weight: 600;
}
.dep-step-right {
  margin-left: auto;
}

/* Currency Select */
.dep-currency-sel {
  background: var(--dep-card);
  border: 1px solid var(--dep-border);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.dep-currency-sel img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

/* Amount Input Area */
.dep-amount-box {
  background: var(--dep-card);
  border: 1px solid var(--dep-border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}
.dep-amount-input-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}
.dep-amount-symbol {
  font-size: 32px;
  color: var(--dep-text-muted);
  margin-right: 12px;
}
.dep-amount-input {
  background: transparent;
  border: none;
  color: var(--dep-text);
  font-size: 32px;
  font-weight: 700;
  width: 100%;
  outline: none;
  font-family: inherit;
}
.dep-amount-input::-webkit-inner-spin-button, 
.dep-amount-input::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.dep-amount-check {
  color: var(--dep-success);
}

.dep-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dep-amt-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dep-border);
  color: var(--dep-text);
  padding: 12px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.dep-amt-btn.active {
  background: var(--dep-primary);
  border-color: var(--dep-primary);
}
.dep-amount-limits {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dep-text-muted);
  font-size: 12px;
}

/* Payment Methods */
.dep-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.dep-method-card {
  background: var(--dep-card);
  border: 1px solid var(--dep-border);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dep-method-card.active {
  border-color: var(--dep-primary);
  background: rgba(91, 33, 182, 0.1);
}
.dep-method-radio {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--dep-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dep-method-card.active .dep-method-radio {
  border-color: var(--dep-primary);
  background: var(--dep-primary);
}
.dep-method-radio svg {
  display: none;
  width: 8px;
  height: 8px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}
.dep-method-card.active .dep-method-radio svg {
  display: block;
}

.dep-method-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
}
/* Specific Brand Colors */
.icon-cashapp { background: #00D632; color: white; }
.icon-venmo { background: #008CFF; color: white; font-style: italic; }
.icon-chime { background: #22c55e; color: white; font-size: 11px; }
.icon-paypal { background: #003087; color: white; }
.icon-btc { background: #F7931A; color: white; }
.icon-eth { background: #627EEA; color: white; }
.icon-cards { background: #1f2937; }

.dep-method-name {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}
.dep-method-sub {
  font-size: 9px;
  color: var(--dep-text-muted);
}
.dep-method-card.full-width {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  text-align: left;
}
.dep-method-card.full-width .dep-method-icon {
  margin-bottom: 0;
  margin-right: 12px;
}
.dep-card-logos {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: 20px;
}

.dep-bonus-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #ef4444;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid #7f1d1d;
  white-space: nowrap;
}

/* Summary */
.dep-summary-box {
  margin-bottom: 24px;
}
.dep-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.dep-summary-label {
  color: var(--dep-text-muted);
}
.dep-summary-val {
  font-weight: 600;
}
.dep-summary-receive {
  color: var(--dep-success);
  font-weight: 700;
}

/* Action Button */
.dep-btn-primary {
  width: 100%;
  background: var(--dep-primary);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.dep-btn-primary:hover {
  background: var(--dep-primary-hover);
}
.dep-secure-text {
  text-align: center;
  font-size: 12px;
  color: var(--dep-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
}

/* Trust Footer */
.dep-trust-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-bottom: 40px;
}
.dep-trust-item {
  text-align: center;
}
.dep-trust-icon {
  color: #a78bfa;
  margin-bottom: 8px;
}
.dep-trust-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dep-text);
}
.dep-trust-sub {
  font-size: 9px;
  color: var(--dep-text-muted);
  line-height: 1.3;
}
