:root {
  --hp-ink: #0B1220;
  --hp-blue: #2563EB;
  --hp-violet: #2563EB;
  --hp-cyan: #22C55E;
  --hp-soft: #f5f8fc;
  --hp-card: #ffffff;
  --hp-surface: #111827;
  --hp-surface-2: #1F2937;
  --hp-text-muted: #9CA3AF;
  --hp-warning: #F59E0B;
  --hp-error: #EF4444;
}

body {
  background: var(--hp-soft);
  color: #172033;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { text-decoration: none; }

.navbar-hitpro {
  background: linear-gradient(120deg, var(--hp-ink), var(--hp-blue) 62%, #5b39cf);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: #17c6d5;
  color: #07152f;
  font-weight: 800;
}

.hp-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.hp-card {
  background: var(--hp-card);
  border: 1px solid rgba(10, 36, 86, .08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 22, 48, .06);
}

.stat-tile {
  min-height: 122px;
  border-left: 4px solid var(--hp-cyan);
}

.btn-hitpro {
  --bs-btn-bg: #0c2d68;
  --bs-btn-border-color: #0c2d68;
  --bs-btn-hover-bg: #092552;
  --bs-btn-hover-border-color: #092552;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

.btn-accent {
  --bs-btn-bg: #17c6d5;
  --bs-btn-border-color: #17c6d5;
  --bs-btn-hover-bg: #11afbd;
  --bs-btn-hover-border-color: #11afbd;
  --bs-btn-color: #06172b;
  --bs-btn-hover-color: #06172b;
}

.status-badge {
  border-radius: 999px;
  padding: .38rem .72rem;
  font-size: .78rem;
  font-weight: 700;
}

.status-successful,
.status-approved { background: #dcfce7; color: #166534; }
.status-processing,
.status-pending,
.status-open { background: #fef3c7; color: #92400e; }
.status-failed,
.status-rejected { background: #fee2e2; color: #991b1b; }
.status-refunded,
.status-closed { background: #e0f2fe; color: #075985; }

.gif-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
}

.gif-card {
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #07152f;
  scroll-snap-align: start;
  color: #fff;
}

.gif-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}

.gif-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 47, .2), rgba(7, 21, 47, .9));
}

.gif-card-body {
  position: relative;
  z-index: 2;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.gif-card-badge {
  align-self: flex-start;
  background: rgba(23, 198, 213, .95);
  color: #06172b;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .72rem;
  font-weight: 800;
}

.gif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  background: #07152f;
  color: #fff;
}

.admin-sidebar a {
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .72rem 1rem;
  border-radius: 8px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: rgba(23,198,213,.16);
  color: #fff;
}

.header-logo,
.footer-logo {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.receipt {
  max-width: 760px;
}

.home-hero {
  width: 100vw;
  min-height: min(620px, 74vh);
  margin-left: calc(50% - 50vw);
  margin-top: -1.5rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 21, 47, .95), rgba(12, 45, 104, .74), rgba(104, 68, 232, .42)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.home-hero-inner {
  min-height: min(620px, 74vh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem 1rem;
}

.home-hero-copy {
  max-width: 760px;
  min-width: 0;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem .7rem;
  border-radius: 999px;
  background: rgba(23, 198, 213, .18);
  border: 1px solid rgba(23, 198, 213, .45);
  font-weight: 800;
  color: #bffaff;
}

.home-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .96;
  font-weight: 900;
}

.home-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, .84);
  font-size: 1.18rem;
}

.home-hero-metrics {
  display: grid;
  gap: .8rem;
}

.home-hero-metrics div,
.home-feature,
.home-steps {
  background: #fff;
  border: 1px solid rgba(10, 36, 86, .08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 22, 48, .06);
}

.home-hero-metrics div {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.home-hero-metrics strong {
  display: block;
  font-size: 1.7rem;
}

.home-hero-metrics span {
  color: rgba(255, 255, 255, .76);
}

.home-band {
  margin-top: 2rem;
}

.home-feature {
  height: 100%;
  padding: 1.25rem;
}

.home-feature i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: rgba(23, 198, 213, .14);
  color: #0c2d68;
  font-size: 1.35rem;
}

.home-feature h2 {
  font-size: 1.08rem;
}

.home-feature p {
  color: #5f6b7d;
  margin-bottom: 0;
}

.home-steps {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.home-steps h2 {
  margin-bottom: 0;
}

.home-steps ol {
  margin: 0;
  padding-left: 1.25rem;
  color: #435064;
}

.home-steps li + li {
  margin-top: .55rem;
}

.home-simple,
.home-app-block,
.home-footer-cta {
  background: #fff;
  border: 1px solid rgba(10, 36, 86, .08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 22, 48, .06);
  padding: 1.5rem;
}

.home-simple p,
.home-app-block p,
.home-footer-cta p {
  color: #5f6b7d;
}

.home-app-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(120deg, #fff, #eefaff);
}

.home-phone-mockup {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .5rem;
  color: #fff;
  background: linear-gradient(160deg, #07152f, #0c2d68 60%, #6844e8);
  border-radius: 24px;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.14);
}

.home-phone-mockup i {
  font-size: 4rem;
}

.home-footer-cta {
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #07152f, #0c2d68 65%, #6844e8);
}

.home-footer-cta p {
  color: rgba(255,255,255,.78);
}

.premium-hero {
  min-height: auto;
  background:
    linear-gradient(120deg, rgba(4, 15, 35, .96), rgba(10, 55, 107, .88) 54%, rgba(27, 155, 176, .52)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.premium-hero-grid {
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(1.25rem, 4vw, 3.5rem);
}

.home-trust-row,
.home-hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
}

.premium-hero .home-kicker {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
  color: #f2feff;
}

.premium-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.premium-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
}

.home-hero-proof {
  margin-top: 1.5rem;
}

.home-hero-proof span {
  display: inline-flex;
  flex-direction: column;
  min-width: 128px;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.74);
}

.home-hero-proof strong {
  color: #fff;
  font-size: .88rem;
}

.home-topup-embedded {
  width: 100%;
}

.home-topup-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #12213a;
  box-shadow: 0 24px 60px rgba(2, 10, 28, .28);
}

