:root {
  --bg: #000;
  --panel: rgba(14, 14, 16, 0.94);
  --panel-soft: rgba(255, 255, 255, 0.64);
  --text: #fff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.36);
  --button: #fff;
  --button-text: #050505;
  --glow: rgba(255, 255, 255, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  background: #000;
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
}

.brand {
  position: absolute;
  top: calc(50% + 8px);
  left: 50%;
  z-index: 1;
  width: 320px;
  height: 97px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.brand img,
.footer img,
.modal-brand img {
  display: block;
}

.brand img {
  width: 313px;
  height: auto;
  transform: translateY(-122px);
}

.nav {
  display: none;
  gap: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 116px 20px 64px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.26) 0 1px, transparent 1.5px) 0 0 / 42px 42px,
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1.4px) 0 0 / 58px 58px,
    linear-gradient(180deg, #030303 0%, #07101a 48%, #050505 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 40%, rgba(255, 255, 255, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.54));
}

.space-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.planet {
  position: absolute;
  left: -210px;
  top: 98px;
  width: 650px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.95), rgba(210, 225, 233, 0.72) 9%, rgba(77, 92, 102, 0.54) 25%, rgba(11, 21, 31, 0.95) 55%, #010101 76%),
    linear-gradient(120deg, #fff, #111);
  box-shadow: 0 0 86px rgba(255, 255, 255, 0.22);
  opacity: 0.82;
}

.astronaut {
  position: absolute;
  right: 90px;
  bottom: 8vh;
  width: 290px;
  height: 440px;
  opacity: 0.74;
  filter: grayscale(1);
}

.helmet,
.body,
.pack {
  position: absolute;
  display: block;
  background: linear-gradient(140deg, #f7f7f7, #262626 62%, #050505);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.helmet {
  top: 0;
  left: 70px;
  width: 150px;
  height: 136px;
  border-radius: 50%;
  box-shadow: inset -28px -22px 42px #000, 0 0 24px rgba(255, 255, 255, 0.18);
}

.helmet::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 48px;
  width: 92px;
  height: 48px;
  border-radius: 50%;
  background: #080808;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.body {
  top: 128px;
  left: 58px;
  width: 170px;
  height: 208px;
  border-radius: 40px 42px 32px 32px;
  transform: rotate(7deg);
}

.body::before,
.body::after {
  content: "";
  position: absolute;
  bottom: -88px;
  width: 54px;
  height: 116px;
  border-radius: 26px;
  background: linear-gradient(160deg, #f4f4f4, #111 68%);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.body::before {
  left: 24px;
}

.body::after {
  right: 20px;
  transform: rotate(-16deg);
}

.pack {
  top: 146px;
  right: 3px;
  width: 82px;
  height: 170px;
  border-radius: 22px;
  transform: rotate(7deg);
}

.hero-content {
  width: min(100%, 980px);
  display: grid;
  gap: 42px;
  justify-items: center;
  margin-top: 34px;
}

h1 {
  max-width: 880px;
  margin: 0;
  text-align: center;
  font-size: clamp(36px, 4.1vw, 58px);
  line-height: 1.6;
  font-weight: 400;
}

.dashboard-card {
  width: min(100%, 880px);
  padding: 24px;
  border-radius: 10px;
  background: rgba(160, 160, 160, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.55);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.deposit-btn {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 190px;
  height: 56px;
  color: #000;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: inset -18px -12px 0 rgba(0, 0, 0, 0.08);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.balance-pill {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  height: 56px;
  padding: 0 20px;
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
}

.balance-pill span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  font-weight: 900;
}

.balance-pill strong {
  font-size: 22px;
  font-weight: 900;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.flow-steps span {
  display: grid;
  place-items: center;
  min-height: 34px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
}

input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #fff;
  background: #000;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 7px;
  font-size: 18px;
  outline: none;
}

select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #fff;
  background: #000;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 7px;
  font-size: 16px;
  outline: none;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input:focus,
select:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 14px;
  color: #fff;
  background: #000;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.select-trigger::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.custom-select.open .select-trigger {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 100%;
  max-height: 245px;
  overflow-y: auto;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 7px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.custom-select.open .select-menu {
  display: grid;
}

.select-menu button {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  color: #fff;
  background: #000;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.select-menu button:last-child {
  border-bottom: 0;
}

.select-menu button:hover,
.select-menu button.active {
  color: #000;
  background: #fff;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.social-card {
  display: grid;
  place-items: center;
  gap: 8px;
  aspect-ratio: 1;
  min-height: 108px;
  padding: 12px 8px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-weight: 800;
  cursor: pointer;
}

.social-card:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.social-card.active {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.social-card.active .social-icon {
  background: #f4f4f4;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
}

.social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-card b {
  font-size: 20px;
  line-height: 1;
}

.instagram .social-icon,
.tiktok .social-icon,
.kwai .social-icon {
  padding: 9px;
}

.service-table {
  display: grid;
  gap: 10px;
}

.empty-service {
  padding: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: 8px;
}

.empty-service b,
.empty-service small {
  display: block;
}

.empty-service b {
  margin-bottom: 6px;
}

.empty-service small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}

.service-table button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.service-table button:hover,
.service-table button.selected {
  border-color: #fff;
}

.service-table button.selected {
  box-shadow: 0 0 0 2px #fff;
}

.service-table b,
.service-table small {
  display: block;
}

.service-table b {
  margin-bottom: 4px;
  font-size: 15px;
}

.service-table small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.service-table strong {
  padding: 10px 12px;
  color: #000;
  background: #fff;
  border-radius: 6px;
  white-space: nowrap;
}

.checkout-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.field-help {
  display: block;
  margin-top: -8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.amount-grid input,
#targetLink {
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.38);
  background: #080808;
  font-size: 22px;
}

