.section-template--20655816310828__main-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}

@media screen and (min-width: 750px) {
  .section-template--20655816310828__main-padding {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

:root {
  --brand: #6b2db5;
  --brand-dark: #4f188f;
  --brand-deep: #371065;
  --brand-light: #f2eafe;
  --page-bg: #f4f5fa;
  --card-bg: rgba(255, 255, 255, 0.96);
  --text: #111827;
  --text-soft: #334155;
  --muted: #718096;
  --green: #16a34a;
  --red: #ef4444;
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.09);
  --shadow-brand: 0 16px 34px rgba(107, 45, 181, 0.24);
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: auto;
  background: var(--page-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text);
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(
      700px 310px at 4% -4%,
      rgba(107, 45, 181, 0.18),
      transparent 60%
    ),
    radial-gradient(
      550px 260px at 100% 8%,
      rgba(129, 76, 195, 0.11),
      transparent 60%
    ),
    var(--page-bg);
}

button,
input {
  font: inherit;
}

button {
  -webkit-appearance: none;
  appearance: none;
}

svg {
  display: block;
}

.app {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding-bottom: calc(34px + env(safe-area-inset-bottom));
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 65px;
  padding: calc(9px + env(safe-area-inset-top)) 13px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    130deg,
    var(--brand-deep) 0%,
    var(--brand) 52%,
    #8149c5 100%
  );
  box-shadow: 0 12px 30px rgba(55, 16, 101, 0.25);
  animation: headerGlowPulse 3.2s ease-in-out infinite;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(255, 255, 255, 0.23),
      transparent 36%
    ),
    radial-gradient(
      circle at 8% 100%,
      rgba(199, 159, 255, 0.19),
      transparent 34%
    );
  animation: headerBackgroundGlow 4s ease-in-out infinite;
}

.header::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90%;
  left: -48%;
  width: 34%;
  height: 280%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.32),
    rgba(255, 255, 255, 0.04),
    transparent
  );
  filter: blur(2px);
  transform: rotate(20deg);
  animation: headerGlowSweep 4.4s ease-in-out infinite;
}

.header-left,
.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.header-left {
  min-width: 0;
  gap: 10px;
}

.header-actions {
  flex: 0 0 auto;
  gap: 7px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.29),
    rgba(255, 255, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 20px rgba(31, 5, 62, 0.2);
  animation: brandFloat 3.5s ease-in-out infinite;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: brandRing 2.4s ease-out infinite;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 4px 7px rgba(38, 4, 72, 0.22));
  animation: logoSoftPulse 3.2s ease-in-out infinite;
}

.brand-text {
  min-width: 0;
  color: #fff;
}

.brand-title {
  font-size: 15px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.2;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-button {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 5px 12px rgba(31, 5, 62, 0.12);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.header-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-button:active {
  transform: scale(0.92);
  background: rgba(255, 255, 255, 0.2);
}

.notification-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffcf5a;
  border: 1px solid var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 207, 90, 0.12);
  animation: notifyPulse 1.8s ease-in-out infinite;
}

.content {
  padding-bottom: 8px;
}

.offer-bar {
  margin: 11px 11px 0;
  min-height: 48px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 250, 252, 0.94)
  );
  border: 1px solid rgba(239, 68, 68, 0.08);
  box-shadow: 0 6px 17px rgba(15, 23, 42, 0.06);
  animation: fadeUp 0.45s ease both;
}

.offer-left {
  min-width: 0;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.offer-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--red);
  background: linear-gradient(
    145deg,
    rgba(239, 68, 68, 0.13),
    rgba(239, 68, 68, 0.055)
  );
  box-shadow: 0 5px 12px rgba(239, 68, 68, 0.09);
}

.offer-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(239, 68, 68, 0.17);
  animation: softPulse 2s ease-in-out infinite;
}

.offer-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.offer-title {
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

.timer-value {
  min-width: 64px;
  flex: 0 0 auto;
  padding: 8px 9px;
  border-radius: 11px;
  color: var(--red);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.045)
  );
  border: 1px solid rgba(239, 68, 68, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  animation: timerSoftGlow 2.2s ease-in-out infinite;
}

.banner-wrap {
  padding: 10px 11px;
}

.banner-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 19px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.52s 0.05s ease both;
}