.home-topup-head {
  padding: 1.3rem 1.3rem .2rem;
}

.home-topup-head h2 {
  margin: .7rem 0 .35rem;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 850;
}

.home-topup-head p {
  color: #637083;
  font-size: .96rem;
  margin: 0;
}

.home-topup-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .68rem;
  border-radius: 999px;
  background: #e8fbfd;
  color: #07556a;
  font-weight: 800;
  font-size: .78rem;
}

.home-topup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  padding: 1.1rem 1.3rem;
}

.home-field {
  display: grid;
  gap: .38rem;
  margin: 0;
}

.home-field-wide {
  grid-column: 1 / -1;
}

.home-field span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: #2a3b55;
  font-size: .84rem;
  font-weight: 800;
}

.home-field .form-control,
.home-field .form-select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background-color: #fff;
  color: #13233d;
  font-weight: 650;
}

.home-field .form-control:focus,
.home-field .form-select:focus {
  border-color: var(--hp-cyan);
  box-shadow: 0 0 0 .2rem rgba(23, 198, 213, .18);
}

.home-topup-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
}

.home-topup-actions .btn {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  font-weight: 850;
}

.home-preview-box {
  margin: 0 1.3rem 1.05rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #d8e2ef;
  background: #f6f9fc;
  color: #22324b;
}

.home-preview-box.is-success {
  border-color: #b8ead4;
  background: #f0fdf6;
}

.home-preview-box.is-error {
  border-color: #fecaca;
  background: #fff1f2;
}

.home-preview-box dl {
  display: grid;
  grid-template-columns: minmax(90px, .75fr) minmax(0, 1.25fr);
  gap: .35rem .8rem;
  margin: .75rem 0 .35rem;
}

.home-preview-box dt {
  color: #65738a;
  font-weight: 750;
}

.home-preview-box dd {
  margin: 0;
  text-align: right;
}

.home-topup-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.3rem 1.15rem;
  border-top: 1px solid #edf2f7;
  color: #526177;
  font-size: .9rem;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 3rem;
  padding: 3.2rem 0 1.35rem;
  background: #06142c;
  color: rgba(255, 255, 255, .78);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(150px, .75fr));
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: 0 1rem;
}

.site-footer h2 {
  margin-bottom: .9rem;
  color: #fff;
  font-size: .96rem;
  font-weight: 850;
}

.site-footer a {
  display: block;
  margin-bottom: .54rem;
  color: rgba(255,255,255,.74);
}

.site-footer a:hover {
  color: #bffaff;
}

.site-footer-brand p {
  max-width: 420px;
  margin-bottom: 1rem;
}

.footer-logo {
  max-width: 42px;
  max-height: 42px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,.08);
}

.footer-play {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  max-width: 420px;
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.footer-play span {
  font-weight: 800;
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .7rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: #fff;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.1rem 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .home-hero-inner,
  .home-steps,
  .home-app-block {
    grid-template-columns: 1fr;
  }
  .home-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .premium-hero-grid {
    min-height: auto;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .home-topup-card {
    max-width: 640px;
    margin: 0 auto;
  }
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
  }
  .home-hero-inner {
    min-height: auto;
    padding: 2.5rem 1rem;
  }
  .home-hero-metrics {
    grid-template-columns: 1fr;
  }
  .home-trust-row,
  .home-hero-proof {
    gap: .45rem;
  }
  .premium-hero h1 {
    font-size: 2.28rem;
  }
  .home-topup-form,
  .home-topup-actions,
  .site-footer-grid,
  .site-footer-bottom {
    grid-template-columns: 1fr;
  }
  .home-field,
  .home-topup-actions > * {
    min-width: 0;
  }
  .home-topup-actions {
    display: grid;
  }
  .home-preview-box dd {
    text-align: left;
  }
  .site-footer-bottom {
    display: grid;
  }
}

/* Premium Ding-inspired homepage */
.is-home-landing {
  background: #0B1220;
  color: #FFFFFF;
}

.is-home-landing .navbar-home-premium {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(11, 18, 32, .84), rgba(11, 18, 32, 0));
  padding-top: .9rem;
}

