#deposit-center-root {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  font-family: "Trebuchet MS", "Helvetica Neue", sans-serif;
}

#deposit-center-root.is-open {
  display: flex;
}

.deposit-shell {
  position: relative;
  width: min(90vw, 1536px);
  height: min(78vh, 900px);
  min-width: 820px;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 52%, rgba(135, 55, 210, 0.62), transparent 52%),
    linear-gradient(90deg, #7c17a7 0 25%, #3d116d 25% 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.48),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  color: #fff;
}

.deposit-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
  pointer-events: none;
}

.deposit-shell::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.deposit-close {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 6;
  width: 62px;
  height: 62px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.82;
  text-shadow:
    0 3px 0 #5a2488,
    0 0 8px rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.deposit-title-wrap {
  position: absolute;
  top: 0;
  left: 32%;
  right: 7%;
  z-index: 2;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 226, 98, 0.95);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background:
    radial-gradient(circle, rgba(255, 124, 255, 0.75) 0 3px, transparent 4px) 0 0 / 22px 22px,
    linear-gradient(180deg, #b63de3, #471275 72%);
  box-shadow:
    0 5px 0 rgba(72, 24, 95, 0.8),
    0 0 18px rgba(255, 223, 97, 0.7),
    inset 0 -10px 20px rgba(0, 0, 0, 0.24);
}

.deposit-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
  text-shadow:
    0 4px 0 #000,
    0 -2px 0 #000,
    3px 0 0 #000,
    -3px 0 0 #000;
}

.deposit-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 25% 75%;
  width: 100%;
  height: 100%;
}

.deposit-sidebar {
  position: relative;
  padding-top: 18%;
  background:
    linear-gradient(180deg, rgba(198, 50, 235, 0.34), transparent 34%),
    linear-gradient(180deg, #8a20b8, #6a1e9c);
  overflow: visible;
}

.deposit-tab {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 10px);
  min-height: 74px;
  margin: 0 10px 28px 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0 30px 30px 0;
  background:
    linear-gradient(180deg, #d54cff, #8c21dd 68%, #5f118e);
  box-shadow:
    0 10px 0 rgba(40, 0, 70, 0.55),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -8px 14px rgba(49, 0, 85, 0.32);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  text-shadow:
    0 4px 0 #000,
    2px 0 0 #000,
    -2px 0 0 #000;
  cursor: pointer;
}

.deposit-tab.is-active {
  background:
    linear-gradient(180deg, #df5cff, #a335ee 64%, #741aad);
}

.deposit-tab-icon {
  display: none;
}

.deposit-sidebar-art {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 150%;
  height: 52%;
  overflow: visible;
  pointer-events: none;
}

.deposit-art-copy {
  display: none;
}

.deposit-placeholder-host {
  position: absolute;
  left: calc(-8% - 30px);
  bottom: -1%;
  width: 132%;
  height: 116%;
  background: url("deposit-assets/hostess_mascot_icon_transparent.png") left bottom / auto 108% no-repeat;
}

.deposit-placeholder-host::before,
.deposit-placeholder-host::after {
  content: none;
}

.deposit-main {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 136px 6.4% 36px 4.8%;
  overflow: auto;
}

.deposit-status {
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 18px;
  z-index: 4;
  min-height: 30px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(17, 0, 31, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.deposit-status.has-message {
  opacity: 1;
  transform: translateY(0);
}

.deposit-status.is-success {
  color: #e7ffd0;
}

.deposit-status.is-error {
  color: #ffd5d0;
}

.deposit-status.is-pending {
  color: #fff1b8;
}

.deposit-panel {
  display: none;
}

.deposit-panel.is-active {
  display: block;
}

.deposit-topline {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 128px;
}

.deposit-player-id {
  color: #f3ff00;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 4px 0 #000,
    2px 0 0 #000,
    -2px 0 0 #000;
}

.deposit-amount-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 34px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, #2d083e, #160420);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.36),
    inset 0 0 22px rgba(0, 0, 0, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.08);
}

.deposit-amount-wrap label {
  display: none;
}

.deposit-amount-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  outline: none;
}

.deposit-amount-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.deposit-amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 34px 58px;
}

.deposit-amount-card {
  position: relative;
  min-height: 132px;
  padding: 0;
  border: 0;
  border-radius: 64px;
  background:
    radial-gradient(circle at 7% 13%, rgba(255, 255, 255, 0.95) 0 5px, transparent 6px),
    linear-gradient(170deg, rgba(255, 107, 255, 0.42) 0 18%, transparent 19%),
    linear-gradient(180deg, #f65aff, #a72ddb 58%, #64128e);
  box-shadow:
    0 8px 0 rgba(37, 0, 61, 0.72),
    inset 0 0 0 5px rgba(255, 58, 255, 0.36),
    inset 0 10px 0 rgba(255, 255, 255, 0.22),
    inset 0 -6px 14px rgba(45, 0, 79, 0.42);
  color: #fff2a4;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.deposit-amount-card.is-selected {
  box-shadow:
    0 8px 0 rgba(37, 0, 61, 0.72),
    0 0 0 4px rgba(173, 255, 36, 0.75),
    inset 0 0 0 5px rgba(255, 81, 255, 0.42),
    inset 0 10px 0 rgba(255, 255, 255, 0.18);
}

.deposit-amount-card::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 24%;
  top: 25%;
  bottom: 23%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(80, 0, 109, 0.62), rgba(105, 22, 150, 0.42));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.05),
    inset 0 -8px 16px rgba(43, 0, 69, 0.32);
}

