/* ============================================================
 * VSL Fox News Landing — чистый HTML/CSS
 * Navy: #003366 | Brand red: #d20f26 | Banner: #ff0000
 * ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

/* COMPACT BONUS PUSH */
.bonus-push {
  position: fixed;
  z-index: 10000;
  top: max(12px, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 24px), 540px);
  min-height: 74px;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #9ac9f1;
  border-radius: 14px;
  opacity: 0;
  color: #073866;
  background: linear-gradient(135deg, #ffffff 0%, #eff8ff 58%, #d8efff 100%);
  box-shadow: 0 12px 36px rgba(0, 51, 102, .25), 0 2px 8px rgba(0, 51, 102, .12);
  transform: translate(-50%, -120%);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.23, 1, .32, 1);
}

.bonus-push.is-visible { opacity: 1; transform: translate(-50%, 0); }

.bonus-push__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #2f8fd3, #003f7a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
  font-size: 21px;
}

.bonus-push__copy { min-width: 0; }
.bonus-push__copy strong {
  display: block;
  font-size: 14px;
  line-height: 1.12;
}
.bonus-push__copy span {
  display: block;
  margin-top: 3px;
  color: #376584;
  font-size: 12px;
  line-height: 1.25;
}

.bonus-push__action {
  min-width: 67px;
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #2085ce, #004b87);
  box-shadow: 0 7px 16px rgba(0, 71, 128, .25);
  cursor: pointer;
  font: 800 13px/1 'Roboto', sans-serif;
  letter-spacing: .04em;
  transition: transform 150ms cubic-bezier(.23, 1, .32, 1), filter 150ms ease;
}
.bonus-push__action:hover { filter: brightness(1.06); }
.bonus-push__action:active { transform: scale(.97); }
.bonus-push.is-message { grid-template-columns: 42px minmax(0, 1fr); }

/* CTA REDIRECT FEEDBACK */
.redirect-status {
  position: fixed;
  z-index: 2147480400;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: min(calc(100% - 24px), 410px);
  min-height: 62px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #9ac9f1;
  border-radius: 14px;
  opacity: 0;
  color: #073866;
  background: linear-gradient(135deg, #fff, #e4f4ff);
  box-shadow: 0 14px 42px rgba(0, 51, 102, .28);
  transform: translate(-50%, 120%);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.23, 1, .32, 1);
}
.redirect-status.is-visible { opacity: 1; transform: translate(-50%, 0); }
.redirect-status__spinner {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  border: 3px solid #bfe4ff;
  border-top-color: #006db5;
  border-radius: 50%;
  animation: redirectSpin .75s linear infinite;
}
.redirect-status strong, .redirect-status small { display: block; }
.redirect-status strong { font-size: 14px; line-height: 1.1; }
.redirect-status small { margin-top: 3px; color: #51718a; font-size: 11px; line-height: 1.2; }
@keyframes redirectSpin { to { transform: rotate(360deg); } }

/* HEADER */
.header { width: 100%; }
.header__redline { height: 3px; background: #d20f26; }
.header__bar { background: #003366; }
.header__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 12px;
}
.header__logo img { width: 58px; height: 58px; }
.header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 12px;
  overflow: hidden;
}
.header__nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__login {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 5px 12px;
  border-radius: 3px;
}
.header__watchtv {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: #d20f26;
  padding: 5px 12px;
  border-radius: 3px;
}

/* ARTICLE */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 16px 40px;
}
.article__badge {
  display: inline-block;
  margin: 0 auto 20px;
  background: #d20f26;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 3px;
  text-align: center;
}
.article__badge { display: table; margin-left: auto; margin-right: auto; }

.article__title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.article__subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d20f26;
  line-height: 1.4;
  margin-bottom: 24px;
}
.article__subtitle p + p { margin-top: 4px; }

.article__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.article__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.article__author p { font-size: 14px; }
.article__author strong { color: #003366; }

.article__date {
  text-align: center;
  font-size: 12.5px;
  color: #717171;
  margin-bottom: 16px;
}

.article__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.article__share img { width: 37px; height: 37px; }

/* SOUND BANNER */
.sound-banner {
  max-width: 440px;
  margin: 0 auto 12px;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
}
.sound-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* VSL WRAPPER */
.vsl-wrapper {
  width: min(100%, 440px);
  margin: 0 auto;
}
.vsl-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #000;
}

.vsl-container vturb-smartplayer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

/* UNMUTE OVERLAY */
.unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
.unmute-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.unmute-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.75);
  padding: 14px 24px;
  border-radius: 50px;
  animation: unmutePulse 1.5s ease-in-out infinite;
}
.unmute-pill span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@keyframes unmutePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* CTA BUTTON */
.cta-wrapper {
  max-width: 440px;
  margin: 20px auto 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.23, 1, .32, 1);
}
.cta-wrapper.is-visible { opacity: 1; transform: translateY(0); }
.cta-btn {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: #d20f26;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 160ms ease-out, background 160ms ease-out;
  animation: ctaPulse 1.8s ease-out infinite;
}
.cta-btn:active { transform: scale(0.97); }
.cta-btn:hover { background: #b80d20; }

.cta-note {
  margin: 9px auto 0;
  color: #376584;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(210, 15, 38, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(210, 15, 38, 0); }
}

/* FOOTER */
.footer {
  background: #003366;
  padding: 48px 16px 64px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 600px;
}
.footer__col h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer__bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer__bottom img { margin-bottom: 16px; }
.footer__bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__login { display: none; }
  .article { padding: 20px 12px 32px; }
  .article__badge { margin-bottom: 14px; }
  .article__title { font-size: clamp(23px, 7.4vw, 30px); line-height: 1.08; margin-bottom: 13px; }
  .article__subtitle { font-size: 13px; }
  .article__share { margin-bottom: 20px; }
  .sound-banner, .vsl-wrapper, .cta-wrapper { width: min(100%, 440px); max-width: none; }
  .cta-wrapper { margin-top: 14px; }
  .bonus-push {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 16px);
    min-height: 68px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }
  .bonus-push__icon { width: 38px; height: 38px; font-size: 18px; }
  .bonus-push__copy strong { font-size: 13px; }
  .bonus-push__copy span { font-size: 11px; }
  .bonus-push__action { min-width: 58px; min-height: 38px; padding: 7px 10px; font-size: 12px; }
  .bonus-push.is-message { grid-template-columns: 38px minmax(0, 1fr); }
  .redirect-status { bottom: max(10px, env(safe-area-inset-bottom)); width: calc(100% - 16px); }
}

@media (prefers-reduced-motion: reduce) {
  .redirect-status__spinner { animation-duration: 1.4s; }
}

@media (min-width: 640px) {
  .article__title { font-size: 38px; }
  .article__subtitle { font-size: 15px; }
  .sound-banner span { font-size: 15px; }
}