.is-home-landing .navbar-home-premium .navbar-brand {
  font-size: 1.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.is-home-landing .navbar-home-premium .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #22C55E;
  color: #0B1220;
}

.is-home-landing .navbar-home-premium .nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.is-home-landing .navbar-home-premium .btn-accent {
  --bs-btn-bg: #FFFFFF;
  --bs-btn-border-color: rgba(255,255,255,.45);
  --bs-btn-hover-bg: #22C55E;
  --bs-btn-hover-border-color: #22C55E;
  --bs-btn-color: #0B1220;
  --bs-btn-hover-color: #0B1220;
  border-radius: 999px;
  font-weight: 900;
}

.home-main {
  min-height: 100vh;
  overflow: hidden;
}

.is-home-landing,
.is-home-landing body {
  max-width: 100%;
  overflow-x: hidden;
}

.home-main .hp-shell {
  width: 100%;
}

.home-main *,
.home-main *::before,
.home-main *::after {
  box-sizing: border-box;
}

.home-main .alert {
  max-width: 1180px;
  margin: 1rem auto;
}

.ding-hero {
  position: relative;
  width: 100vw;
  min-height: 470px;
  margin-left: calc(50% - 50vw);
  display: grid;
  place-items: center;
  overflow: hidden;
  background-position: center 32%;
  background-size: cover;
  box-sizing: border-box;
}

.ding-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(11,18,32,0), #0B1220);
}

.ding-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 8.4rem 1rem 7.2rem;
  text-align: center;
}

.ding-badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.2rem;
}

.ding-badge-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .76rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(17, 24, 39, .58);
  color: #FFFFFF;
  font-size: .86rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.ding-badge-row i {
  color: #22C55E;
}

.ding-hero h1 {
  max-width: 900px;
  margin: 0 auto .95rem;
  color: #FFFFFF;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.ding-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 750;
}

.ding-topup-stage {
  position: relative;
  z-index: 5;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -42px;
  padding: 1.15rem 1rem 3.1rem;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 197, 94, .15), transparent 35%),
    #0B1220;
  box-shadow: 0 -20px 70px rgba(3,7,18,.18);
  box-sizing: border-box;
}

.ding-services {
  margin: 0 auto 1rem;
  text-align: center;
}

.ding-services p {
  margin: .25rem 0 .8rem;
  color: #FFFFFF;
  font-weight: 900;
}

.ding-services p span {
  color: #22C55E;
}

.ding-service-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
}

.ding-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .48rem .82rem .48rem .5rem;
  border: 1px solid rgba(156, 163, 175, .32);
  border-radius: 999px;
  background: #111827;
  color: #FFFFFF;
  font-weight: 900;
}

.ding-pill.is-active {
  background: #2563EB;
  border-color: #2563EB;
}

.ding-pill-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #22C55E;
  color: #0B1220;
}

.home-main .home-topup-embedded {
  max-width: 680px;
  margin: 0 auto;
}

