* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --red: #ff1616;
  --red-2: #b00000;
  --red-3: #4b0000;
  --white: #fff;
  --muted: #c9c9c9;
  --black: #030303;
}

html, body {
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,0,0,.34), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(120,0,0,.20), transparent 48%),
    linear-gradient(180deg, #190000 0%, #070202 42%, #000 100%);
  overflow-x: hidden;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255,0,0,.18), transparent 34%),
    #000;
  transition: opacity .65s ease, visibility .65s ease;
}

.loaded #loader {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  text-align: center;
  animation: loaderPop 1.2s ease-in-out infinite alternate;
}

.loader-logo {
  font-size: clamp(36px, 9vw, 72px);
  font-weight: 950;
  letter-spacing: -2px;
  color: #fff;
  text-shadow:
    0 0 16px rgba(255,0,0,.9),
    0 0 48px rgba(255,0,0,.5);
}

.loader-logo span {
  color: var(--red);
}

.loader-bar {
  width: 230px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
}

.loader-bar i {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: loadingMove .9s ease infinite;
}

@keyframes loadingMove {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

@keyframes loaderPop {
  from { transform: scale(.96); filter: brightness(.9); }
  to { transform: scale(1.03); filter: brightness(1.2); }
}

.page {
  min-height: 100vh;
  position: relative;
  padding: 22px 15px 38px;
  isolation: isolate;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 5px,
    rgba(255,255,255,.12) 6px
  );
}

.orb {
  position: fixed;
  border-radius: 999px;
  background: var(--red);
  filter: blur(130px);
  opacity: .2;
  pointer-events: none;
  z-index: -1;
}

.orb-a { width: 290px; height: 290px; left: -105px; top: 40px; }
.orb-b { width: 320px; height: 320px; right: -130px; bottom: 20px; opacity: .16; }
.orb-c { width: 230px; height: 230px; left: 50%; top: 44%; transform: translateX(-50%); opacity: .12; }

.hero {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #ffd1d1;
  font-size: 11px;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,65,65,.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
    rgba(255,0,0,.065);
  box-shadow:
    0 0 26px rgba(255,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,0,0,.12), 0 0 18px rgba(255,0,0,.9);
}

.logo-shell {
  width: min(84vw, 365px);
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.logo-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,.32), transparent 64%);
  filter: blur(18px);
}

.ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,30,30,.22);
  box-shadow:
    0 0 38px rgba(255,0,0,.18),
    inset 0 0 36px rgba(255,0,0,.12);
  animation: ringPulse 3s ease-in-out infinite;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  filter:
    drop-shadow(0 0 24px rgba(255,0,0,.58))
    drop-shadow(0 0 54px rgba(255,0,0,.26));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 24px rgba(255,0,0,.58)) brightness(1); }
  50% { transform: translateY(-5px) scale(1.015); filter: drop-shadow(0 0 34px rgba(255,0,0,.82)) brightness(1.12); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.035); opacity: 1; }
}

h1 {
  font-size: clamp(42px, 12vw, 72px);
  line-height: .9;
  letter-spacing: -2px;
  font-weight: 950;
  margin-bottom: 12px;
  color: #fff;
  text-shadow:
    0 0 14px rgba(255,0,0,.85),
    0 0 40px rgba(255,0,0,.42);
}

h1 span {
  color: var(--red);
}

.subtitle {
  color: #dedede;
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 24px;
  max-width: 390px;
}

.button-stack {
  width: 100%;
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  color: #fff !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 72px;
  width: 100%;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.btn * {
  color: inherit !important;
  text-decoration: none !important;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 62%);
  transform: translateX(-125%);
  transition: transform .75s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.07);
}

.btn:hover::before {
  transform: translateX(125%);
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 33%),
    linear-gradient(135deg, #ff2424 0%, #c40000 48%, #750000 100%);
  box-shadow:
    0 18px 48px rgba(255,0,0,.38),
    0 0 0 1px rgba(255,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -12px 28px rgba(70,0,0,.44);
}

.btn-secondary {
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    rgba(12,12,12,.88);
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 12px 34px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.btn-secondary .icon {
  background: rgba(255,0,0,.12);
  border-color: rgba(255,0,0,.3);
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.22));
}

.btn-text {
  flex: 1;
  text-align: left;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .2px;
}

.btn-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.mini-proof {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.mini-proof div {
  min-height: 74px;
  border-radius: 18px;
  border: 1px solid rgba(255,35,35,.18);
  background:
    radial-gradient(circle at top, rgba(255,0,0,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.016));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
}

.mini-proof strong {
  color: var(--red);
  font-size: 20px;
  text-shadow: 0 0 14px rgba(255,0,0,.62);
}

.mini-proof span {
  margin-top: 5px;
  color: #c4c4c4;
  font-size: 11px;
}

@media (max-width: 440px) {
  .page { padding: 18px 14px 32px; }
  .hero { min-height: 100vh; }
  .logo-shell { width: min(89vw, 340px); margin-bottom: 10px; }
  .badge { font-size: 10px; padding: 8px 13px; }
  .subtitle { font-size: 16px; margin-bottom: 20px; }
  .btn { min-height: 70px; padding: 14px 15px; border-radius: 18px; }
  .icon { width: 39px; height: 39px; flex-basis: 39px; }
  .btn-text { font-size: 15px; }
  .btn-text small { font-size: 11px; }
  .mini-proof { gap: 7px; }
  .mini-proof div { min-height: 68px; border-radius: 16px; }
  .mini-proof strong { font-size: 18px; }
  .mini-proof span { font-size: 10px; }
}


.fake-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 22px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 45, .22);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.016)),
    rgba(255,0,0,.055);
  color: #d6d6d6;
  font-size: 12px;
  box-shadow:
    0 0 22px rgba(255,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.fake-counter strong {
  color: #fff;
  font-size: 13px;
  text-shadow: 0 0 12px rgba(255,0,0,.75);
}

.counter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff1616;
  box-shadow: 0 0 0 4px rgba(255,0,0,.10), 0 0 14px rgba(255,0,0,.85);
  animation: counterBlink 1.4s ease-in-out infinite;
}

.btn-primary {
  animation: buttonPulse 2.6s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 18px 48px rgba(255,0,0,.38),
      0 0 0 1px rgba(255,0,0,.18),
      inset 0 1px 0 rgba(255,255,255,.3),
      inset 0 -12px 28px rgba(70,0,0,.44);
  }
  50% {
    transform: scale(1.018);
    box-shadow:
      0 22px 62px rgba(255,0,0,.55),
      0 0 0 1px rgba(255,0,0,.28),
      inset 0 1px 0 rgba(255,255,255,.35),
      inset 0 -12px 28px rgba(70,0,0,.44);
  }
}

@keyframes counterBlink {
  0%, 100% {
    opacity: .6;
    transform: scale(.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.btn:hover {
  animation-play-state: paused;
}

@media (max-width: 440px) {
  .fake-counter {
    font-size: 11px;
    margin-bottom: 18px;
  }
}
