.live-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(196, 162, 110, 0.2), transparent 24%),
    linear-gradient(180deg, #f5f0e7 0%, #ece6db 56%, #e4dbce 100%);
  color: var(--text-dark);
}

.live-main {
  padding: 170px 0 96px;
}

.live-hero {
  margin-bottom: 34px;
}

.live-hero__grid {
  display: block;
}

.live-hero__content,
.live-camera,
.live-note__card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(196, 162, 110, 0.14), transparent 38%),
    rgba(43, 38, 35, 0.94);
  box-shadow: 0 28px 64px rgba(86, 64, 36, 0.12);
}

.live-hero__content {
  padding: 40px;
  width: 100%;
  max-width: none;
}

.live-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-light-secondary);
  font-size: 0.85rem;
}

.live-breadcrumbs a {
  color: rgba(255, 255, 255, 0.94);
  transition: color var(--transition);
}

.live-breadcrumbs a:hover {
  color: var(--brown-light);
}

.live-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brown-light);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-page__eyebrow::before,
.live-status::before,
.live-camera__status-dot {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f25555;
  box-shadow: 0 0 0 0 rgba(242, 85, 85, 0.44);
  animation: liveStreamPulse 1.8s ease-out infinite;
}

.live-page__title {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.live-page__title-accent {
  color: var(--brown);
}

.live-page .live-hero__content .btn--outline-light,
.live-page .live-note__card .btn--outline-light {
  border-color: rgba(255,255,255,0.24);
  color: var(--text-light);
  background: transparent;
}

.live-page .live-hero__content .btn--outline-light:hover,
.live-page .live-note__card .btn--outline-light:hover {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.08);
}

.live-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.live-streams__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.live-camera {
  padding: 26px;
}

.live-camera__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.live-camera__eyebrow {
  margin-bottom: 8px;
  color: var(--brown-light);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-camera__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--text-light);
}

.live-camera__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text-light-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-camera__frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0d0b0b;
  aspect-ratio: 4 / 3;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.live-camera__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0d0b0b;
}

.live-note {
  margin-top: 28px;
}

.live-note__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
}

.live-note__text {
  max-width: 760px;
  color: var(--text-light-secondary);
  line-height: 1.75;
}

.live-note__text strong {
  color: var(--text-light);
}

.live-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@keyframes liveStreamPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 85, 85, 0.44);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(242, 85, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 85, 85, 0);
  }
}

@media (max-width: 1180px) {
  .live-streams__grid,
  .live-note__card {
    grid-template-columns: 1fr;
  }

  .live-note__card {
    display: grid;
  }

  .live-note__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .live-main {
    padding: 148px 0 72px;
  }

  .live-hero__content,
  .live-camera,
  .live-note__card {
    padding: 24px;
    border-radius: 24px;
  }

  .live-camera__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .live-main {
    padding: 134px 0 56px;
  }

  .live-page__title {
    font-size: 2.45rem;
  }

  .live-note__text {
    font-size: 0.96rem;
  }

  .live-camera__title {
    font-size: 1.55rem;
  }

  .live-hero__actions,
  .live-note__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .live-hero__actions .btn,
  .live-note__actions .btn {
    width: 100%;
  }
}