.home-main .home-topup-card {
  border: 1px solid rgba(156, 163, 175, .18);
  border-radius: 26px;
  background: #111827;
  color: #FFFFFF;
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

.home-main .home-topup-head {
  padding: 1.45rem 1.45rem .35rem;
  text-align: center;
}

.home-main .home-topup-badge {
  background: rgba(34, 197, 94, .16);
  color: #22C55E;
}

.home-main .home-topup-head h2 {
  color: #FFFFFF;
  font-size: 1.18rem;
  font-weight: 950;
}

.home-main .home-topup-head p,
.home-main .home-topup-note {
  color: #9CA3AF;
}

.home-main .home-topup-form {
  gap: .8rem;
  padding: 1rem 1.45rem 1.3rem;
}

.home-main .home-field span {
  color: #FFFFFF;
}

.home-main .home-field .form-control,
.home-main .home-field .form-select {
  min-height: 56px;
  border-color: rgba(156, 163, 175, .26);
  border-radius: 999px;
  background-color: #0B1220;
  color: #FFFFFF;
  box-shadow: none;
}

.home-main .home-field .form-control::placeholder {
  color: #9CA3AF;
}

.home-main .home-field .form-control:focus,
.home-main .home-field .form-select:focus {
  border-color: #22C55E;
  box-shadow: 0 0 0 .18rem rgba(34, 197, 94, .18);
}

.home-main .home-topup-actions {
  grid-template-columns: minmax(0, 1fr) 116px;
}

.home-main .home-topup-actions .btn {
  min-height: 56px;
  border-radius: 999px;
}

.home-main .btn-accent,
.home-main .home-topup-actions .btn-accent {
  --bs-btn-bg: #22C55E;
  --bs-btn-border-color: #22C55E;
  --bs-btn-hover-bg: #16A34A;
  --bs-btn-hover-border-color: #16A34A;
  --bs-btn-color: #0B1220;
  --bs-btn-hover-color: #0B1220;
  font-weight: 950;
}

.home-main .home-topup-actions .btn-outline-secondary {
  --bs-btn-color: #FFFFFF;
  --bs-btn-border-color: rgba(156, 163, 175, .32);
  --bs-btn-hover-bg: #1F2937;
  --bs-btn-hover-border-color: #1F2937;
  --bs-btn-hover-color: #FFFFFF;
}

.home-main .home-preview-box {
  border-color: rgba(156, 163, 175, .18);
  background: #1F2937;
  color: #FFFFFF;
}

.home-main .home-preview-box.is-success {
  border-color: rgba(34, 197, 94, .38);
  background: rgba(34, 197, 94, .09);
}

.home-main .home-preview-box.is-error {
  border-color: rgba(239, 68, 68, .42);
  background: rgba(239, 68, 68, .11);
}

.home-main .home-preview-box dt {
  color: #9CA3AF;
}

.home-main .home-topup-note {
  border-top-color: rgba(156, 163, 175, .15);
}

.home-main .home-band {
  max-width: 980px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.home-app-section {
  max-width: 760px !important;
}

.home-main .home-app-block {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) 220px;
  min-height: 260px;
  border: 1px solid rgba(34, 197, 94, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 95% 10%, rgba(37, 99, 235, .32), transparent 34%),
    linear-gradient(135deg, rgba(34, 197, 94, .22), rgba(17, 24, 39, .98) 45%, #111827);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.home-section-kicker {
  display: inline-block;
  margin-bottom: .8rem;
  color: #22C55E;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-main .home-app-block h2 {
  color: #FFFFFF;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 950;
}

.home-main .home-app-block p {
  max-width: 420px;
  color: #D1D5DB;
}

.app-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 48px;
  padding: .45rem .85rem;
  border-radius: 10px;
  background: #000;
  color: #FFFFFF;
  font-weight: 900;
}

.store-badge:hover {
  color: #22C55E;
}

.store-badge i {
  font-size: 1.45rem;
}

.store-badge small {
  display: block;
  color: #D1D5DB;
  font-size: .58rem;
  line-height: 1;
}

.store-badge.is-muted {
  background: #1F2937;
}

.home-phone-preview {
  display: flex;
  justify-content: center;
  align-self: stretch;
  min-height: 220px;
}

.phone-frame {
  width: 150px;
  height: 270px;
  align-self: end;
  padding: .75rem .55rem;
  border-radius: 28px 28px 0 0;
  background: #020617;
  box-shadow: 0 18px 48px rgba(0,0,0,.35);
}

.phone-notch {
  width: 56px;
  height: 8px;
  margin: 0 auto .7rem;
  border-radius: 999px;
  background: #111827;
}

.phone-screen {
  height: 220px;
  padding: .75rem;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #111827, #0B1220);
  color: #FFFFFF;
}

.phone-screen span {
  color: #9CA3AF;
  font-size: .66rem;
}

.phone-screen strong {
  display: block;
  margin: .45rem 0;
  font-size: .85rem;
}

.phone-screen button {
  width: 100%;
  margin-bottom: .65rem;
  border: 0;
  border-radius: 999px;
  background: #22C55E;
  color: #0B1220;
  font-size: .68rem;
  font-weight: 950;
}

.phone-screen div {
  height: 22px;
  margin-top: .5rem;
  border-radius: 8px;
  background: #1F2937;
}

.home-faq-section {
  max-width: 980px !important;
  margin-top: 4rem !important;
}

.home-faq-wrap h2 {
  max-width: 820px;
  margin: 0 auto .75rem;
  color: #FFFFFF;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
  font-weight: 950;
}

.home-faq-wrap > p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #9CA3AF;
  text-align: center;
}

.home-faq-list {
  border-top: 1px solid rgba(156, 163, 175, .18);
}

.home-faq-list details {
  border-bottom: 1px solid rgba(156, 163, 175, .18);
}

.home-faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 950;
  list-style: none;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list details[open] summary i {
  transform: rotate(180deg);
}

.home-faq-list details div {
  max-width: 800px;
  padding: 0 0 1.35rem;
  color: #9CA3AF;
  font-size: 1rem;
}

.is-home-landing .site-footer {
  margin-top: 4rem;
  padding-top: 3.4rem;
  background: #0B1220;
  border-top: 1px solid rgba(156, 163, 175, .18);
}

.is-home-landing .site-footer-grid {
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(130px, .7fr));
}

.is-home-landing .site-footer h2 {
  color: #FFFFFF;
}

.is-home-landing .site-footer,
.is-home-landing .site-footer a {
  color: #9CA3AF;
}

.is-home-landing .site-footer a:hover {
  color: #22C55E;
}

.is-home-landing .footer-play {
  background: #111827;
  border-color: rgba(156, 163, 175, .18);
}

.is-home-landing .footer-social a {
  background: #111827;
  border-color: rgba(156, 163, 175, .22);
}

.is-home-landing .site-footer-bottom {
  color: #9CA3AF;
  border-top-color: rgba(156, 163, 175, .18);
}

