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

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000a2f;
  font-family: "Bounded", system-ui, -apple-system, sans-serif;
}

/* Композиция масштабируется пропорционально ширине экрана */
.composition {
  position: relative;
  width: min(682px, 92vw);
  aspect-ratio: 682 / 399;
  container-type: inline-size;
  z-index: 1;
}

/* Мягкое зелёное свечение, всегда прижатое к низу экрана */
.glow {
  position: fixed;
  left: 50%;
  bottom: -220px;
  transform: translateX(-50%);
  width: min(1200px, 120vw);
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(75, 251, 117, 0.45), rgba(0, 10, 47, 0) 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Лучи + логотип + надпись «Пыхник'26» */
.art {
  display: block;
  width: 100%;
  height: 100%;
}

/* Кнопка-пилюля «Ничего не пропустить» (позиция и размеры — в долях композиции) */
.cta {
  position: absolute;
  left: 33.58%;
  top: 71.18%;
  height: 11.03%;
  display: flex;
  align-items: center;
  gap: 1.76cqi;
  padding: 0 3.4cqi 0 2.64cqi;
  background: #4bfb75;
  border-radius: 999px;
  text-decoration: none;
}

.cta__icon {
  width: 2.64cqi;
  height: 2.64cqi;
  flex: none;
}

.cta span {
  font-size: 2.35cqi;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #000a2f;
}
