* { box-sizing: border-box; }
html, body { min-height: 100%; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  color:#fff;
  overflow-x:hidden;

  background:
    radial-gradient(circle at 14% 18%, rgba(255, 208, 110, 0.32) 0%, rgba(255, 170, 70, 0.12) 26%, transparent 52%),
    radial-gradient(circle at 86% 78%, rgba(255, 230, 140, 0.16) 0%, rgba(255, 166, 70, 0.06) 22%, transparent 40%),
    linear-gradient(180deg, #1a0e12 0%, #120a14 30%, #0b0714 68%, #070714 100%);
  position:relative;
}

/* треугольники */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;

  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%27140%27%20height%3D%27122%27%20viewBox%3D%270%200%20140%20122%27%3E%3Cpolygon%20points%3D%270%2C122%2070%2C0%20140%2C122%27%20fill%3D%27%23ffffff%27%20fill-opacity%3D%270.018%27/%3E%3Cpolygon%20points%3D%270%2C0%2070%2C122%20140%2C0%27%20fill%3D%27%23ffffff%27%20fill-opacity%3D%270.010%27/%3E%3Cpath%20d%3D%27M0%20122%20L70%200%20L140%20122%20Z%27%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-opacity%3D%270.10%27%20stroke-width%3D%271%27/%3E%3Cpath%20d%3D%27M0%200%20L70%20122%20L140%200%20Z%27%20fill%3D%27none%27%20stroke%3D%27%23ffffff%27%20stroke-opacity%3D%270.06%27%20stroke-width%3D%271%27/%3E%3C/svg%3E");
  background-size: 180px 156px;
  opacity: 0.20;
  z-index:0;
}

/* засветы */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 200, 90, 0.10), transparent 28%),
    radial-gradient(circle at 74% 78%, rgba(255, 210, 110, 0.08), transparent 30%);
  z-index:0;
}

.page{
  min-height:100vh;
  padding: 12px 14px 44px;
  position:relative;
  z-index:2;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  position:relative;
  z-index:3;
}

/* ====== ОСНОВНАЯ КАРТОЧКА ====== */
.mega-card{
  position:relative;
  width: min(720px, 100%);

  /* На больших экранах (ПК) — текущий отступ */
  margin: calc(clamp(18px, 6vh, 80px) + 3vh) auto 0;

  background: rgba(12, 13, 30, 0.96);
  border: 1px solid rgba(216, 163, 56, 0.62);
  border-radius: 42px;
  padding: 20px 24px 24px;

  box-shadow:
    0 0 0 1px rgba(255, 200, 90, 0.02) inset,
    0 10px 24px rgba(0, 0, 0, 0.22);
  overflow:hidden;
}

/* Мобильная версия — поднимаем блок значительно выше */
@media (max-width: 768px) {
  .mega-card{
    margin: 40px auto 0;     /* сильно уменьшили отступ сверху */
  }
}