@media (max-width: 900px) {
  .is-home-landing .navbar-home-premium {
    position: relative;
    background: #0B1220;
  }

  .ding-hero {
    min-height: auto;
  }

  .ding-hero-content {
    padding: 4.5rem 1rem 6rem;
  }

  .home-main .home-app-block,
  .is-home-landing .site-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ding-hero,
  .ding-topup-stage,
  .is-home-landing .site-footer {
    width: 100%;
    margin-left: 0;
  }

  .ding-badge-row {
    flex-direction: column;
    align-items: center;
  }

  .ding-badge-row span {
    max-width: calc(100vw - 40px);
  }

  .ding-hero-content {
    padding: 3.2rem 1.25rem 5.2rem;
  }

  .ding-hero h1 {
    max-width: 330px;
    font-size: 2.05rem;
  }

  .ding-hero p {
    max-width: 330px;
    font-size: .98rem;
  }

  .ding-topup-stage {
    margin-top: -30px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-main .home-topup-form,
  .home-main .home-topup-actions {
    grid-template-columns: 1fr;
  }

  .home-main .home-topup-embedded {
    max-width: 100%;
  }

  .home-main .home-topup-card {
    border-radius: 20px;
  }

  .home-main .home-topup-head p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-main .home-topup-note {
    align-items: flex-start;
    font-size: .82rem;
    line-height: 1.45;
  }

  .home-main .home-app-block {
    padding: 1.25rem;
  }

  .home-phone-preview {
    display: none;
  }

  .home-faq-list summary {
    min-height: 68px;
  }
}

/* Structured admin navigation */
.admin-nav {
  display: grid;
  gap: 1.05rem;
}

.admin-nav-group {
  display: grid;
  gap: .28rem;
}

.admin-nav-title {
  padding: .35rem 1rem .15rem;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Homepage service switcher and step-by-step topup */
.home-service-panel {
  display: none;
}

.home-service-panel.is-active {
  display: block;
}

.home-step-form {
  display: grid;
  grid-template-columns: 1fr !important;
}

.home-step-indicator {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.home-step-indicator span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(156, 163, 175, .28);
  border-radius: 999px;
  color: #9CA3AF;
  font-size: .8rem;
  font-weight: 950;
}

.home-step-indicator span.is-active {
  border-color: #22C55E;
  background: #22C55E;
  color: #0B1220;
}

.home-step-indicator-wide {
  display: flex;
  justify-content: center;
  gap: .35rem;
  overflow-x: auto;
  padding-bottom: .2rem;
  scrollbar-width: thin;
}

.home-step-indicator-wide span {
  flex: 0 0 auto;
  width: auto;
  min-width: 82px;
  min-height: 30px;
  padding: .25rem .35rem;
  font-size: .68rem;
  line-height: 1.05;
}

.home-step-pane {
  display: none;
}

.home-step-pane.is-active {
  display: block;
}

.home-country-code,
.home-warning {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .65rem 0;
  padding: .75rem .9rem;
  border: 1px solid rgba(156, 163, 175, .18);
  border-radius: 14px;
  background: rgba(31, 41, 55, .72);
  color: #D1D5DB;
  font-weight: 800;
}

.home-warning {
  border-color: rgba(245, 158, 11, .35);
  color: #FDE68A;
}

.operator-detected,
.home-payment-box,
.home-loading-box,
.home-summary-box {
  display: grid;
  gap: .55rem;
  margin-bottom: .9rem;
  padding: 1rem;
  border: 1px solid rgba(34, 197, 94, .28);
  border-radius: 18px;
  background: rgba(34, 197, 94, .08);
  color: #FFFFFF;
}

.operator-detected {
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
}

.operator-detected img,
.operator-detected > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #FFFFFF;
  color: #0B1220;
  object-fit: contain;
}

.operator-detected span,
.home-payment-box span,
.home-loading-box small {
  color: #D1D5DB;
}

.home-coupon-result {
  padding: .7rem .85rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 850;
}

.home-coupon-result.is-success {
  border: 1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.12);
  color: #BBF7D0;
}

.home-coupon-result.is-error {
  border: 1px solid rgba(239,68,68,.35);
  background: rgba(239,68,68,.12);
  color: #FECACA;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.home-product-card {
  display: grid;
  gap: .28rem;
  min-height: 132px;
  padding: .95rem;
  border: 1px solid rgba(156, 163, 175, .22);
  border-radius: 18px;
  background: #0B1220;
  color: #FFFFFF;
  text-align: left;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.home-product-card:hover,
.home-product-card.is-selected {
  transform: translateY(-2px);
  border-color: #22C55E;
  background: rgba(34, 197, 94, .1);
}

.home-product-card span {
  width: fit-content;
  padding: .22rem .5rem;
  border-radius: 999px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-product-card strong {
  font-size: 1.15rem;
  font-weight: 950;
}

.home-product-card small {
  color: #D1D5DB;
}

.home-product-card em {
  color: #9CA3AF;
  font-size: .8rem;
  font-style: normal;
  line-height: 1.35;
}

.home-summary-box dl {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: .55rem .9rem;
  margin: 0;
}

.home-summary-box dt {
  color: #9CA3AF;
}

.home-summary-box dd {
  margin: 0;
  color: #FFFFFF;
}

.home-main .home-topup-actions {
  grid-template-columns: 120px minmax(0, 1fr);
}

/* Ding-style GIF Card voucher surfaces */
.home-voucher-picker {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 0 0;
}

.home-voucher-country,
.voucher-country-pill {
  width: min(100%, 520px);
  min-height: 58px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  border: 1px solid rgba(156, 163, 175, .35);
  border-radius: 999px;
  background: #111827;
  color: #FFFFFF;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 850;
  box-shadow: 0 14px 42px rgba(0,0,0,.24);
}

.home-voucher-country i:first-child,
.voucher-country-pill i:first-child {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #22C55E;
  color: #0B1220;
}

.home-voucher-country select,
.voucher-country-pill select {
  min-width: 0;
  max-width: 360px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #FFFFFF;
  font: inherit;
  font-weight: 900;
  appearance: none;
  text-align: center;
}

.home-voucher-country option,
.voucher-country-pill option {
  color: #0B1220;
}

.home-voucher-grid,
.voucher-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-voucher-card,
.voucher-shop-card {
  overflow: hidden;
  border: 1px solid rgba(156, 163, 175, .16);
  border-radius: 16px;
  background: #111827;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-voucher-card:hover,
.voucher-shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, .45);
  color: #FFFFFF;
  box-shadow: 0 26px 72px rgba(0,0,0,.34);
}

.home-voucher-art,
.voucher-shop-art {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  background-color: #1F2937;
  background-position: center;
  background-size: cover;
}

.home-voucher-art::after,
.voucher-shop-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,.06), rgba(11,18,32,.25));
}

