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

:root{
  --red: #ff1616;
  --red2: #b00000;
  --dark: #040404;
  --muted: #bfbfbf;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 50% -8%, rgba(255,0,0,.32), transparent 32%),
    radial-gradient(circle at 50% 38%, rgba(120,0,0,.16), transparent 44%),
    linear-gradient(180deg, #160000 0%, #070202 36%, #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 .55s ease, visibility .55s ease;
}

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

.loader-logo {
  font-size: clamp(34px, 8vw, 68px);
  font-weight: 950;
  letter-spacing: -2px;
  text-shadow: 0 0 22px rgba(255,0,0,.9);
}

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

.loader-bar {
  width: 220px;
  height: 4px;
  margin-top: 18px;
  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: loadMove .9s ease infinite;
}

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

.page {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 14px 104px;
}

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

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

.orb-a {
  width: 300px;
  height: 300px;
  top: 20px;
  left: -130px;
}

.orb-b {
  width: 320px;
  height: 320px;
  right: -150px;
  bottom: 60px;
  opacity: .14;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,45,45,.22);
  border-radius: 18px;
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}

.mini-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(255,0,0,.55));
}

.topbar strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.5px;
}

.topbar strong span {
  color: var(--red);
}

.topbar small {
  display: block;
  color: #bdbdbd;
  font-size: 11px;
  margin-top: 4px;
}

.hero {
  text-align: center;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,65,65,.34);
  background: rgba(255,0,0,.065);
  color: #ffd1d1;
  font-size: 11px;
  letter-spacing: 1.5px;
  box-shadow: 0 0 26px rgba(255,0,0,.16);
}

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

.hero h1 {
  font-size: clamp(38px, 11vw, 62px);
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(255,0,0,.65);
}

.hero p {
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.45;
  max-width: 400px;
  margin: 0 auto 15px;
}

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

.fake-counter strong {
  color: #fff;
  font-size: 13px;
}

.preview-feed {
  display: grid;
  gap: 18px;
}

.preview-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,35,35,.24);
  background:
    radial-gradient(circle at top, rgba(255,0,0,.13), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(8,8,8,.74);
  box-shadow:
    0 24px 70px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 13;
  max-height: 640px;
  background: #030303;
  overflow: hidden;
}

.video-box video,
.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Poster/logo when video is missing */
.video-box video {
  background: radial-gradient(circle, rgba(255,0,0,.18), #000 58%);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  backdrop-filter: blur(10px);
}

.blur-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(12px);
}

.blur-cover strong {
  display: block;
  font-size: 19px;
  margin-bottom: 7px;
  text-shadow: 0 0 18px rgba(255,0,0,.75);
}

.blur-cover span {
  color: #dedede;
  font-size: 13px;
}

.card-content {
  padding: 18px;
}

.card-content h2 {
  font-size: 22px;
  margin-bottom: 7px;
}

.card-content p {
  color: #cfcfcf;
  line-height: 1.45;
  font-size: 14px;
  margin-bottom: 15px;
}

.buy-btn,
.telegram-btn,
.sticky-buy a {
  color: #fff !important;
  text-decoration: none !important;
}

.buy-btn {
  min-height: 54px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(135deg, #ff2424, #b80000 48%, #720000);
  border: 1px solid rgba(255,255,255,.13);
  font-weight: 950;
  letter-spacing: .4px;
  box-shadow:
    0 16px 38px rgba(255,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 22px 52px rgba(255,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.pulse {
  animation: pulseBtn 2.5s ease-in-out infinite;
}

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

.telegram-box {
  margin-top: 20px;
  padding: 26px 18px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255,35,35,.22);
  background:
    radial-gradient(circle at top, rgba(255,0,0,.14), transparent 60%),
    rgba(10,10,10,.74);
  box-shadow: 0 22px 64px rgba(0,0,0,.28);
}

.telegram-box h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.telegram-box p {
  color: #cfcfcf;
  line-height: 1.45;
  margin-bottom: 16px;
}

.telegram-btn {
  min-height: 52px;
  padding: 15px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-weight: 900;
  width: 100%;
}

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  width: min(92vw, 520px);
  transform: translateX(-50%);
  padding: 8px;
  border-radius: 20px;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,35,35,.20);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,.38);
}

.sticky-buy a {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #ff2424, #a30000);
  color: #fff;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: .2px;
  box-shadow: 0 0 28px rgba(255,0,0,.32);
}

@media (max-width: 440px) {
  .page {
    padding: 14px 12px 98px;
  }

  .topbar {
    top: 8px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .video-box {
    aspect-ratio: 9 / 14;
  }

  .card-content {
    padding: 16px;
  }
}

.blur-cover small{
display:block;
margin-top:6px;
font-size:12px;
color:#bbb;
}


body.modal-open {
  overflow: hidden;
}

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.plan-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(94vw, 430px);
  border-radius: 26px;
  padding: 22px 16px 16px;
  border: 1px solid rgba(255, 35, 35, .28);
  background:
    radial-gradient(circle at top, rgba(255,0,0,.20), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    rgba(8,8,8,.94);
  box-shadow:
    0 28px 90px rgba(0,0,0,.62),
    0 0 54px rgba(255,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
  transform: translateY(14px) scale(.97);
  transition: transform .22s ease;
}

.plan-modal.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-badge {
  width: max-content;
  margin: 0 auto 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,45,45,.30);
  background: rgba(255,0,0,.08);
  color: #ffd1d1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  box-shadow: 0 0 20px rgba(255,0,0,.16);
}

.modal-card h2 {
  text-align: center;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 18px rgba(255,0,0,.62);
}

.modal-subtitle {
  text-align: center;
  color: #cfcfcf;
  font-size: 13px;
  margin-bottom: 15px;
}

.plans-list {
  display: grid;
  gap: 11px;
}

.plan-option {
  position: relative;
  color: #fff !important;
  text-decoration: none !important;
  min-height: 76px;
  padding: 14px 13px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.plan-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255,45,45,.38);
  box-shadow:
    0 16px 38px rgba(255,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.plan-option strong {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.plan-option span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.plan-option b {
  white-space: nowrap;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 14px rgba(255,0,0,.65);
}

.plan-option.popular {
  border-color: rgba(255, 22, 22, .42);
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    linear-gradient(135deg, rgba(255,22,22,.26), rgba(70,0,0,.30));
  box-shadow:
    0 0 36px rgba(255,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.plan-option i {
  position: absolute;
  right: 12px;
  top: -9px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2424, #9b0000);
  color: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .6px;
  box-shadow: 0 0 18px rgba(255,0,0,.35);
}

.modal-note {
  text-align: center;
  margin-top: 13px;
  color: #aaa;
  font-size: 12px;
}

@media (max-width: 420px) {
  .modal-card {
    border-radius: 24px;
    padding: 22px 13px 14px;
  }

  .modal-card h2 {
    font-size: 19px;
  }

  .plan-option {
    min-height: 72px;
    padding: 13px 11px;
  }

  .plan-option strong {
    font-size: 15px;
  }

  .plan-option b {
    font-size: 17px;
  }
}