.banner-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 28%;
  height: 220%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(18deg);
  animation: bannerShine 5s ease-in-out infinite;
}

.banner-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 205px;
  object-fit: cover;
}

.recharge-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin: 0 11px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 17px 42px rgba(15, 23, 42, 0.09);
  animation: fadeUp 0.56s 0.1s ease both;
}

.recharge-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -115px;
  right: -120px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(107, 45, 181, 0.12),
    transparent 68%
  );
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.065);
}

.heading-icon {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--brand);
  background: linear-gradient(
    145deg,
    rgba(107, 45, 181, 0.16),
    rgba(107, 45, 181, 0.055)
  );
  border: 1px solid rgba(107, 45, 181, 0.14);
  box-shadow: 0 8px 17px rgba(107, 45, 181, 0.11);
  animation: headingIconFloat 2.8s ease-in-out infinite;
}

.heading-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: 17px;
  background: rgba(107, 45, 181, 0.1);
  opacity: 0;
  animation: headingIconGlow 2.2s ease-out infinite;
}

.heading-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.heading-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  animation: headingPhonePulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 5px rgba(107, 45, 181, 0.17));
}

.heading-copy {
  min-width: 0;
  flex: 1;
}

.heading-title {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.15px;
}

.heading-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.3;
}

.secure-badge {
  flex: 0 0 auto;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 9px;
  color: var(--green);
  background: rgba(22, 163, 74, 0.075);
  border: 1px solid rgba(22, 163, 74, 0.11);
  font-size: 8.5px;
  font-weight: 750;
  letter-spacing: 0.15px;
}

.secure-badge svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1px 8px;
  color: var(--text-soft);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.2;
}

.operator-radio {
  display: none;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 15px;
}

.operator-option {
  position: relative;
  min-width: 0;
  min-height: 78px;
  padding: 8px 4px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #fcfcfe);
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.045);
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.operator-option::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.55),
    transparent 46%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.operator-option:active {
  transform: scale(0.95);
}

.operator-logo-wrap {
  position: relative;
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow: 0 5px 11px rgba(15, 23, 42, 0.055);
  transition:
    transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.2s ease;
}

.operator-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: inherit;
  object-fit: contain;
}

.operator-name {
  max-width: 100%;
  color: #475569;
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.operator-check {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 4px 9px rgba(107, 45, 181, 0.3);
  opacity: 0;
  transform: scale(0.45);
  transition:
    opacity 0.2s ease,
    transform 0.25s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.operator-check svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.operator-option.selected {
  transform: translateY(-2px);
  background: linear-gradient(
    180deg,
    rgba(107, 45, 181, 0.11),
    rgba(255, 255, 255, 0.97)
  );
  border-color: rgba(107, 45, 181, 0.32);
  box-shadow: 0 10px 22px rgba(107, 45, 181, 0.14);
}

.operator-option.selected::before {
  opacity: 1;
}

.operator-option.selected .operator-logo-wrap {
  transform: scale(1.04);
  box-shadow: 0 7px 16px rgba(107, 45, 181, 0.14);
}

.operator-option.selected .operator-name {
  color: var(--brand);
  font-weight: 750;
}

.operator-option.selected .operator-check {
  opacity: 1;
  transform: scale(1);
}

.mobile-field {
  position: relative;
  margin-bottom: 5px;
}

.mobile-input-shell {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 7px 17px rgba(15, 23, 42, 0.045);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mobile-input-shell:focus-within {
  transform: translateY(-1px);
  border-color: rgba(107, 45, 181, 0.42);
  box-shadow:
    0 0 0 4px rgba(107, 45, 181, 0.075),
    0 10px 22px rgba(107, 45, 181, 0.1);
}

.country-prefix {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 2;
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 11px;
  color: var(--brand);
  background: var(--brand-light);
  border: 1px solid rgba(107, 45, 181, 0.12);
  font-size: 11.5px;
  font-weight: 800;
  pointer-events: none;
}

#mobileNumber {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 45px 0 68px;
  border: 0;
  outline: none;
  border-radius: inherit;
  color: var(--text);
  background: transparent;
  font-size: 16.5px;
  font-weight: 750;
  letter-spacing: 0.55px;
  caret-color: var(--brand);
  scroll-margin-top: 105px;
  scroll-margin-bottom: 170px;
}

#mobileNumber::placeholder {
  color: #a7b0bd;
  font-weight: 550;
  letter-spacing: 0.3px;
}

.contact-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border-radius: 10px;
  color: var(--brand);
  background: rgba(107, 45, 181, 0.075);
  pointer-events: none;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.input-message {
  display: none;
  padding: 6px 3px 0;
  color: var(--red);
  font-size: 9.5px;
  font-weight: 650;
  line-height: 1.3;
}

.mobile-field.invalid .mobile-input-shell {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.07);
}