.home-voucher-art span,
.voucher-shop-art span {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  padding: .28rem .58rem;
  border-radius: 999px;
  background: #22C55E;
  color: #0B1220;
  font-size: .68rem;
  font-weight: 950;
}

.home-voucher-body,
.voucher-shop-body {
  display: grid;
  gap: .24rem;
  padding: 1rem 1.05rem;
}

.home-voucher-body strong,
.voucher-shop-body strong {
  color: #FFFFFF;
  font-size: 1.04rem;
  font-weight: 950;
  line-height: 1.2;
}

.home-voucher-body small,
.voucher-shop-body small {
  color: #9CA3AF;
  font-size: .92rem;
}

.voucher-page {
  width: 100vw;
  min-height: calc(100vh - 78px);
  margin-left: calc(50% - 50vw);
  margin-top: -1.5rem;
  padding: 3.5rem 1rem 4rem;
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 99, 235, .24), transparent 34%),
    #0B1220;
}

.voucher-page-head {
  max-width: 880px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.voucher-shop-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.voucher-shop-art {
  min-height: 190px;
}

.voucher-about {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: center;
}

.voucher-about h2 {
  color: #FFFFFF;
  font-weight: 950;
}

.voucher-about p {
  color: #D1D5DB;
  font-size: 1.08rem;
  line-height: 1.8;
}

.voucher-detail-card {
  overflow: hidden;
  border: 1px solid rgba(156, 163, 175, .18);
  border-radius: 22px;
  background: #111827;
  color: #FFFFFF;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.voucher-detail-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  background: #1F2937;
}

.voucher-detail-card > div {
  padding: 1.4rem;
}

.voucher-detail-card h1 {
  color: #FFFFFF;
  font-weight: 950;
}

.voucher-detail-card p {
  color: #D1D5DB;
}

.contact-page {
  display: grid;
  gap: 1rem;
}

.contact-hero {
  padding: clamp(1.5rem, 4vw, 3rem);
  color: #FFFFFF;
  background:
    radial-gradient(circle at 90% 10%, rgba(37,99,235,.35), transparent 36%),
    linear-gradient(135deg, #111827, #0B1220);
}

.contact-hero h1 {
  max-width: 780px;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
}

.contact-hero p {
  max-width: 720px;
  color: #D1D5DB;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.2rem;
}

.contact-icon {
  color: #22C55E;
  font-size: 1.8rem;
}

.catalog-page {
  display: grid;
  gap: 1.1rem;
}

.catalog-head h1 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
}

.catalog-head p {
  max-width: 760px;
  color: #9CA3AF;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .85rem;
  padding: 1rem;
}

.catalog-toolbar label {
  color: #D1D5DB;
  font-weight: 850;
}

.catalog-status,
.catalog-empty {
  padding: 1rem;
  border: 1px solid rgba(156,163,175,.18);
  border-radius: 14px;
  background: #111827;
  color: #D1D5DB;
}

.data-bundle-list {
  display: grid;
  gap: 1rem;
}

.data-operator-card {
  padding: 1rem;
}

.data-operator-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: .9rem;
  align-items: center;
  margin-bottom: 1rem;
}

.data-operator-head img,
.data-operator-head > i,
.gift-art img,
.gift-art > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #FFFFFF;
  color: #0B1220;
  object-fit: contain;
}

.data-operator-head h2,
.gift-body h2 {
  margin: .25rem 0;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 950;
}

.data-operator-head p,
.gift-body p,
.gift-body small {
  margin: 0;
  color: #9CA3AF;
}

.catalog-badge {
  width: fit-content;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: #22C55E;
  color: #0B1220;
  font-size: .7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.data-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .75rem;
}

.data-plan,
.gift-catalog-card {
  border: 1px solid rgba(156,163,175,.18);
  border-radius: 16px;
  background: #0B1220;
}

.data-plan {
  display: grid;
  gap: .25rem;
  padding: .9rem;
}

.data-plan strong,
.gift-body strong {
  color: #FFFFFF;
  font-weight: 950;
}

.data-plan span {
  color: #D1D5DB;
}

