.page-panel--deposit {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.85rem 1.5rem;
}

.deposit-page {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.deposit-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #1b1b1b 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.deposit-title {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.deposit-message {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.deposit-message.is-error {
  color: #fecaca;
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.25);
}

.deposit-message[hidden] {
  display: none !important;
}

.deposit-bank-select .bank-select-trigger {
  min-height: 48px;
  border-radius: 10px;
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.12);
}

.deposit-bank-select .bank-select-trigger:hover:not(:disabled),
.deposit-bank-select.is-open .bank-select-trigger,
.deposit-bank-select .bank-select-trigger:focus-visible {
  border-color: rgba(200, 245, 66, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.12);
}

.deposit-bank-select .bank-select-icon {
  width: 30px;
  height: 30px;
}

.deposit-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.deposit-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #a8a8a8;
}

.deposit-label--sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.deposit-input,
.deposit-file {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.deposit-input:focus,
.deposit-file:focus {
  border-color: rgba(200, 245, 66, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 245, 66, 0.12);
}

.deposit-input--readonly {
  cursor: default;
  user-select: all;
}

.deposit-bank-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deposit-bank-details[hidden] {
  display: none !important;
}

.deposit-copy-row {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
}

.deposit-copy-row .deposit-input {
  flex: 1;
  min-width: 0;
}

.deposit-copy-btn {
  flex-shrink: 0;
  min-width: 78px;
  padding: 0 1rem;
  border: none;
  border-radius: 999px;
  background: #c8f542;
  color: #111111;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.deposit-copy-btn:hover {
  background: #d4ff4d;
}

.deposit-copy-btn:active {
  transform: scale(0.97);
}

.deposit-copy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.deposit-file {
  padding: 0.7rem 0.85rem;
  font-size: 0.86rem;
}

.deposit-file::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.45rem 0.8rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.deposit-slip-preview {
  margin-top: 0.55rem;
  padding: 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.deposit-slip-preview[hidden] {
  display: none !important;
}

.deposit-slip-preview__img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.deposit-submit {
  width: 100%;
  max-width: 220px;
  margin: 0.35rem auto 0;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #02b88a;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.deposit-submit:hover {
  background: #03cfa0;
}

.deposit-submit:active {
  transform: scale(0.98);
}

.deposit-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #3a6b5f;
}

.deposit-submit:disabled:hover {
  background: #3a6b5f;
}

@media (max-width: 380px) {
  .page-panel--deposit {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .deposit-form {
    padding: 0.85rem;
    gap: 0.9rem;
  }

  .deposit-copy-btn {
    min-width: 70px;
    padding: 0 0.8rem;
    font-size: 0.82rem;
  }

  .deposit-input,
  .deposit-file {
    padding: 0.78rem 0.9rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .page-panel--deposit {
    padding-top: 1.25rem;
  }

  .deposit-page {
    max-width: 460px;
  }

  .deposit-form {
    padding: 1.25rem;
    gap: 1.1rem;
  }
}

/* Withdraw page */
.page-panel--withdraw {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.85rem 1.5rem;
}

.withdraw-page {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.withdraw-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #1b1b1b 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.withdraw-title {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.withdraw-message {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.withdraw-message.is-error {
  color: #fecaca;
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.25);
}

.withdraw-message--promotion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.5;
}

.withdraw-message__text {
  color: inherit;
}

.withdraw-end-promotion-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #fbbf24;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.withdraw-end-promotion-link:hover {
  color: #fde68a;
}

.withdraw-message[hidden],
.withdraw-bank-panel[hidden] {
  display: none !important;
}

.withdraw-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.withdraw-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #a8a8a8;
}

.withdraw-hint {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: #fbbf24;
}

.withdraw-hint.is-error {
  color: #fca5a5;
}

.withdraw-mode-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.withdraw-mode-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.withdraw-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.withdraw-mode-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #c9c9c9;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.withdraw-mode-option input:checked + span {
  border-color: rgba(255, 107, 107, 0.55);
  background: rgba(255, 107, 107, 0.12);
  color: #ffffff;
}