.mobile-field.invalid .input-message {
  display: block;
  animation: errorTextIn 0.22s ease both;
}

.mobile-field.shake {
  animation: fieldShake 0.38s ease;
}

.recharge-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 51px;
  margin-top: 18px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(
    125deg,
    var(--brand-dark),
    var(--brand) 50%,
    #854bc7
  );
  box-shadow: var(--shadow-brand);
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    opacity 0.18s ease;
}

.recharge-button::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 34%;
  height: 240%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.27),
    transparent
  );
  transform: rotate(20deg);
  animation: buttonShine 3.5s ease-in-out infinite;
}

.recharge-button > span,
.recharge-button > svg {
  position: relative;
  z-index: 2;
}

.recharge-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.recharge-button:active {
  transform: scale(0.975);
  filter: brightness(0.97);
  box-shadow: 0 10px 22px rgba(107, 45, 181, 0.22);
}

.recharge-button:active svg {
  transform: translateX(3px);
}

.recharge-button:disabled {
  opacity: 0.72;
  cursor: default;
  transform: none;
}

.trust-row {
  margin-top: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #8490a1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(244, 245, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.loader-overlay.show {
  display: flex;
  animation: overlayFade 0.22s ease both;
}

.loader-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 310px;
  padding: 24px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
  text-align: center;
  animation: loaderCardIn 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.loader-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(107, 45, 181, 0.14),
    transparent 68%
  );
  pointer-events: none;
}

.loading-animation,
.success-animation {
  width: 69px;
  height: 69px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
}

.loading-animation {
  position: relative;
  display: flex;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(107, 45, 181, 0.09);
  border-top-color: var(--brand);
  border-right-color: rgba(107, 45, 181, 0.42);
  animation: spinnerRotate 0.78s linear infinite;
}

.spinner-core {
  position: relative;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--brand);
  background: var(--brand-light);
  animation: spinnerCore 1.25s ease-in-out infinite;
}

.spinner-core svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.success-animation {
  display: none;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(135deg, #25c864, var(--green));
  box-shadow: 0 15px 32px rgba(22, 163, 74, 0.24);
  animation: successPop 0.4s cubic-bezier(0.2, 1.5, 0.4, 1) both;
}

.success-animation svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  animation: checkDraw 0.4s 0.1s ease both;
}

.loader-title {
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
}

.loader-subtitle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.4;
}

.loader-progress {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(107, 45, 181, 0.09);
}

.loader-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-dark), #8f58d0);
  animation: progressMove 1.15s ease-in-out infinite;
}

.loader-card.success .loader-progress span {
  width: 100%;
  animation: progressComplete 0.35s ease both;
  background: var(--green);
}

body.keyboard-open .app {
  padding-bottom: 290px;
}

@media (max-width: 380px) {
  .header {
    min-height: 61px;
    padding: calc(8px + env(safe-area-inset-top)) 11px 8px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    border-radius: 14px;
  }

  .operator-check {
    width: 12px;
    height: 12px;
  }

  .operator-check svg {
    width: 8px;
    height: 8px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    font-size: 9.5px;
  }

  .header-button {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
  }

  .offer-bar {
    margin: 9px 9px 0;
    min-height: 46px;
    padding: 7px 8px;
    gap: 7px;
  }

  .offer-left {
    gap: 6px;
  }

  .offer-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .offer-title {
    font-size: 10.8px;
  }

  .timer-value {
    min-width: 60px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .banner-wrap {
    padding: 9px;
  }

  .recharge-card {
    margin: 0 9px;
    padding: 12px;
    border-radius: 20px;
  }

  .card-heading {
    padding-bottom: 11px;
    margin-bottom: 11px;
  }

  .heading-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 13px;
  }

  .heading-title {
    font-size: 13.5px;
  }

  .heading-subtitle {
    font-size: 9.5px;
  }

  .secure-badge {
    padding: 5px 6px;
    font-size: 7.5px;
  }

  .operator-grid {
    gap: 6px;
  }

  .operator-option {
    min-height: 72px;
    padding: 7px 3px 6px;
    border-radius: 14px;
  }

  .operator-logo-wrap {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .operator-name {
    font-size: 9px;
  }

  #mobileNumber {
    height: 51px;
    font-size: 15.5px;
  }

  .mobile-input-shell {
    min-height: 51px;
  }

  .recharge-button {
    min-height: 49px;
  }
}