/* ===== EXTRA COMPACT MOBILE (-15%) ===== */
@media (max-width: 480px){

  .page{
    padding: 7px 9px 17px !important;
  }

  .mega-card{
    width: 100% !important;
    margin: calc(6px + env(safe-area-inset-top, 0px)) auto 0 !important;
    padding: 9px 9px 10px !important;
    border-radius: 24px !important;
  }

  .content-frame{
    margin: 3px 0 9px !important;
    padding: 7px 7px 9px !important;
    border-radius: 17px !important;
  }
  .content-frame::before{
    inset: 5px !important;
    border-radius: 14px !important;
  }

  .hero{
    padding: 5px 5px 7px !important;
  }

  .hero-icons{
    min-height: 44px !important;
    margin-bottom: 5px !important;
    gap: 7px !important;
  }

  /* 🎰✨ ещё меньше */
  .slot{ font-size: 36px !important; }
  .sparkles{ font-size: 31px !important; }

  .animated-subtitle{
    font-size: 14px !important;
    letter-spacing: .35px !important;
  }

  .animated-title{
    margin: 8px 0 8px !important;
  }
  .animated-title span{
    font-size: 29px !important;
    line-height: .95 !important;
  }

  .badge{
    padding: 5px 9px !important;
    font-size: 10px !important;
  }

  .inner-block{
    margin-top: 9px !important;
    padding: 10px !important;
    border-radius: 15px !important;
  }

  .warning.inner-block{
    font-size: 11.5px !important;
    line-height: 1.34 !important;
  }

  /* 🔒⚠️ меньше */
  .warning-row{ gap: 9px !important; }
  .warning-icons{ gap: 5px !important; padding-top: 0 !important; }
  .w-icon{
    width: 27px !important;
    height: 27px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
  }

  .steps h3{
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .step{ gap: 8px !important; margin-bottom: 8px !important; }
  .num{ width: 26px !important; height: 26px !important; font-size: 12px !important; }
  .text{ font-size: 12px !important; }

  .note{
    margin-top: 7px !important;
    padding: 8px !important;
    font-size: 11px !important;
    border-radius: 12px !important;
  }

  .cta-zone{
    margin-top: 8px !important;
    padding: 3px !important;
  }
  .cta-button{
    padding: 10px 12px !important;
    font-size: 15px !important;
  }

  .under-cta{ margin-top: 6px !important; gap: 4px !important; }
  .info-pill{ padding: 4px 8px !important; }
  .info-pill-main{ font-size: 9px !important; }
  .info-pill-second{ font-size: 8px !important; }

  .footer-small{ margin-top: 9px !important; }
}

/* ====== ВНУТРЕННЯЯ РАМКА ====== */
.content-frame{
  position: relative;
  margin: 6px 2px 14px;
  padding: 14px 14px 16px;

  border-radius: 34px;
  border: 1px solid rgba(216, 163, 56, 0.38);

  background:
    radial-gradient(120% 90% at 50% 0%,
      rgba(255, 210, 120, 0.10) 0%,
      rgba(255, 210, 120, 0.04) 32%,
      transparent 62%),
    rgba(8, 9, 18, 0.55);

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.35),
    0 10px 26px rgba(0,0,0,0.22);
}

.content-frame::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 225, 150, 0.10);
  pointer-events:none;
}

.content-frame .inner-block{ margin-top: 14px; }
.content-frame .hero{ padding-top: 6px; }

/* ====== HERO ====== */
.hero{
  text-align:center;
  padding: 10px 10px 14px;
  position:relative;
}

.hero-icons{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom: 18px;
  min-height: 92px;
}

/* ЭМОДЗИ “ЖИРНЕЕ” + 2x размер */
.slot, .sparkles{
  display:inline-block;
  position: relative;
  isolation: isolate;
  transform-origin:center;
  will-change: transform, filter;
}

.slot::after,
.sparkles::after{
  content: attr(data-emoji);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.94;
  transform: translate(0.45px, 0.45px);
  filter: blur(0.95px) saturate(1.25);
}

.slot{
  font-size: clamp(56px, 9vw, 76px);
  animation: slotFloat 2.8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px rgba(255,205,90,0.22))
    drop-shadow(0 0 22px rgba(255,205,90,0.14));
}
.sparkles{
  font-size: clamp(50px, 8vw, 68px);
  animation: sparklePulse 2s ease-in-out infinite;
  filter:
    drop-shadow(0 0 10px rgba(255,210,90,0.32))
    drop-shadow(0 0 20px rgba(255,210,90,0.16));
}

@keyframes slotFloat{
  0%,100%{ transform: translateY(0) rotate(-2deg) scale(1); }
  50%{ transform: translateY(-5px) rotate(2deg) scale(1.04); }
}
@keyframes sparklePulse{
  0%,100%{ transform: translateY(0) scale(1) rotate(0deg); }
  50%{ transform: translateY(-4px) scale(1.15) rotate(8deg); }
}

/* искры вокруг */
.icon-spark{
  position:absolute;
  color:#ffd76a;
  font-size:13px;
  opacity:0;
  text-shadow: 0 0 8px rgba(255,210,90,.7), 0 0 16px rgba(255,210,90,.3);
  animation: iconSpark 2.6s ease-in-out infinite;
}
.spark-1{ top:10px; left:47%; animation-delay:0s; }
.spark-2{ top:28px; left:60%; animation-delay:.7s; }
.spark-3{ top:2px; left:55%; animation-delay:1.4s; }

