/* =====================================================
   PREMIUM PAYMENT PAGES (Deposit & Withdraw)
   ===================================================== */

/* Container - Override existing styles */
.deposit-container,
.withdraw-container,
.new-deposit-interface,
.new-withdraw-interface,
.new-deposit-interface.deposit-container {
  background: linear-gradient(180deg, #0f0f14 0%, #1a1a24 100%) !important;
  min-height: 100vh;
  padding: 20px;
  color: #fff !important;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Header */
.deposit-header,
.withdraw-header {
  text-align: center;
  margin-bottom: 24px;
}

.deposit-header-content,
.withdraw-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.deposit-icon,
.withdraw-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f0f14;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.deposit-header h2,
.withdraw-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 2px;
}

.deposit-subtitle,
.withdraw-subtitle {
  color: #a1a1aa;
  font-size: 14px;
}

/* Disclaimer Box */
.deposit-disclaimer,
.withdraw-disclaimer {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.deposit-disclaimer p,
.withdraw-disclaimer p {
  color: #fca5a5;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.payment-method-btn {
  background: linear-gradient(135deg, #1c1c26 0%, #252532 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 12px;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.payment-method-btn i {
  font-size: 24px;
}

.payment-method-btn:hover {
  border-color: rgba(251, 191, 36, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.payment-method-btn.active {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
  border-color: #fbbf24;
  color: #fbbf24;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}

.payment-method-btn.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.payment-method-btn.whatsapp:hover,
.payment-method-btn.whatsapp.active {
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

/* Payment Options */
.payment-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.option-btn {
  flex: 1;
  background: #1c1c26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.option-btn:hover {
  border-color: rgba(251, 191, 36, 0.3);
  color: #fff;
}

.option-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-color: #fbbf24;
  color: #0f0f14;
}

/* Note Box */
.deposit-note,
.withdraw-note {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.deposit-note p,
.withdraw-note p {
  color: #93c5fd;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* Amount Input */
.amount-input-container {
  margin-bottom: 20px;
}

.amount-input-wrapper {
  display: flex;
  background: #1c1c26;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.amount-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 16px !important;
  outline: none;
}

.amount-input::placeholder {
  color: #71717a;
  font-size: 14px;
  font-weight: 400;
}

.clear-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  color: white;
  padding: 0 20px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 150ms ease;
}

.clear-btn:hover {
  opacity: 0.9;
}

/* Amount Selection */
.amount-selection,
.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.amount-btn {
  background: #1c1c26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.amount-btn:hover {
  border-color: #fbbf24;
  transform: scale(1.02);
}

.amount-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-color: #fbbf24;
  color: #0f0f14;
}

/* Bonus Selection */
.bonus-selection {
  margin-bottom: 20px;
}

.bonus-selection label {
  display: block;
  color: #a1a1aa;
  font-size: 12px;
  margin-bottom: 8px;
}

.bonus-select {
  width: 100%;
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px;
  cursor: pointer;
}

/* Payment Details Section */
.payment-details-section {
  background: #1c1c26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-top: 20px;
}

.payment-details-section h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Account Details */
.account-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-item label {
  color: #71717a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #252532;
  border-radius: 8px;
  padding: 12px 14px;
}

.detail-value span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.copy-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  border-radius: 6px;
  color: #0f0f14;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 150ms ease;
}

.copy-btn:hover {
  transform: scale(1.05);
}

/* UTR Input */
.utr-input {
  margin: 16px 0;
}

.utr-input input,
.utr-input .form-control {
  width: 100%;
  background: #252532 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px;
}

.utr-input input:focus,
.utr-input .form-control:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
}

/* Payment Types */
.payment-types {
  margin: 16px 0;
}

.payment-type-options {
  display: flex;
  gap: 10px;
}

.payment-type-options label {
  flex: 1;
}

.payment-type-options input[type="radio"] {
  display: none;
}

.radio-btn {
  display: block;
  text-align: center;
  background: #252532;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  color: #a1a1aa;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.payment-type-options input[type="radio"]:checked + .radio-btn,
.radio-btn.active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #3b82f6;
  color: white;
}

/* Upload Section */
.upload-section {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.upload-btn {
  flex: 1;
  background: #252532;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #a1a1aa;
  padding: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.upload-btn:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.confirm-btn {
  flex: 1;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 10px;
  color: white;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.confirm-btn:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.confirm-btn.disabled {
  background: #3f3f46;
  cursor: not-allowed;
  opacity: 0.6;
}

/* QR Code Section */
.qr-section {
  text-align: center;
  margin-bottom: 16px;
}

.qr-section p {
  color: #a1a1aa;
  font-size: 12px;
  margin-bottom: 16px;
}

.qr-code-container {
  background: white;
  padding: 16px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.qr-code-container img {
  width: 180px;
  height: 180px;
}

.upi-id {
  margin-top: 12px;
}

/* Loading State */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 20, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(251, 191, 36, 0.2);
  border-top-color: #fbbf24;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back Button */
.back-btn {
  background: #252532;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #a1a1aa;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Success Indicator */
.success-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 500;
}

.success-indicator i {
  font-size: 18px;
}

/* Crypto Info */
.crypto-info {
  margin-bottom: 16px;
}

/* Override for new-deposit-interface */
.new-deposit-interface .deposit-header-content,
.new-deposit-interface .deposit-header,
.new-deposit-interface .withdraw-header {
  background: transparent !important;
}

.new-deposit-interface .deposit-icon,
.new-deposit-interface .withdraw-icon {
  width: 70px !important;
  height: 70px !important;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  color: #0f0f14 !important;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3) !important;
}

.new-deposit-interface .deposit-header h2 {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: 2px !important;
}

.new-deposit-interface .deposit-subtitle {
  color: #a1a1aa !important;
  font-size: 14px !important;
}

.new-deposit-interface .deposit-disclaimer {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
}

.new-deposit-interface .deposit-disclaimer p {
  color: #fca5a5 !important;
  font-size: 13px !important;
}

.new-deposit-interface .payment-methods {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
  gap: 10px !important;
}

.new-deposit-interface .payment-method-btn {
  background: linear-gradient(135deg, #1c1c26 0%, #252532 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 16px 12px !important;
  color: #a1a1aa !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 200ms ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.new-deposit-interface .payment-method-btn i {
  font-size: 24px !important;
  color: #a1a1aa !important;
}

.new-deposit-interface .payment-method-btn:hover {
  border-color: rgba(251, 191, 36, 0.3) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.new-deposit-interface .payment-method-btn.active {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%) !important;
  border-color: #fbbf24 !important;
  color: #fbbf24 !important;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2) !important;
}

.new-deposit-interface .payment-method-btn.active i {
  color: #fbbf24 !important;
}

.new-deposit-interface .payment-method-btn.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 100%) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
  color: #25d366 !important;
}

.new-deposit-interface .payment-method-btn.whatsapp i {
  color: #25d366 !important;
}

.new-deposit-interface .payment-method-btn.whatsapp.active {
  border-color: #25d366 !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2) !important;
}

.new-deposit-interface .payment-options {
  display: flex !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.new-deposit-interface .option-btn {
  flex: 1 !important;
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  padding: 12px !important;
  color: #a1a1aa !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 150ms ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.new-deposit-interface .option-btn i {
  color: #a1a1aa !important;
}

.new-deposit-interface .option-btn:hover {
  border-color: rgba(251, 191, 36, 0.3) !important;
  color: #fff !important;
}

.new-deposit-interface .option-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  border-color: #fbbf24 !important;
  color: #0f0f14 !important;
}

.new-deposit-interface .option-btn.active i {
  color: #0f0f14 !important;
}

.new-deposit-interface .currency-selection,
.new-deposit-interface .bonus-selection {
  margin-bottom: 20px !important;
}

.new-deposit-interface .currency-selection label,
.new-deposit-interface .bonus-selection label {
  color: #a1a1aa !important;
  font-size: 12px !important;
}

.new-deposit-interface .currency-select,
.new-deposit-interface .bonus-select {
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
}

.new-deposit-interface .deposit-note {
  background: rgba(59, 130, 246, 0.1) !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
}

.new-deposit-interface .deposit-note p {
  color: #93c5fd !important;
  font-size: 12px !important;
  font-style: normal !important;
}

.new-deposit-interface .amount-selection,
.new-deposit-interface .amount-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.new-deposit-interface .amount-btn {
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  padding: 14px 8px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 150ms ease !important;
}

.new-deposit-interface .amount-btn:hover {
  border-color: #fbbf24 !important;
  transform: scale(1.02) !important;
}

.new-deposit-interface .amount-btn.active {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  border-color: #fbbf24 !important;
  color: #0f0f14 !important;
}

.new-deposit-interface .amount-input-wrapper {
  display: flex !important;
  background: #1c1c26 !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.new-deposit-interface .amount-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 16px !important;
  outline: none !important;
}

.new-deposit-interface .amount-input::placeholder {
  color: #71717a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.new-deposit-interface .clear-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  color: white !important;
  padding: 0 20px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  cursor: pointer !important;
}

.new-deposit-interface .next-button-container {
  margin-top: 24px !important;
}

.new-deposit-interface .next-btn {
  width: 100% !important;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  color: white !important;
  padding: 16px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 200ms ease !important;
}

.new-deposit-interface .next-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
}

.new-deposit-interface .next-btn.loading {
  background: #3f3f46 !important;
  cursor: not-allowed !important;
}

.new-deposit-interface .payment-details-section {
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  margin-top: 20px !important;
}

.new-deposit-interface .payment-details-section h3 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-align: left !important;
}

.new-deposit-interface .account-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.new-deposit-interface .detail-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  margin-bottom: 0 !important;
}

.new-deposit-interface .detail-item label {
  color: #71717a !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.new-deposit-interface .detail-value {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #252532 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
}

.new-deposit-interface .detail-value span {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  font-family: 'JetBrains Mono', 'Consolas', monospace !important;
}

.new-deposit-interface .copy-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  border: none !important;
  border-radius: 6px !important;
  color: #0f0f14 !important;
  padding: 6px 10px !important;
  cursor: pointer !important;
}

.new-deposit-interface .utr-input {
  margin: 16px 0 !important;
}

.new-deposit-interface .utr-input input {
  width: 100% !important;
  background: #252532 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
}

.new-deposit-interface .utr-input input::placeholder {
  color: #71717a !important;
}

.new-deposit-interface .utr-input input:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
  outline: none !important;
}

.new-deposit-interface .payment-type-options {
  display: flex !important;
  gap: 10px !important;
  justify-content: flex-start !important;
}

.new-deposit-interface .radio-btn {
  display: block !important;
  text-align: center !important;
  background: #252532 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 12px !important;
  color: #a1a1aa !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.new-deposit-interface .payment-type-options input[type="radio"]:checked + .radio-btn,
.new-deposit-interface .radio-btn.active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  border-color: #3b82f6 !important;
  color: white !important;
}

.new-deposit-interface .upload-section {
  display: flex !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.new-deposit-interface .upload-btn {
  flex: 1 !important;
  background: #252532 !important;
  border: 2px dashed rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: #a1a1aa !important;
  padding: 14px !important;
  text-align: center !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.new-deposit-interface .upload-btn:hover {
  border-color: #fbbf24 !important;
  color: #fbbf24 !important;
}

.new-deposit-interface .confirm-btn {
  flex: 1 !important;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  color: white !important;
  padding: 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.new-deposit-interface .confirm-btn.disabled {
  background: #3f3f46 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.new-deposit-interface .qr-section {
  text-align: center !important;
  margin-bottom: 16px !important;
}

.new-deposit-interface .qr-section p {
  color: #a1a1aa !important;
  font-size: 12px !important;
  margin-bottom: 16px !important;
  background: transparent !important;
}

.new-deposit-interface .qr-code-container {
  background: white !important;
  padding: 16px !important;
  border-radius: 12px !important;
  display: inline-block !important;
  margin-bottom: 16px !important;
}

.new-deposit-interface .qr-code-container img {
  width: 180px !important;
  height: 180px !important;
}

.new-deposit-interface .back-btn {
  background: #252532 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: #a1a1aa !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.new-deposit-interface .back-btn:hover {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.new-deposit-interface .success-indicator {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #22c55e !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .deposit-container,
  .withdraw-container,
  .new-deposit-interface.deposit-container {
    padding: 16px !important;
  }

  .new-deposit-interface .payment-methods {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .new-deposit-interface .amount-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .new-deposit-interface .deposit-header h2 {
    font-size: 22px !important;
  }

  .new-deposit-interface .deposit-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
  }

  .new-deposit-interface .upload-section {
    flex-direction: column !important;
  }
}

/* =====================================================
   WITHDRAW PAGE STYLES
   ===================================================== */

/* Withdraw page container */
.withdraw-request,
.deposit.withdraw-request,
.deposit-page.withdraw-request {
  background: linear-gradient(180deg, #0f0f14 0%, #1a1a24 100%) !important;
  min-height: 100vh !important;
  padding: 20px !important;
}

.withdraw-request .card {
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 20px !important;
  overflow: hidden;
}

.withdraw-request .card-header {
  background: linear-gradient(135deg, #252532 0%, #1c1c26 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 20px !important;
}

.withdraw-request .card-header h4 {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.withdraw-request .container-fluid {
  padding: 20px !important;
}

.withdraw-request .form-group {
  margin-bottom: 16px !important;
}

.withdraw-request .form-group label {
  color: #a1a1aa !important;
  font-size: 12px !important;
  margin-bottom: 8px !important;
}

.withdraw-request .form-control {
  background: #252532 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  height: auto !important;
}

.withdraw-request .form-control:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
  outline: none !important;
}

.withdraw-request .form-control::placeholder {
  color: #71717a !important;
}

.withdraw-request .btn {
  border-radius: 10px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 200ms ease !important;
}

.withdraw-request .btn.bg-danger,
.withdraw-request .btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  color: white !important;
}

.withdraw-request .btn.bg-danger:hover,
.withdraw-request .btn-danger:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3) !important;
}

.withdraw-request .btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  border: none !important;
  color: #0f0f14 !important;
}

.withdraw-request .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3) !important;
}

.withdraw-request .payment-icons-title {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 16px 20px !important;
  background: #252532 !important;
}

.withdraw-request .payment-icons-title h3 {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.withdraw-request .add-new-detail hr {
  border-color: rgba(255, 255, 255, 0.06) !important;
  margin: 0 !important;
}

.withdraw-request .account-detail {
  padding: 20px !important;
}

.withdraw-request .bank-box {
  background: #252532 !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 16px !important;
  cursor: pointer !important;
  transition: all 200ms ease !important;
  position: relative;
}

.withdraw-request .bank-box:hover {
  border-color: rgba(251, 191, 36, 0.3) !important;
}

.withdraw-request .bank-box input[type="radio"] {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 20px !important;
  height: 20px !important;
  accent-color: #fbbf24 !important;
}

.withdraw-request .bank-box input[type="radio"]:checked + label .account-detail-box {
  border-color: #fbbf24 !important;
}

.withdraw-request .account-detail-box {
  padding: 0 !important;
}

.withdraw-request .payment-detail-box {
  display: flex !important;
  justify-content: space-between !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.withdraw-request .payment-detail-box:last-of-type {
  border-bottom: none !important;
}

.withdraw-request .payment-detail-box span {
  color: #a1a1aa !important;
  font-size: 13px !important;
}

.withdraw-request .payment-detail-box span.text-right {
  color: #fff !important;
  font-weight: 500 !important;
  font-family: 'JetBrains Mono', 'Consolas', monospace !important;
}

.withdraw-request .delete {
  color: #ef4444 !important;
  cursor: pointer !important;
  font-size: 16px !important;
  padding: 8px !important;
  transition: all 150ms ease !important;
}

.withdraw-request .delete:hover {
  color: #dc2626 !important;
  transform: scale(1.1) !important;
}

.withdraw-request .error,
.withdraw-request .error-message {
  color: #ef4444 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}

/* Modal styles for Add Bank/UPI */
.withdraw-request .modal-content,
#accountModal .modal-content,
#upiModal .modal-content,
#whatsappModal .modal-content {
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
}

.withdraw-request .modal-header,
#accountModal .modal-header,
#upiModal .modal-header,
#whatsappModal .modal-header {
  background: #252532 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 20px !important;
}

.withdraw-request .modal-title,
#accountModal .modal-title,
#upiModal .modal-title,
#whatsappModal .modal-title {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

.withdraw-request .modal-body,
#accountModal .modal-body,
#upiModal .modal-body,
#whatsappModal .modal-body {
  padding: 20px !important;
}

.withdraw-request .close,
#accountModal .close,
#upiModal .close,
#whatsappModal .close {
  color: #fff !important;
  opacity: 0.7 !important;
}

.withdraw-request .close:hover,
#accountModal .close:hover,
#upiModal .close:hover,
#whatsappModal .close:hover {
  opacity: 1 !important;
}

/* Withdraw specific */
.withdraw-balance {
  background: linear-gradient(135deg, #1c1c26 0%, #252532 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.withdraw-balance-label {
  color: #71717a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.withdraw-balance-amount {
  font-size: 32px;
  font-weight: 700;
  color: #22c55e;
  font-family: 'JetBrains Mono', monospace;
}

.withdraw-form-group {
  margin-bottom: 16px;
}

.withdraw-form-group label {
  display: block;
  color: #a1a1aa;
  font-size: 12px;
  margin-bottom: 8px;
}

.withdraw-form-group input,
.withdraw-form-group select {
  width: 100%;
  background: #1c1c26 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 14px;
}

.withdraw-form-group input:focus,
.withdraw-form-group select:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1) !important;
}

.withdraw-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: none;
  border-radius: 12px;
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  margin-top: 20px;
}

.withdraw-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.withdraw-submit-btn:disabled {
  background: #3f3f46;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