@media (max-width: 335px) {
  .brand-subtitle,
  .secure-badge {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .offer-bar {
    gap: 5px;
    padding: 7px 6px;
  }

  .offer-title {
    font-size: 10px;
  }

  .timer-value {
    min-width: 57px;
    padding: 7px 6px;
    font-size: 10.5px;
  }

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

  .operator-option {
    min-height: 69px;
    flex-direction: row;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerGlowPulse {
  0%,
  100% {
    box-shadow:
      0 12px 30px rgba(55, 16, 101, 0.25),
      0 0 0 rgba(132, 76, 199, 0);
  }
  50% {
    box-shadow:
      0 15px 35px rgba(55, 16, 101, 0.34),
      0 6px 25px rgba(132, 76, 199, 0.25);
  }
}

@keyframes headerBackgroundGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes headerGlowSweep {
  0%,
  55% {
    left: -48%;
    opacity: 0;
  }
  63% {
    opacity: 0.8;
  }
  85% {
    left: 120%;
    opacity: 0.65;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes brandRing {
  0% {
    opacity: 0.32;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.17);
  }
}

@keyframes notifyPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes timerSoftGlow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 0 0 rgba(239, 68, 68, 0);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 5px 15px rgba(239, 68, 68, 0.14);
  }
}

@keyframes bannerShine {
  0%,
  62% {
    left: -45%;
  }
  82%,
  100% {
    left: 130%;
  }
}

@keyframes headingIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 8px 17px rgba(107, 45, 181, 0.11);
  }
  50% {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 12px 22px rgba(107, 45, 181, 0.19);
  }
}

@keyframes headingIconGlow {
  0% {
    opacity: 0.5;
    transform: scale(0.88);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes headingPhonePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes buttonShine {
  0%,
  58% {
    left: -45%;
  }
  80%,
  100% {
    left: 125%;
  }
}

@keyframes errorTextIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fieldShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-2px);
  }
}

@keyframes overlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes loaderCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinnerCore {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.58) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes checkDraw {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes progressMove {
  0% {
    left: -30%;
  }
  100% {
    left: 105%;
  }
}

@keyframes progressComplete {
  from {
    width: 30%;
  }
  to {
    width: 100%;
  }
}

/* --- Plans Page Styles --- */
.tabs-container {
  margin: 10px 11px;
}
.tabs {
  display: flex;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}
.tab-button {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-button.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(107, 45, 181, 0.2);
}
.plans-container {
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease;
}
.plan-card:active {
  transform: scale(0.98);
}
.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}
.plan-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-dark);
}
.plan-select-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107, 45, 181, 0.2);
}
.plan-features {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.plan-feature {
  display: flex;
  flex-direction: column;
}
.feature-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.plan-details {
  font-size: 11px;
  color: var(--text-soft);
  background: rgba(107, 45, 181, 0.05);
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 8px;
}

/* --- Payment Page Styles --- */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.payment-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}
.payment-option input {
  display: none;
}
.payment-option-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  transition: all 0.2s ease;
}
.payment-option input:checked + .payment-option-content {
  border-color: var(--brand);
  background: rgba(107, 45, 181, 0.04);
  box-shadow: 0 4px 12px rgba(107, 45, 181, 0.08);
}
.payment-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(107, 45, 181, 0.1);
  padding: 6px;
  border-radius: 8px;
  min-width: 32px;
  text-align: center;
}
.payment-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.success-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeUp 0.4s ease-out;
}
.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.success-icon-wrap svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}
.success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.success-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  max-width: 300px;
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