.withdraw-bank-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.withdraw-bank-display {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
}

.withdraw-bank-display__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.withdraw-bank-display__empty {
  color: rgba(255, 255, 255, 0.45);
}

.withdraw-bank-select .bank-select-trigger {
  min-height: 48px;
  border-radius: 10px;
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.12);
}

.withdraw-bank-select .bank-select-trigger:hover:not(:disabled),
.withdraw-bank-select.is-open .bank-select-trigger,
.withdraw-bank-select .bank-select-trigger:focus-visible {
  border-color: rgba(255, 107, 107, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.withdraw-bank-select .bank-select-icon {
  width: 30px;
  height: 30px;
}

.withdraw-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.withdraw-input:focus {
  border-color: rgba(255, 107, 107, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

.withdraw-input--readonly {
  cursor: default;
  user-select: all;
  opacity: 0.92;
}

.withdraw-submit {
  width: 100%;
  max-width: 220px;
  margin: 0.35rem auto 0;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #e63946;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.withdraw-submit:hover {
  background: #f04b57;
}

.withdraw-submit:active {
  transform: scale(0.98);
}

.withdraw-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.amount-limit-hint {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  color: rgba(255, 193, 7, 0.92);
}

@media (max-width: 380px) {
  .page-panel--withdraw {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .withdraw-form {
    padding: 0.85rem;
    gap: 0.9rem;
  }

  .withdraw-input {
    padding: 0.78rem 0.9rem;
    font-size: 0.9rem;
  }

  .withdraw-mode-option span {
    font-size: 0.82rem;
    min-height: 42px;
  }
}

@media (min-width: 768px) {
  .page-panel--withdraw {
    padding-top: 1.25rem;
  }
}

.page-panel--history {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.85rem 1.5rem;
}

.history-page {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.history-title {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.history-message {
  margin: 0;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.history-message.is-error {
  color: #fecaca;
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.25);
}

.history-message[hidden] {
  display: none !important;
}

.history-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.history-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #1a1a1a;
  color: #d1d5db;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.history-tab.is-active {
  color: #111827;
  background: linear-gradient(180deg, #d9f45a 0%, #c8f542 100%);
  border-color: rgba(200, 245, 66, 0.8);
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.history-empty {
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.history-card {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #1b1b1b 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.history-card--deposit {
  border-left: 3px solid rgba(74, 222, 128, 0.85);
}

.history-card--withdraw {
  border-left: 3px solid rgba(255, 107, 107, 0.85);
}

.history-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.history-card__type {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f8fafc;
}

.history-status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
}

.history-status--pending {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
}

.history-status--confirmed {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}

.history-status--rejected {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
}

.history-card__amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: #c8f542;
  margin-bottom: 0.75rem;
}

.history-card__meta {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.history-card__meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.history-card__meta dt {
  margin: 0;
  flex-shrink: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
}

.history-card__meta dd {
  margin: 0;
  font-size: 0.82rem;
  color: #f3f4f6;
  text-align: right;
  word-break: break-word;
}

.history-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.history-page-btn {
  min-height: 38px;
  padding: 0 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #f3f4f6;
  font-size: 0.82rem;
  cursor: pointer;
}

.history-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.history-page-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.promo-history-page {
  gap: 1.1rem;
}

.promo-history-active {
  padding: 1rem 1rem 1.1rem;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.promo-history-active[hidden] {
  display: none !important;
}

.promo-history-active__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5af4da;
  text-align: center;
}

.promo-history-progress {
  width: 100%;
}

.promo-history-progress__track {
  position: relative;
  height: 28px;
  border-radius: 999px;
  background: #2a2a2a;
  overflow: hidden;
}

.promo-history-progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  transition: width 0.25s ease;
  z-index: 1;
}

.promo-history-progress__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
  line-height: 1;
}

.promo-history-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.promo-history-end-btn {
  width: 150px;
  min-height: 44px;
  margin: 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ee8dc 0%, #1fd4c8 100%);
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.promo-history-end-btn:disabled,
.promo-history-end-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  background: #3a3a3a;
  color: #9ca3af;
}

.promo-history-end-btn:not(:disabled):not(.is-disabled):hover {
  transform: translateY(-1px);
}

.promo-history-cancel-btn {
  border: none;
  background: transparent;
  color: rgba(229, 231, 235, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.15rem 0.35rem;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.promo-history-cancel-btn:hover:not(:disabled) {
  color: rgba(229, 231, 235, 0.72);
}

.promo-history-cancel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.promo-history-cancel-btn[hidden] {
  display: none !important;
}

.promo-cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-cancel-modal[hidden] {
  display: none !important;
}

.promo-cancel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.promo-cancel-modal__card {
  position: relative;
  width: min(100%, 420px);
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.promo-cancel-modal__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.promo-cancel-modal__warning {
  margin: 0;
  color: #e5e7eb;
  font-size: 0.9rem;
  line-height: 1.55;
}

.promo-cancel-modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #d1d5db;
  font-size: 0.86rem;
  line-height: 1.45;
  cursor: pointer;
}

.promo-cancel-modal__agree input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.promo-cancel-modal__message {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
}

.promo-cancel-modal__message[hidden] {
  display: none !important;
}

.promo-cancel-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.promo-cancel-modal__btn {
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.promo-cancel-modal__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.promo-cancel-modal__btn--primary {
  background: #fff;
  color: #111827;
  font-weight: 600;
}

.promo-cancel-modal__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.promo-history-table-wrap {
  padding: 0.85rem 0.75rem 1rem;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-history-table__title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.promo-history-table-scroll {
  overflow-x: auto;
}

.promo-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.promo-history-table thead th {
  padding: 0.55rem 0.45rem;
  color: #5af4da;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-history-table tbody td {
  padding: 0.55rem 0.45rem;
  color: #f3f4f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
}

.promo-history-table tbody tr:last-child td {
  border-bottom: none;
}

.promo-history-empty {
  padding: 1rem 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes promo-history-active-flash {
  0%,
  100% {
    color: #ffffff;
  }

  50% {
    color: #f59e0b;
  }
}

.promo-history-row--active .promo-history-cell--active {
  animation: promo-history-active-flash 1.1s ease-in-out infinite;
  font-weight: 700;
}

.promo-end-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.promo-end-modal[hidden] {
  display: none !important;
}

.promo-end-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.promo-end-modal__card {
  position: relative;
  width: min(100%, 420px);
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.promo-end-modal__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.promo-end-modal__subtitle {
  margin: 0;
  color: #fbbf24;
  font-size: 0.92rem;
  line-height: 1.45;
}

.promo-end-modal__message {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  font-size: 0.88rem;
}

.promo-end-modal__message[hidden] {
  display: none !important;
}

.promo-end-modal__bank-mode {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.promo-end-modal__bank-mode .withdraw-mode-group {
  margin-top: 0.15rem;
}

.promo-end-modal__field .bank-select,
.promo-end-modal__field .withdraw-bank-select {
  width: 100%;
}

.promo-end-modal__field .withdraw-bank-display {
  min-height: 44px;
}

.promo-end-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.promo-end-modal__label {
  color: #9ca3af;
  font-size: 0.82rem;
}

.promo-end-modal__value,
.promo-end-modal__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b1220;
  color: #fff;
  padding: 0.65rem 0.75rem;
  font-size: 0.92rem;
}

.promo-end-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.promo-end-modal__btn {
  border: 0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.promo-end-modal__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
}

.promo-end-modal__btn--primary {
  background: #fff;
  color: #111827;
  font-weight: 600;
}

.promo-end-modal__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .withdraw-page {
    max-width: 460px;
  }

  .withdraw-form {
    padding: 1.25rem;
    gap: 1.1rem;
  }
}
