/* Inline tutar paneli (1. ekran) */
.deposit-inline-panel {
  display: none;
  margin-top: 1.25rem;
  background: #121a1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}

.deposit-inline-panel.is-open {
  display: flex;
}

.deposit-inline-panel__logo {
  flex: 0 0 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.deposit-inline-panel__logo img {
  max-width: 100%;
  max-height: 5.5rem;
  object-fit: contain;
}

.deposit-inline-panel__form {
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.deposit-inline-panel__form label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

.deposit-inline-panel__form input {
  width: 100%;
  max-width: 100%;
  height: 42px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0 12px;
  border-radius: 2px;
}

.deposit-inline-panel__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
  border: none;
  border-radius: 999px;
  background: #f3ea29;
  color: #111;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 0.85rem 1.35rem;
  cursor: pointer;
  text-transform: uppercase;
}

.deposit-inline-panel__submit:hover {
  opacity: 0.92;
}

/* Wizard modal */
.deposit-wizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 24, 31, 0.55);
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.deposit-wizard-overlay.is-open {
  display: flex;
}

.deposit-wizard {
  width: min(760px, 100%);
  background: #f4f7fb;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.deposit-wizard__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 1.25rem 1.5rem 0.5rem;
  background: #fff;
}

.deposit-wizard__brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #8b8f98;
  letter-spacing: 0.5px;
  line-height: 1;
}

.deposit-wizard__brand-sub {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #1f9b57;
  letter-spacing: 0.3px;
}

.deposit-wizard__lang {
  display: inline-flex;
  border: 1px solid #d5dbe3;
  border-radius: 6px;
  overflow: hidden;
}

.deposit-wizard__lang button {
  border: none;
  background: #fff;
  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.deposit-wizard__lang button.is-active {
  background: #2e3192;
  color: #fff;
}

.deposit-wizard__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1rem 1.5rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #e8edf3;
}

.deposit-wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  position: relative;
}

.deposit-wizard__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 2px;
  background: #d7dde6;
  z-index: 0;
}

.deposit-wizard__step.is-done:not(:last-child)::after,
.deposit-wizard__step.is-active:not(:last-child)::after {
  background: #39b54a;
}

.deposit-wizard__step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  background: #fff;
  border: 2px solid #d7dde6;
  color: #9aa3b2;
  position: relative;
  z-index: 1;
}

.deposit-wizard__step.is-active .deposit-wizard__step-circle {
  background: #2e3192;
  border-color: #2e3192;
  color: #fff;
}

.deposit-wizard__step.is-done .deposit-wizard__step-circle {
  background: #39b54a;
  border-color: #39b54a;
  color: #fff;
}

.deposit-wizard__step-label {
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #9aa3b2;
}

.deposit-wizard__step.is-active .deposit-wizard__step-label {
  color: #2e3192;
}

.deposit-wizard__step.is-done .deposit-wizard__step-label {
  color: #39b54a;
}

.deposit-wizard__body {
  padding: 1.25rem 1.5rem 1rem;
  background: #fff;
}

.deposit-wizard__greeting {
  font-size: 1rem;
  color: #333;
  margin: 0 0 1rem;
}

.deposit-wizard__greeting strong {
  font-weight: 800;
}

.deposit-wizard__amount-pill {
  display: inline-block;
  background: #d9ecff;
  color: #1f4f8a;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.deposit-wizard__text {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.deposit-wizard__alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fde8ea;
  border: 1px solid #f3b6bd;
  color: #a94455;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.deposit-wizard__alert i {
  margin-top: 2px;
  flex-shrink: 0;
}

.deposit-wizard__alert strong {
  font-weight: 800;
}

.deposit-wizard__amount-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d9ecff;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  color: #1f4f8a;
  font-weight: 700;
}

.deposit-wizard__amount-bar strong {
  font-size: 1.35rem;
  font-weight: 900;
}

.deposit-wizard__warn {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff9e6;
  border: 1px solid #f0d59a;
  color: #8a6b1d;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.deposit-wizard__field {
  margin-bottom: 0.85rem;
}

.deposit-wizard__field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 0.84rem;
  margin-bottom: 0.35rem;
}

.deposit-wizard__field-copy {
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}

.deposit-wizard__field-value {
  width: 100%;
  border: 1px solid #d7dde6;
  background: #f8fafc;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #222;
}

.deposit-wizard__bank-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  color: #555;
}

.deposit-wizard__bank-row strong {
  color: #222;
  text-align: right;
}

.deposit-wizard__bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: #666;
  font-size: 0.84rem;
  line-height: 1.55;
}

.deposit-wizard__bullets li {
  margin-bottom: 0.35rem;
}

.deposit-wizard__bullets strong {
  color: #333;
}

.deposit-wizard__footer {
  background: #fff;
  border-top: 1px solid #e8edf3;
  padding: 1rem 1.5rem 1.25rem;
  border-radius: 0 0 12px 12px;
}

.deposit-wizard__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.deposit-wizard__btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 0.65rem;
}

.deposit-wizard__btn:last-child {
  margin-bottom: 0;
}

.deposit-wizard__btn--primary {
  background: #69b3ac;
  color: #fff;
}

.deposit-wizard__btn--danger {
  background: #ef5350;
  color: #fff;
}

.deposit-wizard__success {
  text-align: center;
  padding: 1.5rem 1rem 0.5rem;
}

.deposit-wizard__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #39b54a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.deposit-wizard__success h2 {
  margin: 0 0 0.75rem;
  color: #333;
  font-size: 1.35rem;
}

.deposit-wizard__success p {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.5;
}

.deposit-wizard__panel {
  display: none;
}

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

@media (max-width: 768px) {
  .deposit-inline-panel {
    flex-direction: column;
  }

  .deposit-inline-panel__logo {
    flex: none;
    width: 100%;
    border-radius: 0;
  }

  .deposit-wizard__steps {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .deposit-wizard__step {
    min-width: 72px;
  }
}
