.bank-modal {
  background: #020617;
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.bank-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bank-title {
  font-size: 24px;
  font-weight: 700;
  color: #e5e7eb;
  margin: 0;
}

.bank-subtitle {
  margin: 4px 0 0 0;
  font-size: 14px;
  color: #9ca3af;
}

.bank-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bank-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bank-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bank-label {
  font-size: 13px;
  font-weight: 500;
  color: #d1d5db;
}

.bank-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: #020617;
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #e5e7eb;
  font-size: 14px;
}

.bank-input::placeholder {
  color: #6b7280;
}

.bank-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.45);
}

.bank-hint {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

.bank-pay-button {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.bank-pay-button:hover:not(:disabled) {
  filter: brightness(1.06);
}

.bank-pay-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.bank-alt-payline {
  text-align: center;
}

.bank-alt-pay-btn {
  background: none;
  border: none;
  color: #93c5fd;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.bank-alt-pay-btn:hover {
  color: #bfdbfe;
}

#bankDepositModal.modal-overlay {
  z-index: 20001;
}

@media (max-width: 768px) {
  .bank-field-row {
    grid-template-columns: 1fr;
  }

  .bank-modal {
    width: calc(100% - 32px);
    max-width: 100%;
  }
}