.deposit-amount-value-wrap {
  position: absolute;
  z-index: 2;
  left: 13%;
  right: 24%;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deposit-amount-value {
  position: relative;
  z-index: 3;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: #fff2a4;
  text-shadow:
    0 5px 0 #8f2300,
    3px 0 0 #8f2300,
    -3px 0 0 #8f2300;
}

.deposit-amount-icon {
  position: absolute;
  z-index: 4;
  right: 1.5%;
  top: 50%;
  width: 168px;
  height: 116px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: translateY(-50%);
}

.deposit-amount-icon-1 {
  right: 3%;
  width: 150px;
  height: 104px;
  background-image: url("deposit-assets/amount_coin_icon_1.png");
}

.deposit-amount-icon-2 {
  right: 2%;
  width: 162px;
  height: 110px;
  background-image: url("deposit-assets/amount_coin_icon_2.png");
}

.deposit-amount-icon-3 {
  right: 0.5%;
  width: 172px;
  height: 116px;
  background-image: url("deposit-assets/amount_coin_icon_3.png");
}

.deposit-amount-icon-4 {
  right: -2%;
  width: 174px;
  height: 124px;
  background-image: url("deposit-assets/amount_coin_icon_4.png");
}

.deposit-amount-note {
  display: none;
}

.deposit-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.deposit-confirm {
  min-width: 276px;
  height: 76px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #cfff35, #55df15 62%, #18a30b);
  box-shadow:
    0 8px 0 rgba(14, 96, 0, 0.75),
    inset 0 4px 0 rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 4px 0 #000,
    2px 0 0 #000,
    -2px 0 0 #000;
  cursor: pointer;
}

.deposit-card-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 0, 20, 0.58);
}

.deposit-card-backdrop.is-open {
  display: flex;
}

.deposit-card-modal {
  position: relative;
  width: min(84%, 1260px);
  min-height: 72%;
  padding: 82px 7.5% 46px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 68% 18%, rgba(127, 32, 165, 0.55), transparent 34%),
    linear-gradient(180deg, #51146e, #45105f 72%);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.44),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
}

.deposit-card-close {
  position: absolute;
  top: 14px;
  right: 34px;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 3px 0 #4f1871;
  cursor: pointer;
}

