:root {
  --bg: #0b1020;
  --card: #121a33;
  --text: #e9ecff;
  --muted: #aeb6e6;
  --line: rgba(255, 255, 255, .12);
  --accent: #33d17a;
  --shadow: 0 18px 40px rgba(0, 0, 0, .35);
  --radius: 18px;
  --max: 980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 600px at 15% 10%, rgba(122, 162, 255, .25), transparent 55%),
  radial-gradient(900px 500px at 90% 20%, rgba(51, 209, 122, .22), transparent 60%),
  linear-gradient(180deg, #080b16, var(--bg));
  min-height: 100vh;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 14px 40px;
}

.card {
  background: rgba(18, 26, 51, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.pad {
  padding: 18px;
}

.hero {
  margin-top: 16px;
  display: grid;
  place-items: center;
}

.heroCard {
  width: 100%;
  max-width: 820px;
}

.heroTitle {
  margin: 0;
  text-align: center;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  font-weight: 900;
}

.heroSub {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 520px) {
  .heroTitle {
    font-size: 22px;
  }

  .heroSub {
    font-size: 15px;
  }
}

.quizWrap {
  margin-top: 16px;
  display: grid;
  place-items: center;
}

.quizCard {
  width: 100%;
  max-width: 560px;
}

.q {
  margin: 0 0 16px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
}

.choices {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

.btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  transition: transform .08s ease, filter .15s ease;
  letter-spacing: .2px;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  filter: brightness(1.04)
}

.btn:active {
  transform: translateY(1px) scale(.99)
}

.btn:focus-visible {
  outline: 2px solid rgba(122, 162, 255, .9);
  outline-offset: 3px
}

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(51, 209, 122, 1), rgba(51, 209, 122, .78));
  color: #05120a;
}

.progressRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 16px auto 0;
  max-width: 360px;
}

.progress {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: 0%;
  background: rgba(51, 209, 122, .95);
  transition: width .25s ease;
}

.stepTxt {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 50;
}

.overlay.show {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 520px;
  animation: pop .18s ease-out;
}

@keyframes pop {
  from {
    transform: translateY(8px) scale(.98);
    opacity: 0
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1
  }
}

.modalTitle {
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .6px;
  line-height: 1.25;
}

.profitBox {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 16px;
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.profitValue {
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -.4px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.statusWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}

.spinRow {
  display: flex;
  justify-content: center;
  height: 16px;
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-top-color: rgba(51, 209, 122, .95);
  animation: spin 1s linear infinite;
  display: none;
}

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

.miniCenter {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  min-height: 16px;
}

.ctaAnim {
  margin-top: 14px;
  width: 100%;
  font-size: 15px;
  letter-spacing: .3px;
  position: relative;
  overflow: hidden;
  animation: pulse 1.25s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-1px)
  }
  100% {
    transform: translateY(0)
  }
}

.ctaAnim::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 35%;
  height: 220%;
  background: rgba(255, 255, 255, .25);
  transform: rotate(18deg);
  animation: shine 1.8s linear infinite;
}

@keyframes shine {
  0% {
    left: -40%
  }
  100% {
    left: 120%
  }
}

.post {
  display: none;
  margin-top: 16px;
}

.post.show {
  display: block;
  animation: fadeUp .25s ease-out;
}

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

.creativeCard {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.postTitle {
  margin: 0 0 12px;
  text-align: center;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.video {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-inner {
  width: 100%;
  height: 100%;
}

iframe, video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
  cursor: pointer;
}

.play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgb(0 109 255 / 79%);
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.triangle {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid rgba(233, 236, 255, .92);
  margin-left: 4px;
}

.t1 {
  font-weight: 900;
  font-size: 16px;
}

.t2 {
  font-size: 13px;
  color: rgba(233, 236, 255, .75)
}

.tgRow {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.tgRow .btn {
  width: 100%;
  max-width: 360px;
}

.social {
  margin: 6px 0 0;
  text-align: center;
  color: rgba(233, 236, 255, .95);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.social .bigNum {
  display: block;
  font-size: 30px;
  letter-spacing: .4px;
  margin: 2px 0 6px;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.social .label {
  display: block;
  font-size: 13px;
  letter-spacing: 1.2px;
  opacity: .82;
}