.data-plan small {
  color: #9CA3AF;
}

.gift-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gift-catalog-card {
  overflow: hidden;
}

.gift-art {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  background: #1F2937;
}

.gift-art .catalog-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
}

.gift-body {
  display: grid;
  gap: .35rem;
  padding: 1rem;
}

.admin-gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.admin-gift-card {
  border: 1px solid rgba(148, 163, 184, .25);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.admin-gift-logo {
  position: relative;
  min-height: 140px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0B1220, #1F2937);
}

.admin-gift-logo img {
  max-width: 76%;
  max-height: 90px;
  object-fit: contain;
}

.admin-gift-logo i {
  color: #22C55E;
  font-size: 2.5rem;
}

.admin-gift-logo span {
  position: absolute;
  top: .75rem;
  right: .75rem;
  border-radius: 999px;
  padding: .25rem .6rem;
  background: #22C55E;
  color: #0B1220;
  font-weight: 800;
  font-size: .75rem;
}

.admin-gift-body {
  padding: 1rem;
}

.admin-gift-body strong,
.admin-gift-body small {
  display: block;
}

.home-voucher-logo-art,
.reloadly-product-art {
  background-image: none !important;
  background: linear-gradient(135deg, #0B1220, #1F2937);
  display: grid;
  place-items: center;
}

.home-voucher-logo-art img,
.reloadly-product-art img {
  max-width: 76%;
  max-height: 92px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.reloadly-product-art i {
  color: #22C55E;
  font-size: 2.5rem;
}

.reloadly-product-meta {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .75rem;
  color: #0B1220;
}

.reloadly-product-meta em {
  color: #64748b;
  font-style: normal;
  font-weight: 800;
}

button.reloadly-product-card {
  border: 0;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

button.reloadly-product-card:hover {
  transform: translateY(-3px);
}

.reloadly-gift-detail {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(11, 18, 32, .72);
}

.gift-detail-panel {
  width: min(760px, 100%);
  max-height: 86vh;
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  color: #0B1220;
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.gift-detail-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: #22C55E;
  color: #0B1220;
}

.gift-detail-head {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
}

.gift-detail-head .reloadly-product-art {
  min-height: 140px;
  border-radius: 18px;
}

.gift-detail-meta,
.gift-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1rem 0;
}

.gift-detail-meta span,
.gift-price-list span {
  border-radius: 999px;
  padding: .55rem .85rem;
  background: #F1F5F9;
  color: #0B1220;
  font-weight: 700;
}

.gift-price-choice {
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  padding: .55rem .85rem;
  background: #F8FAFC;
  color: #0B1220;
  font-weight: 800;
}

.gift-price-choice.is-selected,
.gift-price-choice:hover {
  border-color: #22C55E;
  background: #DCFCE7;
}

.gift-buy-form {
  border-top: 1px solid #E2E8F0;
  margin-top: 1rem;
  padding-top: 1rem;
}

.announcement-stack {
  display: grid;
  gap: .75rem;
  margin-bottom: 1rem;
}

.announcement-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 16px;
  padding: .9rem 1rem;
  background: #111827;
  color: #fff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .16);
}

.announcement-banner strong,
.announcement-banner span {
  display: block;
}

.announcement-banner span {
  color: #CBD5E1;
}

.announcement-success,
.announcement-promo {
  background: linear-gradient(135deg, #0B1220, #166534);
}

.announcement-warning {
  background: linear-gradient(135deg, #0B1220, #92400E);
}

.announcement-danger {
  background: linear-gradient(135deg, #0B1220, #991B1B);
}

.topup-promo-list {
  display: grid;
  gap: .75rem;
  margin: 1rem 0;
}

.topup-promo-list h3 {
  font-size: 1rem;
  margin: 0;
}

.topup-promo-item {
  display: flex;
  gap: .75rem;
  align-items: center;
  border-radius: 14px;
  padding: .75rem;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(34, 197, 94, .22);
}

.topup-promo-item > span {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22C55E;
  color: #0B1220;
  font-weight: 900;
}

.topup-promo-item small {
  display: block;
  color: #9CA3AF;
}

.gift-price-list small {
  color: #64748b;
  margin-left: .35rem;
}

.topup-pro-page {
  display: grid;
  gap: 1.5rem;
}

.topup-ding-page {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -1.5rem;
  padding: 3rem 1rem 5rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .24), transparent 34%),
    linear-gradient(180deg, #0B1220 0%, #0B1220 300px, #F8FAFC 301px);
}

.topup-ding-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topup-ding-header {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.topup-ding-country {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  width: min(560px, 100%);
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: 0 1.25rem;
  background: #fff;
  color: #0B1220;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.topup-ding-country .form-select {
  border: 0;
  box-shadow: none;
  font-size: 1.15rem;
  font-weight: 800;
  background: transparent;
}

.topup-ding-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

.topup-ding-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  color: #0B1220;
  border: 1px solid #DCE7F1;
}

.topup-ding-card .topup-pane p,
.topup-ding-card .operator-card-pro small,
.topup-ding-card .product-card-pro small {
  color: #64748B;
}

.topup-ding-card .topup-stepper span {
  border-color: #DCE7F1;
  color: #64748B;
}

.topup-ding-card .topup-stepper span.is-active {
  color: #0B1220;
}

.topup-ding-input {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 2px solid #C7F900;
  border-radius: 999px;
  padding: 0 1rem;
  box-shadow: 0 0 0 4px rgba(199, 249, 0, .18);
}

.topup-ding-input > span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #0B1220;
  font-weight: 900;
}

.topup-ding-input img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.topup-ding-input input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 1.15rem;
  min-width: 0;
}

.topup-ding-card .operator-card-pro,
.topup-ding-card .product-card-pro,
.topup-ding-card .topup-summary-pro {
  background: #F8FAFC;
  border-color: #DCE7F1;
  color: #0B1220;
}

.topup-ding-card .topup-loading,
.topup-ding-card .catalog-empty {
  color: #0B1220;
}

.topup-pro-hero {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, .22), transparent 34%),
    linear-gradient(135deg, #0B1220, #111827);
  color: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .22);
}