.deposit-card-status {
  position: absolute;
  left: 23%;
  right: 23%;
  top: 24px;
  min-height: 30px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(17, 0, 31, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.deposit-card-status.has-message {
  opacity: 1;
  transform: translateY(0);
}

.deposit-card-status.is-success {
  color: #e7ffd0;
}

.deposit-card-status.is-error {
  color: #ffd5d0;
}

.deposit-card-status.is-pending {
  color: #fff1b8;
}

.deposit-card-form {
  display: grid;
  gap: 34px;
}

.deposit-card-row {
  display: grid;
  gap: 14px;
}

.deposit-card-row.is-wide {
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: end;
  align-items: center;
  gap: 36px;
}

.deposit-card-row.is-wide input {
  justify-self: end;
  width: min(760px, 100%);
}

.deposit-card-row label {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(255, 255, 255, 0.2);
}

.deposit-card-row input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 86px;
  padding: 0 24px;
  border: 2px solid rgba(228, 210, 255, 0.78);
  border-radius: 14px;
  background: rgba(56, 9, 82, 0.88);
  color: #fff;
  font-size: 40px;
  outline: none;
}

.deposit-card-row input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.deposit-pay-logos {
  display: flex;
  justify-content: center;
  margin: -6px 0 -6px 16%;
}

.deposit-payment-methods-img {
  display: block;
  width: min(854px, 100%);
  height: auto;
  user-select: none;
  pointer-events: none;
}

.deposit-card-bottom {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  justify-content: end;
  gap: 72px;
  margin-top: -4px;
}

.deposit-card-bottom .deposit-card-row {
  width: 300px;
}

.deposit-card-bottom .deposit-card-row input {
  width: 300px;
  height: 72px;
  font-size: 34px;
}

.deposit-card-submit {
  justify-self: center;
  min-width: 450px;
  height: 126px;
  margin-top: -2px;
  border: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffe253, #ffcc00 70%);
  box-shadow:
    0 10px 0 rgba(50, 0, 81, 0.72),
    inset 0 4px 0 rgba(255, 255, 255, 0.45);
  color: #111;
  font-size: 48px;
  font-weight: 900;
  cursor: pointer;
}

.deposit-success-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.72);
}

.deposit-success-backdrop.is-open {
  display: flex;
}

.deposit-success-modal {
  position: relative;
  width: min(96vw, 1280px);
  aspect-ratio: 1280 / 601;
  max-height: 94vh;
  background: url("deposit-assets/deposit_success_bg.png") center / contain no-repeat;
  color: #fff;
  font-family: "Trebuchet MS", "Helvetica Neue", sans-serif;
}

.deposit-success-title {
  position: absolute;
  left: 28%;
  right: 27%;
  top: 14.6%;
  color: #ffe56b;
  font-size: clamp(18px, 4.2vw, 60px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(119, 54, 0, 0.82),
    0 0 12px rgba(255, 213, 68, 0.45);
  white-space: nowrap;
}

.deposit-success-subtitle {
  position: absolute;
  left: 32.5%;
  right: 32.5%;
  top: 26.8%;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(8px, 1.75vw, 24px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.64);
  white-space: nowrap;
}

.deposit-success-details {
  position: absolute;
  left: 28.35%;
  top: 39.15%;
  width: 43.25%;
  height: 29.8%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  padding: 0 1.55%;
  box-sizing: border-box;
}

.deposit-success-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  column-gap: 18px;
  border-bottom: 1px solid rgba(188, 135, 255, 0.24);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(8px, 1.65vw, 21px);
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.56);
}

.deposit-success-row:last-child {
  border-bottom: 0;
}

.deposit-success-row.is-primary {
  color: #fff;
  font-size: clamp(10px, 1.95vw, 26px);
  font-weight: 900;
}