@keyframes iconSpark{
  0%{ opacity:0; transform: translateY(4px) scale(.6); }
  30%{ opacity:1; transform: translateY(-4px) scale(1); }
  100%{ opacity:0; transform: translateY(-16px) scale(.8); }
}

/* ====== ТЕКСТ ====== */
.animated-subtitle{
  margin:0;
  font-size: 26px;
  color:#aef6ff;
  font-weight: 900;
  letter-spacing: .6px;
  animation: subtitleGlow 2.8s ease-in-out infinite;
}

.animated-title{
  margin: 14px 0 16px;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.animated-title span{
  display:block;
  font-size: 56px;
  line-height: .94;
  color:#ffbf52;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255,179,65,.10), 0 0 40px rgba(255,179,65,.05);
  animation: titlePulse 2.6s ease-in-out infinite;
}
.animated-title span:last-child{ animation-delay:.35s; }

@keyframes subtitleGlow{
  0%,100%{ transform: translateY(0); text-shadow: 0 0 0 rgba(174,246,255,0); }
  50%{
    transform: translateY(-2px);
    text-shadow:
      0 0 14px rgba(174,246,255,.22),
      0 0 26px rgba(255,210,90,.10);
  }
}
@keyframes titlePulse{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.018); }
}

.badge{
  display:inline-block;
  background: #0f1b0f;
  color:#d4ff91;
  border: 1px solid #235f2f;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
}

/* ====== ВНУТРЕННИЕ БЛОКИ ====== */
.inner-block{
  border-radius: 32px;
  padding: 18px;
  margin-top: 16px;
}

/* Warning — красный */
.warning.inner-block{
  background: rgba(96, 37, 39, 0.92);
  border: 1px solid rgba(214, 106, 64, 0.75);
  color: #ffd3c7;
  font-size: 16px;
  line-height: 1.48;
}
.warning strong{ color:#ffb36d; }
.warning p{ margin:0; }

/* === ВАЖНО: оформление “как у него” === */
.warning-row{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.warning-icons{
  display:flex;
  gap: 8px;
  padding-top: 2px; /* чтобы совпало по линии с первой строкой */
  flex-shrink:0;
}

.w-icon{
  width: 56px;          /* было 28px */
  height: 56px;         /* было 28px */
  display:grid;
  place-items:center;

  border-radius: 16px;  /* чуть больше под новый размер */
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255, 200, 170, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 10px 18px rgba(0,0,0,0.18);

  font-size: 36px;      /* было 18px */
  line-height: 1;
  transform-origin: 50% 60%;
  filter: drop-shadow(0 0 8px rgba(255, 160, 110, 0.15));
}

/* анимации иконок */
.w-lock{
  animation: lockBob 1.9s ease-in-out infinite;
}
.w-alert{
  animation: alertWiggle 1.25s ease-in-out infinite;
  filter:
    drop-shadow(0 0 8px rgba(255, 160, 110, 0.18))
    drop-shadow(0 0 14px rgba(255, 210, 120, 0.10));
}

@keyframes lockBob{
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-2px) scale(1.03); }
}

@keyframes alertWiggle{
  0%   { transform: rotate(0deg) scale(1); }
  18%  { transform: rotate(-10deg) scale(1.05); }
  36%  { transform: rotate(10deg)  scale(1.06); }
  54%  { transform: rotate(-6deg)  scale(1.03); }
  72%  { transform: rotate(6deg)   scale(1.03); }
  100% { transform: rotate(0deg)   scale(1); }
}

/* Steps — тёмный с золотой рамкой */
.steps.inner-block{
  background: rgba(7, 8, 19, 0.98);
  border: 1px solid rgba(216, 163, 56, 0.34);
}
.steps h3{
  margin:0 0 18px;
  font-size: 20px;
  color:#ffd357;
}

/* Шаги */
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom: 16px;
}
.step-center{ align-items: center; }
.step-center .text{ transform: translateY(1px); }

