:root {
  --t-headline-font: 'Montserrat Alternates', Arial, sans-serif;
  --t-text-font: 'Montserrat Alternates', Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--t-text-font);
}

/* ============ Block 1: hero (light) ============ */
.hero {
  background: #ffffff;
  color: #000;
  padding: 40px 0;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 444px;
}
.hero__title {
  font-family: 'Arial', sans-serif;
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 24px;
}
.hero__title a { color: #000; text-decoration: none; }
.hero__lead {
  font-family: 'Arial', sans-serif;
  font-size: clamp(20px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #333;
  margin: 0 0 24px;
  max-width: 560px;
}
.hero__descr {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  line-height: 1.55;
  color: #333;
  opacity: 0.85;
  margin: 0;
  max-width: 422px;
}
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo {
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
}
.hero__support {
  position: absolute;
  left: 0;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hero__support-label {
  font-size: 12px;
  color: #333;
  transform: rotate(-15deg);
  transform-origin: left center;
}
.hero__arrow {
  width: 48px;
  height: 69px;
  opacity: 0.4;
}
.qr-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
  background: #fff;
}

/* ============ Block 2: live stream (dark) — original design ============ */
.ls-stream,
.ls-stream * { box-sizing: border-box; }

.ls-stream {
  font-family: var(--t-text-font);
  position: relative;
  background: #0a0000;
  color: #e8e8ef;
  padding: 100px 0;
  overflow: hidden;
}
.ls-stream::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 0% 0% at 0% 0%, rgba(0, 0, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 0% 0% at 0% 0%, rgba(0, 0, 0, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.ls-stream::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
  pointer-events: none;
}
.ls-stream__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ls-stream__content { position: relative; z-index: 2; }
.ls-stream__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.3);
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff8562;
}
.ls-stream__dot {
  width: 8px;
  height: 8px;
  background: #ff2d55;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff2d55;
  animation: ls-pulse 1.6s ease-in-out infinite;
}
@keyframes ls-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.ls-stream__title {
  font-family: var(--t-headline-font);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: #ffffff;
}
.ls-stream__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #FF9B7E;
}
.ls-stream__descr {
  font-family: var(--t-text-font);
  font-size: 17px;
  line-height: 1.6;
  color: #FF9B7E;
  margin: 0 0 40px;
  max-width: 460px;
}
.ls-stream__meta {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ls-stream__meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--t-text-font);
  font-size: 14px;
  color: #FF9B7E;
}
.ls-stream__meta-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1) opacity(0.7);
}
.ls-stream__meta-item strong {
  display: block;
  font-family: var(--t-headline-font);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}
.ls-stream__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: #FF9B7E;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--t-headline-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.ls-stream__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.ls-stream__cta:hover { background: #ff4470; transform: translateY(-2px); }
.ls-stream__cta:hover::before { transform: translateX(100%); }
.ls-stream__cta-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.ls-stream__visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  background: #000;
}
.ls-stream__img,
.ls-stream__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}
.ls-stream__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 16, 0.85) 100%);
  pointer-events: none;
}
.ls-stream__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: 0;
}
.ls-stream__play::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: ls-ping 2s ease-out infinite;
}
@keyframes ls-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.ls-stream__play:hover { transform: translate(-50%, -50%) scale(1.08); background: #ffffff; }
.ls-stream__play-icon { width: 28px; height: 28px; fill: #0a0a10; margin-left: 4px; }
.ls-stream__play.is-hidden { display: none; }

.ls-stream__viewers {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 10, 16, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--t-text-font);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ls-stream__viewers img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.ls-stream__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--t-text-font);
  font-size: 13px;
  color: #c8c8d4;
}
.ls-stream__caption strong {
  display: block;
  font-family: var(--t-headline-font);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

@media (max-width: 960px) {
  .ls-stream { padding: 70px 0; }
  .ls-stream__inner { grid-template-columns: 1fr; gap: 40px; }
  .ls-stream__visual { aspect-ratio: 16/10; order: -1; }
  .ls-stream__title { font-size: clamp(32px, 6vw, 48px); }
  .hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ls-stream { padding: 50px 0; }
  .ls-stream__inner { gap: 32px; }
  .ls-stream__descr { font-size: 15px; margin-bottom: 32px; }
  .ls-stream__meta { gap: 20px; margin-bottom: 32px; }
  .ls-stream__cta { padding: 18px 28px; font-size: 14px; width: 100%; justify-content: center; }
  .ls-stream__play { width: 70px; height: 70px; }
  .ls-stream__play-icon { width: 22px; height: 22px; }
  .ls-stream__badge { font-size: 10px; padding: 6px 14px; }
}
@media (max-width: 480px) {
  .ls-stream { padding: 40px 0; }
  .ls-stream__inner { padding: 0 16px; }
  .ls-stream__meta-item { font-size: 13px; }
}

/* ============ Block 3: channel CTA (black) ============ */
.channel {
  background: #000;
  color: #fff;
  padding: 40px 0;
}
.channel__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 268px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.channel__logo {
  width: 268px;
  max-width: 40vw;
  height: auto;
  flex-shrink: 0;
}
.channel__text {
  font-family: var(--t-text-font);
  font-size: clamp(20px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 640px) {
  .channel__inner { flex-direction: column; text-align: center; min-height: 0; }
  .channel__logo { width: 120px; max-width: 40vw; }
}