.amount-grid label span,
.checkout-panel label span {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.78);
}

.order-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background: #050505;
  border-radius: 7px;
}

.order-summary span {
  font-weight: 800;
  line-height: 1.25;
}

.order-summary strong {
  color: #000;
  background: #fff;
  border-radius: 6px;
  padding: 9px 12px;
  white-space: nowrap;
}

.primary-btn,
.google-btn,
.refer-actions button,
.refer-actions a {
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.primary-btn {
  width: 100%;
  height: 48px;
  color: var(--button-text);
  background: var(--button);
  border-radius: 7px;
  font-size: 14px;
}

.panel-action {
  margin-top: 0;
}

.secondary-btn {
  width: 100%;
  height: 48px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.client-area {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.client-area-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.client-area h2 {
  margin: 0;
  font-size: 18px;
}

.client-area-head span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.orders-list {
  display: grid;
  gap: 10px;
}

.empty-order,
.order-item {
  padding: 14px 16px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.empty-order {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: default;
}

.order-item.is-pending {
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.48);
}

.order-item.is-pending:hover {
  background: #111;
  border-color: #fff;
}

.order-item b,
.order-item small {
  display: block;
}

.order-item small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

.status-pill {
  padding: 9px 12px;
  color: #000;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 230px;
  height: 42px;
  margin: 10px auto 0;
  color: #333;
  background: #fff;
  border-radius: 5px;
  font-size: 15px;
}

.google-btn span {
  color: #4285f4;
  font-size: 22px;
  font-weight: 800;
}

.footer {
  padding: 38px 28px 34px;
  text-align: left;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer img {
  width: 180px;
  margin: 0 auto 28px;
}

.footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}

.footer b {
  color: #fff;
}

.footer-grid {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.copyright {
  max-width: 1180px;
  margin: 24px auto 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.float-button {
  position: fixed;
  z-index: 18;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #050505;
  background: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.indicate {
  left: 4px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border: 2px solid #cfcfcf;
}

.indicate b {
  font-size: 20px;
}

.indicate span {
  font-size: 9px;
  font-weight: 800;
}

.whats {
  left: 8px;
  width: 60px;
  height: 60px;
}

.whats {
  bottom: 104px;
}

.whats img {
  width: 32px;
  height: 32px;
}

.vip-card {
  position: fixed;
  z-index: 19;
  right: 38px;
  bottom: 110px;
  width: 318px;
  padding: 28px 24px;
  color: #fff;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.15);
}

.vip-card[hidden] {
  display: none;
}

.vip-card span {
  display: inline-block;
  padding: 7px 10px;
  color: #000;
  background: #fff;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.vip-card h3 {
  margin: 22px 0 16px;
  font-size: 19px;
}

.vip-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.vip-card a {
  display: block;
  margin-top: 20px;
  padding: 15px 18px;
  color: #000;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

.vip-card small {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.mini-close {
  top: 14px;
  right: 14px;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.58);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  display: grid;
}

.packages-modal,
.refer-modal,
.payment-modal,
.deposit-modal {
  position: relative;
  width: min(420px, 94vw);
  padding: 24px 22px 20px;
  color: #fff;
  background: rgba(9, 9, 10, 0.98);
  border: 2px solid #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26), 0 0 42px var(--glow);
}

.packages-modal h2 {
  margin: 2px 34px 6px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

.packages-modal time {
  display: block;
  margin-bottom: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.package-list {
  display: grid;
  gap: 11px;
  max-height: 428px;
  overflow-y: auto;
  padding-right: 6px;
}

.package-list::-webkit-scrollbar {
  width: 5px;
}

.package-list::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.package-row {
  display: grid;
  grid-template-columns: 1fr 78px;
  gap: 12px;
  align-items: center;
  min-height: 57px;
  padding: 10px 10px 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #121212;
}

.package-row:hover {
  border-color: #fff;
}

.package-row b {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.package-row small {
  display: block;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.25;
}

.package-row em {
  display: grid;
  place-items: center;
  height: 36px;
  color: #000;
  background: #fff;
  border-radius: 7px;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.modal-brand {
  margin-top: 13px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.modal-brand img {
  width: 112px;
  margin: 0 auto 2px;
}

.modal-brand p {
  margin: 0;
  color: #8e8e8e;
  font-size: 12px;
  font-weight: 700;
}

.referral-backdrop {
  z-index: 29;
}

.refer-modal {
  width: min(540px, 94vw);
  border-color: #fff;
}

.payment-modal {
  width: min(460px, 94vw);
}

.deposit-modal {
  width: min(820px, 94vw);
}

.deposit-modal h2 {
  margin: 8px 48px 22px;
  text-align: center;
  font-size: 26px;
}

.deposit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deposit-grid button {
  position: relative;
  min-height: 86px;
  color: #fff;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.deposit-grid button:hover {
  background: #fff;
  color: #000;
}

.deposit-grid small {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  color: #000;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.deposit-grid button:hover small {
  color: #fff;
  background: #000;
}

.bonus-banner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  background: #020202;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.bonus-gift {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: #000;
  background: #fff;
  border-radius: 18px;
  font-size: 54px;
  filter: grayscale(1);
}

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

.bonus-banner p {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
}

.bonus-banner strong {
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1.1;
}

.bonus-banner strong b {
  color: #fff;
  font-size: 54px;
}

.bonus-banner span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
  font-weight: 800;
}

.payment-modal h2 {
  margin: 8px 48px 22px;
  text-align: center;
  font-size: 24px;
}

.payment-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 18px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.payment-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.payment-summary strong {
  font-size: 28px;
}

.payment-modal.pix-ready h2,
.payment-modal.pix-ready .payment-summary,
.payment-modal.pix-ready .customer-grid,
.payment-modal.pix-ready .generate-pix {
  display: none;
}

.payment-modal input,
.payment-modal textarea {
  font-size: 14px;
}

.customer-grid {
  display: grid;
  gap: 12px;
}

.generate-pix,
.copy-pix {
  margin-top: 14px;
}

.generate-pix.loading {
  opacity: 0.72;
  pointer-events: none;
}

.pix-result {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.pix-result[hidden] {
  display: none;
}

.pix-result img {
  width: 190px;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.pix-result textarea {
  width: 100%;
  min-height: 92px;
  padding: 12px;
  color: #fff;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  resize: vertical;
  outline: none;
}

.refer-modal h2 {
  margin: 4px 45px 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #fff;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
}

.refer-box {
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.refer-box p {
  margin: 0 0 10px;
  line-height: 1.55;
  font-weight: 700;
}

.refer-box strong {
  color: #fff;
}

.refer-box ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.refer-box li {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.copy-ref-link {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  color: #000;
  background: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.refer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.refer-actions button,
.refer-actions a {
  display: grid;
  place-items: center;
  height: 52px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  text-transform: uppercase;
}

.refer-actions a {
  color: #000;
  background: #fff;
}

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(30px);
  padding: 13px 18px;
  color: #000;
  background: #fff;
  border-radius: 9px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 68px;
  }

  .topbar {
    height: auto;
    min-height: 64px;
    align-items: center;
    flex-direction: row;
    gap: 0;
    padding: 8px 10px;
  }

  .brand {
    position: static;
    position: absolute;
    top: calc(50% + 8px);
    left: 50%;
    width: 211px;
    height: 55px;
    transform: translate(-50%, -50%);
  }

  .brand img {
    width: 209px;
    transform: translateY(-82px);
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 100svh;
    place-items: start center;
    padding: 76px 8px 24px;
  }

  .hero-content {
    width: 100%;
    gap: 0;
    margin-top: 0;
  }

  h1 {
    font-size: 30px;
    line-height: 1.35;
  }

  .order-grid,
  .amount-grid,
  .flow-steps,
  .footer-grid,
  .refer-actions {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    width: min(100%, 540px);
    padding: 12px;
  }

  .deposit-btn {
    right: 8px;
    min-width: 106px;
    height: 40px;
    font-size: 15px;
    border-radius: 9px;
  }

  .balance-pill {
    left: 8px;
    min-width: 106px;
    height: 40px;
    gap: 7px;
    padding: 0 9px;
    border-radius: 9px;
  }

  .balance-pill span {
    font-size: 15px;
  }

  .balance-pill strong {
    font-size: 15px;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin: 0 0 10px;
  }

  .social-card {
    aspect-ratio: auto;
    min-height: 0;
    height: clamp(76px, 18vw, 108px);
    gap: 5px;
    padding: 6px 4px;
  }

  .social-icon {
    width: clamp(42px, 10vw, 58px);
    height: clamp(42px, 10vw, 58px);
    padding: 8px;
  }

  .instagram .social-icon,
  .tiktok .social-icon,
  .kwai .social-icon {
    padding: 7px;
  }

  .social-card b {
    font-size: 14px;
  }

  .checkout-panel {
    gap: 8px;
    margin-top: 8px;
    padding: 10px;
  }

  .order-grid,
  .amount-grid {
    gap: 8px;
  }

  label span {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .amount-grid label span,
  .checkout-panel label span {
    letter-spacing: 1.4px;
  }

  .select-trigger,
  input {
    height: 42px;
    font-size: 14px;
  }

  .amount-grid input,
  #targetLink {
    height: 44px;
    font-size: 16px;
  }

  .field-help {
    margin-top: -4px;
    font-size: 11px;
  }

  .order-summary {
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .order-summary strong {
    padding: 8px 10px;
  }

  .primary-btn {
    height: 42px;
  }

  .client-area {
    margin-top: 12px;
    padding: 12px;
  }

  .astronaut {
    right: -80px;
    bottom: 40px;
    transform: scale(0.68);
  }

  .planet {
    left: -260px;
    width: 540px;
  }

  .vip-card {
    right: 18px;
    bottom: 96px;
    width: calc(100vw - 36px);
  }

  .whats {
    left: 4px;
  }
}

@media (max-width: 560px) {
  .packages-modal,
  .refer-modal,
  .deposit-modal {
    padding: 24px 14px 18px;
  }

  .deposit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .deposit-grid button {
    min-height: 70px;
    font-size: 24px;
  }

  .bonus-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    text-align: center;
  }

  .bonus-gift {
    width: 78px;
    height: 78px;
    margin: 0 auto;
    font-size: 42px;
  }

  .bonus-banner p {
    font-size: 19px;
  }

  .bonus-banner strong {
    font-size: 26px;
  }

  .bonus-banner strong b {
    font-size: 34px;
  }

  .bonus-banner span {
    font-size: 15px;
  }

  .package-row {
    grid-template-columns: 1fr;
  }

  .package-row em {
    width: 100%;
  }

  .service-table button,
  .order-item {
    grid-template-columns: 1fr;
  }

  .service-table strong,
  .order-summary strong {
    text-align: center;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .social-card {
    height: clamp(70px, 18vw, 92px);
    min-height: 0;
    gap: 5px;
    padding: 6px 4px;
  }

  .social-icon {
    width: clamp(40px, 10vw, 52px);
    height: clamp(40px, 10vw, 52px);
    border-radius: 7px;
    padding: 7px;
  }

  .instagram .social-icon,
  .tiktok .social-icon,
  .kwai .social-icon {
    padding: 6px;
  }

  .social-card b {
    font-size: 13px;
  }

  .indicate {
    left: 0;
    width: 60px;
    height: 60px;
  }

  .indicate span {
    font-size: 9px;
  }
}

@media (max-width: 900px) and (max-height: 720px) {
  .topbar {
    min-height: 56px;
    padding: 6px 8px;
  }

  .brand {
    top: calc(50% + 6px);
    width: 184px;
    height: 48px;
  }

  .brand img {
    width: 182px;
    transform: translateY(-71px);
  }

  .deposit-btn,
  .balance-pill {
    height: 36px;
    border-radius: 8px;
  }

  .deposit-btn {
    min-width: 94px;
    font-size: 13px;
  }

  .balance-pill {
    min-width: 94px;
    padding: 0 7px;
  }

  .balance-pill span,
  .balance-pill strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 12px;
  }

  .dashboard-card {
    padding: 9px;
  }

  .social-grid {
    gap: 5px;
    margin-bottom: 8px;
  }

  .social-card {
    height: clamp(58px, 15vw, 76px);
    gap: 3px;
  }

  .social-icon {
    width: clamp(34px, 8.8vw, 44px);
    height: clamp(34px, 8.8vw, 44px);
    padding: 6px;
  }

  .social-card b {
    font-size: 12px;
  }

  .checkout-panel {
    gap: 6px;
    padding: 8px;
  }

  label span {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .select-trigger,
  input {
    height: 38px;
    font-size: 13px;
  }

  .amount-grid input,
  #targetLink {
    height: 40px;
    font-size: 15px;
  }

  .field-help {
    display: none;
  }

  .order-summary {
    padding: 8px;
  }

  .primary-btn {
    height: 38px;
  }

  .client-area {
    margin-top: 10px;
  }
}

@media (max-width: 900px) and (max-height: 620px) {
  .topbar {
    min-height: 52px;
    padding: 5px 7px;
  }

  .brand {
    top: calc(50% + 5px);
    width: 168px;
    height: 44px;
  }

  .brand img {
    width: 166px;
    transform: translateY(-65px);
  }

  .deposit-btn,
  .balance-pill {
    height: 34px;
    min-width: 88px;
    font-size: 12px;
  }

  .balance-pill {
    gap: 5px;
    padding: 0 6px;
  }

  .balance-pill span,
  .balance-pill strong {
    font-size: 12px;
  }

  .hero {
    padding-top: 58px;
  }

  .dashboard-card {
    padding: 7px;
  }

  .social-grid {
    gap: 4px;
    margin-bottom: 6px;
  }

  .social-card {
    height: 52px;
    gap: 2px;
    padding: 4px 2px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    padding: 4px;
  }

  .instagram .social-icon,
  .tiktok .social-icon,
  .kwai .social-icon {
    padding: 3px;
  }

  .social-card b {
    font-size: 10px;
  }

  .checkout-panel {
    gap: 5px;
    margin-top: 6px;
    padding: 7px;
  }

  .order-grid,
  .amount-grid {
    gap: 6px;
  }

  .amount-grid {
    grid-template-columns: 1fr 1fr;
  }

  label span {
    margin-bottom: 3px;
    font-size: 10px;
    line-height: 1.1;
  }

  .amount-grid label span,
  .checkout-panel label span {
    letter-spacing: 1px;
  }

  .select-trigger,
  input,
  .amount-grid input,
  #targetLink {
    height: 34px;
    font-size: 13px;
  }

  .order-summary {
    padding: 6px;
    font-size: 10px;
  }

  .order-summary strong {
    padding: 6px 7px;
  }

  .primary-btn {
    height: 34px;
    font-size: 12px;
  }
}