.deposit-success-row strong {
  min-width: 0;
  color: #fff5b8;
  font: inherit;
  font-weight: 900;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deposit-success-row:not(.is-primary) strong {
  color: rgba(255, 255, 255, 0.88);
}

.deposit-success-close,
.deposit-success-home,
.deposit-success-balance {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.deposit-success-close {
  right: 1.5%;
  top: 2.4%;
  width: 4.1%;
  height: 8.6%;
}

.deposit-success-home {
  left: 28.2%;
  top: 76.6%;
  width: 20.6%;
  height: 10.3%;
}

.deposit-success-balance {
  left: 51.5%;
  top: 76.6%;
  width: 20.6%;
  height: 10.3%;
}

.deposit-success-home span,
.deposit-success-balance span {
  position: absolute;
  left: 22%;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(7px, 1.75vw, 24px);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.46);
}

.deposit-success-footer {
  position: absolute;
  left: 27.5%;
  top: 91.3%;
  width: 51.5%;
  height: 4.5%;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  column-gap: 8%;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(5px, 0.95vw, 14px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.deposit-success-footer span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deposit-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-bottom: 58px;
}

.deposit-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(22, 3, 34, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.deposit-field label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.deposit-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.deposit-record-tools {
  display: none;
}

.deposit-record-title {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 4px 0 #000;
}

.deposit-secondary-btn {
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #cfff35, #45cb12);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 2px 0 #000;
  cursor: pointer;
}

.deposit-record-list {
  width: min(88%, 920px);
  margin: 8px auto 0;
  padding-bottom: 54px;
  overflow: visible;
}

.deposit-record-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  column-gap: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 6px;
  color: #ffef5d;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 3px 0 rgba(96, 37, 0, 0.8),
    0 0 8px rgba(255, 237, 89, 0.32);
}

.deposit-record-item,
.deposit-empty-state {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.deposit-record-item {
  margin-bottom: 24px;
}

.deposit-record-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  column-gap: 34px;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
}

.deposit-record-amount {
  color: #fff268;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(96, 37, 0, 0.8);
}

.deposit-record-status {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-shadow: 0 2px 0 rgba(62, 0, 84, 0.86);
}

.deposit-record-status.is-success {
  background: transparent;
  color: #d9ffc7;
}

.deposit-record-status.is-reject {
  background: transparent;
  color: #fff;
}

.deposit-record-status.is-pending {
  background: transparent;
  color: #fff0b9;
}

.deposit-record-date {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(62, 0, 84, 0.86);
}

.deposit-empty-state {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
}

.deposit-subtle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

@media (max-width: 960px), (max-height: 620px) {
  .deposit-shell {
    width: min(96vw, 1080px);
    height: min(88vh, 620px);
    min-width: 0;
    min-height: 0;
  }

  .deposit-title-wrap {
    height: 66px;
  }

  .deposit-title {
    font-size: 34px;
  }

  .deposit-close {
    top: 14px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 54px;
  }

  .deposit-tab {
    min-height: 56px;
    margin-bottom: 18px;
    font-size: 24px;
  }

  .deposit-main {
    padding-top: 92px;
  }

  .deposit-topline {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 74px;
  }

  .deposit-player-id {
    font-size: 30px;
  }

  .deposit-amount-wrap {
    height: 58px;
  }

  .deposit-amount-wrap input {
    font-size: 30px;
  }

  .deposit-amount-grid {
    gap: 26px 36px;
  }

  .deposit-amount-card {
    min-height: 96px;
  }

  .deposit-amount-card::before {
    left: 16%;
    right: 25%;
  }

  .deposit-amount-value-wrap {
    left: 10%;
    right: 25%;
  }

  .deposit-amount-value {
    font-size: 48px;
  }

  .deposit-amount-icon {
    width: 128px;
    height: 88px;
  }

  .deposit-amount-icon-1 {
    width: 116px;
    height: 80px;
  }

  .deposit-amount-icon-2 {
    width: 124px;
    height: 84px;
  }

  .deposit-amount-icon-3,
  .deposit-amount-icon-4 {
    width: 132px;
    height: 92px;
  }

  .deposit-confirm {
    height: 58px;
    min-width: 210px;
    font-size: 30px;
  }

  .deposit-record-list {
    width: min(90%, 820px);
    margin-top: 4px;
  }

  .deposit-record-header,
  .deposit-record-row {
    grid-template-columns: 0.9fr 0.95fr 1.45fr;
    column-gap: 22px;
  }

  .deposit-record-header {
    font-size: 28px;
  }

  .deposit-record-amount,
  .deposit-record-status,
  .deposit-record-date {
    font-size: 26px;
  }

  .deposit-card-modal {
    width: min(90%, 920px);
    min-height: 74%;
    padding: 66px 6% 34px;
  }

  .deposit-card-close {
    top: 12px;
    right: 24px;
    width: 56px;
    height: 56px;
    font-size: 48px;
  }

  .deposit-card-form {
    gap: 22px;
  }

  .deposit-card-row.is-wide {
    grid-template-columns: 170px minmax(0, 520px);
    justify-content: end;
    gap: 26px;
  }

  .deposit-card-row.is-wide input {
    width: min(520px, 100%);
  }

  .deposit-card-row label {
    font-size: 30px;
  }

  .deposit-card-row input {
    height: 58px;
    font-size: 28px;
  }

  .deposit-pay-logos {
    margin: -4px 0 -4px 16%;
  }

  .deposit-payment-methods-img {
    width: min(620px, 100%);
  }

  .deposit-card-bottom {
    grid-template-columns: repeat(2, 220px);
    justify-content: end;
    gap: 44px;
  }

  .deposit-card-bottom .deposit-card-row {
    width: 220px;
  }

  .deposit-card-bottom .deposit-card-row input {
    width: 220px;
    height: 54px;
    font-size: 26px;
  }

  .deposit-card-submit {
    min-width: 310px;
    height: 78px;
    font-size: 34px;
  }

  .deposit-success-backdrop {
    padding: 8px;
  }

  .deposit-success-modal {
    width: min(98vw, 960px);
  }

  .deposit-success-row {
    column-gap: 10px;
  }

  .deposit-success-title {
    font-size: clamp(14px, 4vw, 38px);
  }

  .deposit-success-subtitle {
    font-size: clamp(7px, 1.7vw, 16px);
  }

  .deposit-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  #deposit-center-root {
    padding: 8px;
  }

  .deposit-shell {
    height: min(96vh, 720px);
    overflow: auto;
  }

  .deposit-title-wrap {
    left: 9%;
    right: 22%;
    height: 58px;
    border-width: 4px;
  }

  .deposit-title {
    font-size: 27px;
    white-space: nowrap;
  }

  .deposit-close {
    top: 12px;
    right: 13px;
    width: 42px;
    height: 42px;
    font-size: 42px;
  }

  .deposit-body {
    display: block;
  }

  .deposit-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: auto;
    padding: 78px 10px 10px;
  }

  .deposit-shell::after,
  .deposit-sidebar-art {
    display: none;
  }

  .deposit-tab {
    width: 100%;
    min-height: 48px;
    margin: 0;
    border-radius: 18px;
    font-size: 18px;
  }

  .deposit-main {
    padding: 18px 14px 28px;
  }

  .deposit-topline,
  .deposit-amount-grid,
  .deposit-form-grid {
    grid-template-columns: 1fr;
  }

  .deposit-record-list {
    width: 94%;
  }

  .deposit-amount-card::before {
    left: 14%;
    right: 24%;
  }

  .deposit-amount-value-wrap {
    left: 8%;
    right: 24%;
  }

  .deposit-amount-icon {
    width: 116px;
    height: 80px;
  }

  .deposit-amount-icon-1 {
    width: 104px;
    height: 72px;
  }

  .deposit-amount-icon-2 {
    width: 112px;
    height: 76px;
  }

  .deposit-amount-icon-3,
  .deposit-amount-icon-4 {
    width: 120px;
    height: 82px;
  }

  .deposit-record-header,
  .deposit-record-row {
    grid-template-columns: 0.8fr 0.85fr 1.45fr;
    column-gap: 10px;
  }

  .deposit-record-header {
    font-size: 18px;
  }

  .deposit-record-item {
    margin-bottom: 14px;
  }

  .deposit-record-amount,
  .deposit-record-status,
  .deposit-record-date {
    font-size: 17px;
  }

  .deposit-topline {
    margin-bottom: 24px;
  }

  .deposit-card-modal {
    width: 94%;
    min-height: 0;
    max-height: 86vh;
    overflow: auto;
    padding: 58px 24px 28px;
    border-radius: 18px;
  }

  .deposit-card-close {
    top: 10px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 38px;
  }

  .deposit-card-row.is-wide,
  .deposit-card-bottom {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 14px;
  }

  .deposit-card-row.is-wide input {
    width: 100%;
  }

  .deposit-card-bottom .deposit-card-row {
    width: 100%;
  }

  .deposit-card-bottom .deposit-card-row input {
    width: 100%;
  }

  .deposit-card-row label {
    font-size: 26px;
  }

  .deposit-pay-logos {
    margin-left: 0;
  }

  .deposit-card-submit {
    min-width: 220px;
    width: 72%;
  }
}
