/* ===== LOAD CARD PAGE ===== */
.load-page {
  padding: 24px;
  max-width: 1000px;
}

.page-header {
  margin-bottom: 28px;
}

.page-title {
  font-size: 22px;
  font-weight: 600;
  color: #f0f6fc;
}

.load-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 860px) {
  .load-grid { grid-template-columns: 1fr; }
}

/* Balance Banner */
.balance-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(92,184,230,.12) 0%, rgba(92,184,230,.04) 100%);
  border: 1px solid rgba(92,184,230,.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.balance-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.balance-label {
  font-size: 12px;
  color: #8b949e;
}

.balance-amount {
  font-size: 28px;
  font-weight: 700;
  color: #5cb8e6;
}

.balance-card-ref {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8b949e;
}

/* Form Panels */
.form-panel {
  background: #111827;
  border: 1px solid rgba(240,246,252,.06);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.panel-title {
  font-size: 15px;
  font-weight: 600;
  color: #f0f6fc;
  margin-bottom: 18px;
}

/* Amount Input */
.amount-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(240,246,252,.04);
  border: 1px solid rgba(240,246,252,.08);
  border-radius: 10px;
  padding: 4px 16px;
  margin-bottom: 16px;
  transition: border-color .2s;
}
.amount-input-wrapper:focus-within {
  border-color: #5cb8e6;
}

.amount-prefix {
  font-size: 24px;
  font-weight: 600;
  color: #8b949e;
  margin-right: 8px;
}

.amount-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f0f6fc;
  font-size: 28px;
  font-weight: 600;
  padding: 12px 0;
}
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Quick Amounts */
.quick-amounts {
  display: flex;
  gap: 8px;
}

.quick-amt-btn {
  flex: 1;
  padding: 10px;
  background: rgba(240,246,252,.04);
  border: 1px solid rgba(240,246,252,.08);
  border-radius: 8px;
  color: #c9d1d9;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.quick-amt-btn:hover {
  border-color: rgba(92,184,230,.3);
  color: #5cb8e6;
}
.quick-amt-btn.active {
  background: rgba(92,184,230,.12);
  border-color: #5cb8e6;
  color: #5cb8e6;
}

/* Source Options */
.source-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.source-option {
  cursor: pointer;
}
.source-option input { display: none; }

.source-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(240,246,252,.08);
  border-radius: 10px;
  transition: all .2s;
}
.source-option.selected .source-inner {
  border-color: #5cb8e6;
  background: rgba(92,184,230,.06);
}
.source-option:hover .source-inner {
  border-color: rgba(92,184,230,.3);
}

.source-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.source-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.source-name {
  font-size: 14px;
  font-weight: 500;
  color: #f0f6fc;
}

.source-bal {
  font-size: 12px;
  color: #8b949e;
}

.source-fee {
  font-size: 12px;
  color: #8b949e;
  background: rgba(240,246,252,.04);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Fee Summary */
.fee-summary {
  margin-bottom: 18px;
}

.fee-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: #8b949e;
}
.fee-line.total {
  color: #f0f6fc;
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid rgba(240,246,252,.08);
  margin-top: 6px;
  padding-top: 12px;
}

.load-btn {
  width: 100%;
  padding: 14px;
  background: #5cb8e6;
  color: #0a0e17;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.load-btn:hover {
  background: #7ccbf0;
}

/* Recent Top-ups */
.topup-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240,246,252,.04);
}
.topup-item:last-child {
  border-bottom: none;
}

.topup-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.topup-icon.success {
  background: rgba(63,185,80,.12);
  color: #3fb950;
}

.topup-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.topup-source {
  font-size: 13px;
  font-weight: 500;
  color: #f0f6fc;
}

.topup-date {
  font-size: 11px;
  color: #8b949e;
}

.topup-amount {
  font-size: 14px;
  font-weight: 600;
  color: #3fb950;
}
