:root {
  --red: #c41111;
  --text: #111;
  --muted: #666;
  --maxw: 980px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

/* Policy links — quase transparente */
.policy-links {
  max-width: 980px;
  margin: 8px auto 0;
  padding: 0 16px;
  opacity: .18;
  /* quase invisível */
  transition: opacity .2s ease;
  font-size: 11px;
  line-height: 1.5;
  user-select: none;
}

.policy-links:hover,
.policy-links:focus-within {
  opacity: .85;
  /* legível ao interagir */
  user-select: text;
}

.policy-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.policy-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  outline: 0;
}

.policy-links a:focus-visible {
  outline: 2px dashed rgba(24, 164, 75, .6);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .policy-links ul {
    gap: 6px 12px;
  }
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-weight: 700
}

.topbar .left,
.topbar .right {
  position: absolute;
  top: 0;
  height: 56px;
  display: flex;
  align-items: center;
  color: #fff;
  opacity: .95
}

.topbar .left {
  left: 12px
}

.topbar .right {
  right: 12px
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative
}

.icon.bars:before,
.icon.bars:after,
.icon.bars span {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

.icon.bars:before {
  top: 7px
}

.icon.bars span {
  top: 12px
}

.icon.bars:after {
  top: 17px
}

.icon.search {
  border-radius: 50%;
  border: 2px solid #fff
}

.icon.search:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #fff;
  right: -3px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 2px
}

/* News ticker */
.ticker {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .25);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  height: 28px;
  display: flex;
  align-items: center
}

.ticker__track {
  display: inline-block;
  will-change: transform;
  animation: slide 38s linear infinite;
  padding-left: 100%
}

@keyframes slide {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

.ticker__item {
  margin-right: 2rem;
  font-size: .82rem;
  letter-spacing: .15px
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 18px auto 64px;
  padding: 0 16px;
  text-align: center
}

.player-wrap {
  margin: 0 auto 18px
}

.player-wrap>vturb-smartplayer {
  width: 100%;
  max-width: 400px !important;
  display: block;
  margin: 0 auto
}

/* One single media image */
.brands {
  margin: 10px auto 12px;
  display: flex;
  justify-content: center;
  align-items: center
}

.brand-single {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: grayscale(1) opacity(.9);
  object-fit: contain
}

/* trsprn button under the media image — AGORA: verde, texto branco, oculto até liberar via JS */
.trsprn-button {
   display: block;
   width: min(420px, 86vw);
   height: 60px;
   margin: 12px auto 0;
   background: #18a44b; /* зеленый */
   color: #fff; /* текст белый */
   border: 0;
   outline: 0;
   text-decoration: none;
   text-indent: 0;
   font-weight: 700;
   font-size: 18px;
   line-height: 60px; /* центрирует вертикально */
   border-radius: 12px;
   box-shadow: 0 8px 16px rgba(24, 164, 75, .25);
   cursor: pointer;
   transition: transform .15s ease, filter .15s ease;
   
   /* Анимация мигания */
   animation: blink 1.5s infinite; /* мигает каждые 1.5 секунды */
}

.trsprn-button:hover {
   transform: translateY(-1px);
   filter: brightness(1.05);
}

.trsprn-button:active {
   transform: translateY(0);
   filter: brightness(.98);
}

.trsprn-button:focus-visible {
   outline: 2px dashed rgba(24, 164, 75, .75);
   outline-offset: 3px;
}

/* Определяем анимацию мигания */
@keyframes blink {
   0% {
       opacity: 1;
   }
   50% {
       opacity: 0.5;
      background-color: #15ff00;
      color: #111;
   }
   100% {
       opacity: 1;
   }
}


footer {
  padding: 32px 16px 48px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem
}

@media (min-width:768px) {
  .wrap {
    margin-top: 28px
  }
}
.none{
  display: none;
}


.video-note{
    color: #1a1a1c;
    font-size: 14px;
    margin: 20px 0 18px;
    text-align: center;
}


.video-title{
    margin: 8px 6px 14px;
    font-size: clamp(20px, 5vw, 34px);
    text-align: center;
    color: #1a1a1c;
    text-transform: uppercase;
}