.num{
  width:40px;
  height:40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb347 0%, #ff982a 100%);
  color:#1a1a1a;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.text{
  font-size: 15px;
  line-height: 1.4;
  color:#e6e6f2;
}
.text strong{ color:#ffcb4f; }
.text span{ color:#c9c9dc; }

.note{
  margin-top: 10px;
  background: rgba(9, 10, 22, 0.95);
  border-radius: 22px;
  padding: 14px;
  color:#cfcfff;
  text-align:center;
  font-size: 13px;
}

/* ====== CTA ====== */
.cta-zone{
  margin-top: 18px;
  padding: 6px 6px 10px;
}

.cta-button{
  position:relative;
  display:block;
  width: 100%;
  overflow:hidden;
  text-align:center;
  text-decoration:none;
  color:#1b1309;
  background: linear-gradient(90deg, #ffc95b 0%, #ff9b35 45%, #ff7a24 100%);
  padding: 18px 16px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255,128,45,.24), 0 0 26px rgba(255,180,70,.10);
  letter-spacing: .4px;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255,128,45,.28), 0 0 30px rgba(255,180,70,.12);
}
.cta-button:active{
  transform: translateY(2px) scale(.985);
  box-shadow: 0 6px 14px rgba(255,128,45,.20), 0 0 16px rgba(255,180,70,.08);
  filter: brightness(.98);
}

.cta-button::before{
  content:"";
  position:absolute;
  top:-20%;
  left:-30%;
  width:30%;
  height:140%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.14) 45%,
    rgba(255,255,255,0.32) 50%,
    rgba(255,255,255,0.12) 55%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: buttonShine 3.8s ease-in-out infinite;
}
@keyframes buttonShine{
  0%{ left:-35%; }
  55%{ left:-35%; }
  100%{ left:130%; }
}

.cta-text{
  position:relative;
  z-index:2;
  display:inline-block;
}
.cta-animated-text{
  animation: ctaTextPulse 2.2s ease-in-out infinite;
}
@keyframes ctaTextPulse{
  0%,100%{ transform: scale(1); letter-spacing:.35px; }
  50%{ transform: scale(1.03); letter-spacing:.75px; }
}

/* pills */
.under-cta{
  margin-top: 10px;
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:center;
}

.info-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: fit-content;
  max-width:100%;
  padding: 6px 12px;
  border-radius:999px;
  white-space:nowrap;
  line-height:1.15;
  background: #0b0d1a;
}

.info-pill-main{
  color:#d7d9f0;
  font-size: 11px;
  border: 1px solid rgba(255, 188, 85, 0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 10px rgba(255,188,85,0.03);
}

.info-pill-second{
  color:#b0b6cf;
  font-size: 10px;
  border: 1px solid rgba(255, 188, 85, 0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.015) inset, 0 0 8px rgba(255,188,85,0.02);
}

.footer-small{
  margin: 14px auto 0;
  width: min(720px, 100%);
  text-align:center;
  color:#858cab;
  font-size:10px;
  line-height:1.35;
}

/* ====== RIPPLE ====== */
.ripple-button{ isolation:isolate; }
.ripple{
  position:absolute;
  border-radius:50%;
  transform: scale(0);
  background: rgba(255,255,255,0.35);
  animation: rippleEffect .7s ease-out forwards;
  pointer-events:none;
  z-index:1;
}
@keyframes rippleEffect{
  to{ transform: scale(4); opacity:0; }
}

/* ====== ЧАСТИЦЫ + ДОЖДЬ ====== */
.particles{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}

.particles::before{
  content:"";
  position:absolute;
  inset:-40% -40%;
  pointer-events:none;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(220,235,255,.22) 0 1px,
      transparent 1px 14px
    );
  opacity: .18;
  filter: blur(.2px);
  transform: translate3d(0,0,0);
  animation: rainMove .55s linear infinite;
}
@keyframes rainMove{
  from { background-position: 0 0; }
  to   { background-position: 0 240px; }
}

.particle{
  position:absolute;
  bottom:-40px;
  opacity:.78;
  animation: rise linear infinite;
  z-index: 1;
}

.dot{
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,223,110,1) 0%, rgba(232,171,43,0.95) 45%, rgba(255,223,110,0) 100%);
  box-shadow: 0 0 8px rgba(255,205,90,.55), 0 0 20px rgba(255,185,60,.12);
}