.topup-pro-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: .6rem 0;
  letter-spacing: 0;
}

.topup-pro-hero p {
  max-width: 720px;
  color: #cbd5e1;
  margin: 0;
}

.topup-pro-kicker,
.topup-pro-trust span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #22C55E;
  font-weight: 800;
}

.topup-pro-trust {
  display: grid;
  gap: .65rem;
  align-content: center;
  min-width: 220px;
}

.topup-pro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
}

.topup-pro-card,
.topup-side-panel {
  border-radius: 20px;
  background: #111827;
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
  padding: 1.5rem;
}

.topup-side-panel {
  align-self: start;
}

.topup-side-panel p,
.topup-pane p {
  color: #9CA3AF;
}

.topup-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.topup-stepper span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(156, 163, 175, .28);
  border-radius: 999px;
  color: #9CA3AF;
  font-weight: 800;
}

.topup-stepper span.is-active {
  background: #22C55E;
  border-color: #22C55E;
  color: #0B1220;
}

.topup-pane {
  display: none;
}

.topup-pane.is-active {
  display: block;
}

.topup-country-code {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(156, 163, 175, .28);
  border-radius: 14px;
  padding: .65rem .9rem;
  background: #1F2937;
}

.topup-country-code img,
.operator-detected img,
.operator-card-pro img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

.operator-detected {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .35);
}

.operator-detected span {
  display: block;
  color: #9CA3AF;
  font-size: .9rem;
}

.operator-grid,
.product-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .85rem;
}

.operator-card-pro,
.product-card-pro {
  min-height: 126px;
  border: 1px solid rgba(156, 163, 175, .25);
  border-radius: 16px;
  background: #1F2937;
  color: #fff;
  padding: 1rem;
  text-align: left;
  display: grid;
  gap: .45rem;
}

.operator-card-pro.is-selected,
.product-card-pro.is-selected {
  border-color: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
}

.operator-card-pro small,
.product-card-pro small {
  color: #9CA3AF;
}

.product-card-pro strong {
  font-size: 1.35rem;
}

.product-card-pro .badge {
  justify-self: start;
  background: rgba(37, 99, 235, .18);
  color: #93c5fd;
}

.topup-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.topup-summary-pro {
  border-radius: 16px;
  background: #1F2937;
  padding: 1rem;
}

.topup-summary-pro dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: .65rem 1rem;
  margin: 0;
}

.topup-summary-pro dt {
  color: #9CA3AF;
}

.topup-summary-pro dd {
  margin: 0;
  font-weight: 800;
}

.topup-warning,
.topup-alert,
.topup-loading {
  border-radius: 14px;
  padding: .85rem 1rem;
  margin-top: 1rem;
}

.topup-warning {
  background: rgba(245, 158, 11, .14);
  color: #FDE68A;
}

.topup-alert {
  background: rgba(239, 68, 68, .14);
  color: #fecaca;
  margin-bottom: 1rem;
}

.topup-loading {
  background: rgba(37, 99, 235, .14);
  color: #bfdbfe;
}

@media (max-width: 980px) {
  .topup-pro-hero,
  .topup-pro-grid,
  .topup-ding-main {
    grid-template-columns: 1fr;
  }

  .topup-pro-hero {
    display: grid;
  }

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

@media (max-width: 640px) {
  .admin-nav {
    gap: .65rem;
  }

  .home-main .home-topup-actions {
    grid-template-columns: 1fr;
  }

  .topup-stepper {
    grid-template-columns: 1fr 1fr;
  }

  .topup-actions {
    flex-direction: column;
  }

  .topup-summary-pro dl {
    grid-template-columns: 1fr;
  }

  .gift-detail-head {
    grid-template-columns: 1fr;
  }

  .home-voucher-grid,
  .voucher-shop-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-summary-box dl {
    grid-template-columns: 1fr;
  }

  .home-voucher-country,
  .voucher-country-pill {
    min-height: 54px;
    padding: 0 .9rem;
    justify-content: space-between;
    font-size: 1rem;
  }

  .home-voucher-art,
  .voucher-shop-art {
    min-height: 170px;
  }

  .voucher-page {
    width: 100%;
    margin-left: 0;
    padding-top: 2rem;
  }

  .voucher-detail-card img {
    height: 250px;
  }
}