.star-p{
  color:#ffd76a;
  font-size:14px;
  text-shadow: 0 0 8px rgba(255,210,90,.65), 0 0 16px rgba(255,210,90,.25);
}

.p1  { left: 8%;  width: 8px;  height: 8px;  animation-duration: 8s;  animation-delay: 0s; }
.p2  { left: 14%; width: 5px;  height: 5px;  animation-duration: 10s; animation-delay: 1s; }
.p3  { left: 22%; animation-duration: 9s;  animation-delay: 2s; }
.p4  { left: 30%; width: 6px;  height: 6px;  animation-duration: 11s; animation-delay: .5s; }
.p5  { left: 42%; animation-duration: 8.5s; animation-delay: 2.5s; }
.p6  { left: 55%; width: 7px;  height: 7px;  animation-duration: 9.5s; animation-delay: 1.5s; }
.p7  { left: 63%; width: 6px;  height: 6px;  animation-duration: 11.5s; animation-delay: 3s; }
.p8  { left: 72%; animation-duration: 10.5s; animation-delay: 1s; }
.p9  { left: 80%; width: 5px;  height: 5px;  animation-duration: 9s;  animation-delay: 3.5s; }
.p10 { left: 88%; width: 8px;  height: 8px;  animation-duration: 12s; animation-delay: .5s; }
.p11 { left: 93%; animation-duration: 10s; animation-delay: 2s; }
.p12 { left: 48%; width: 11px; height: 11px; animation-duration: 13s; animation-delay: 4s; }

@keyframes rise{
  0%{ transform: translateY(0) translateX(0); opacity:0; }
  12%{ opacity:.78; }
  55%{ transform: translateY(-55vh) translateX(18px); opacity:.85; }
  100%{ transform: translateY(-115vh) translateX(-10px); opacity:0; }
}

@media (max-width: 480px){
  .page{ padding-top: 10px; }
  .mega-card{ width: 100%; padding: 18px 16px 20px; }
  .animated-subtitle{ font-size:24px; }
  .animated-title span{ font-size:48px; }
  .text{ font-size:14px; }
  .info-pill{ white-space:normal; max-width:100%; text-align:center; }
}
@media (max-width: 768px){
  .mega-card{ margin: 32px auto 0 !important; }
}
@media (max-width: 480px){
  .mega-card{ margin: 18px auto 0 !important; }
}

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}/* ====== COMPACT MOBILE (чтобы не нужно было сильно скроллить) ====== */
@media (max-width: 480px){

  .page{
    padding: 10px 12px 24px;
  }

  .mega-card{
    margin: calc(12px + env(safe-area-inset-top, 0px)) auto 0 !important;
    padding: 14px 12px 16px;
    border-radius: 34px;
  }

  .content-frame{
    padding: 10px 10px 12px;
    border-radius: 26px;
  }
  .content-frame::before{
    inset: 8px;
    border-radius: 20px;
  }

  .hero-icons{
    min-height: 66px;
    margin-bottom: 10px;
    gap: 10px;
  }

  /* 🎰✨ меньше на телефоне (иначе “съедают” экран) */
  .slot{ font-size: 54px; }
  .sparkles{ font-size: 48px; }

  .animated-subtitle{ font-size: 20px; }
  .animated-title span{ font-size: 44px; }

  .badge{
    padding: 8px 12px;
    font-size: 12px;
  }

  .inner-block{
    padding: 14px;
    border-radius: 24px;
  }

  .warning.inner-block{
    font-size: 14px;
    line-height: 1.42;
  }

  /* 🔒⚠️ уменьшаем только на телефоне, чтобы warning не был огромным */
  .warning-icons{ gap: 6px; padding-top: 1px; }
  .w-icon{
    width: 42px;
    height: 42px;
    font-size: 26px;
    border-radius: 14px;
  }

  .steps h3{ font-size: 16px; margin-bottom: 14px; }
  .num{ width: 34px; height: 34px; }
  .text{ font-size: 13px; }

  .note{ padding: 12px; border-radius: 18px; }

  .cta-zone{ margin-top: 14px; }
  .cta-button{
    padding: 14px 14px;
    font-size: 18px;
  }
}

/* ====== COMPACT DESKTOP FOR SHORT HEIGHT (ноуты/маленькая высота окна) ====== */
@media (max-height: 820px) and (min-width: 769px){
  .mega-card{
    margin: 18px auto 0 !important;
  }

  .hero-icons{ min-height: 78px; margin-bottom: 12px; }
  .slot{ font-size: 66px; }
  .sparkles{ font-size: 60px; }

  .animated-title span{ font-size: 48px; }
  .inner-block{ padding: 16px; }

  .cta-button{ padding: 16px 16px; }
}@media (max-height: 950px) and (min-width: 769px){
  .mega-card{ margin: 14px auto 0 !important; }
  .hero-icons{ min-height: 78px; margin-bottom: 10px; }
  .animated-title span{ font-size: 50px; }
}/* =========================
   UNIVERSAL COMPACT (PC + MOBILE)
   ВСТАВИТЬ В САМЫЙ КОНЕЦ style.css
   ========================= */

.mega-card{
  width: min(640px, 100%) !important;
  margin: clamp(12px, 3.5vh, 34px) auto 0 !important;
  padding: 16px 16px 18px !important;
  border-radius: 36px !important;
}

.content-frame{
  padding: 12px 12px 14px !important;
  border-radius: 26px !important;
}
.content-frame::before{
  inset: 8px !important;
  border-radius: 20px !important;
}

.hero-icons{
  min-height: 72px !important;
  margin-bottom: 10px !important;
  gap: 10px !important;
}

/* 🎰✨ меньше на всех (иначе жрут высоту) */
.slot{ font-size: clamp(46px, 6.2vw, 62px) !important; }
.sparkles{ font-size: clamp(42px, 5.7vw, 56px) !important; }

.animated-subtitle{ font-size: 20px !important; }
.animated-title span{ font-size: clamp(40px, 5.4vw, 50px) !important; }

.badge{
  padding: 8px 12px !important;
  font-size: 12px !important;
}

.inner-block{
  padding: 14px !important;
  border-radius: 22px !important;
}

.warning.inner-block{
  font-size: 14px !important;
  line-height: 1.38 !important;
}

/* 🔒⚠️ умеренно меньше на всех */
.w-icon{
  width: 44px !important;
  height: 44px !important;
  font-size: 28px !important;
  border-radius: 14px !important;
}

.steps h3{
  font-size: 16px !important;
  margin-bottom: 12px !important;
}

.step{ margin-bottom: 12px !important; }
.num{ width: 34px !important; height: 34px !important; }
.text{ font-size: 13px !important; }

.note{
  padding: 12px !important;
  border-radius: 16px !important;
}

/* кнопка ниже — компактнее */
.cta-zone{ margin-top: 12px !important; }
.cta-button{
  padding: 14px 14px !important;
  font-size: 18px !important;
}

/* плашки — чуть компактнее */
.under-cta{ margin-top: 8px !important; gap: 6px !important; }
.info-pill-main{ font-size: 10px !important; }
.info-pill-second{ font-size: 9px !important; }

/* ЕЩЁ КОМПАКТНЕЕ на телефоне */
@media (max-width: 480px){
  .mega-card{
    margin: calc(10px + env(safe-area-inset-top, 0px)) auto 0 !important;
    padding: 12px 10px 14px !important;
    border-radius: 32px !important;
  }

  .hero-icons{
    min-height: 60px !important;
    margin-bottom: 8px !important;
  }

  .slot{ font-size: 46px !important; }
  .sparkles{ font-size: 40px !important; }

  .animated-subtitle{ font-size: 18px !important; }
  .animated-title span{ font-size: 38px !important; }

  .w-icon{
    width: 38px !important;
    height: 38px !important;
    font-size: 24px !important;
  }

  .cta-button{
    padding: 13px 14px !important;
    font-size: 17px !important;
  }
}

/* для ноутов/небольшой высоты — чтобы меньше скроллить */
@media (max-height: 860px) and (min-width: 481px){
  .mega-card{ margin: 12px auto 0 !important; }
  .animated-title span{ font-size: 46px !important; }
}