/* =====================================================================
   PRIME SPORT — лендинг трансляции (UFC 329)
   Чистая статика по ТЗ: без растровых картинок (фон/превью — CSS),
   шрифты и Bootstrap через jsDelivr, вся динамика — vanilla app.js.
   ===================================================================== */

/* ----------------------------- Токены ----------------------------- */
:root {
  --bg:      #06080d;
  --panel1:  #111826;
  --panel2:  #0b0f18;
  --panel3:  #0d1420;
  --panel4:  #101725;

  --ink:     #eef2f8;
  --ink-2:   #dbe3ef;
  --muted:   #93a0b4;
  --muted-2: #8ea2c4;
  --muted-3: #7c889c;
  --faint:   #6f7c92;

  --red:      #ff2f45;
  --red-deep: #c40023;
  --red-soft: #ff8494;
  --blue:     #1b6dff;
  --blue-2:   #3d8bff;
  --blue-3:   #7fb0ff;
  --blue-4:   #9fc0ff;
  --green:    #4ade80;

  --line:   rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.12);

  --font-head: 'Oswald Variable', 'Oswald', system-ui, sans-serif;
  --font-body: 'Manrope Variable', 'Manrope', system-ui, -apple-system, sans-serif;

  --wrap: 1320px;
  --radius: 16px;
  --pad-x: clamp(16px, 4vw, 32px);
}

/* ----------------------------- База ----------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--red-deep); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad-x); }

h1, h2, h3, .head { font-family: var(--font-head); font-weight: 600; }

/* Красная кнопка-CTA (общий стиль) */
.btn-watch {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 30px; border: none; border-radius: 12px;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  font-family: var(--font-head); font-weight: 600; font-size: 17px;
  letter-spacing: .05em; text-transform: uppercase; color: #fff; cursor: pointer;
  box-shadow: 0 14px 34px rgba(228,0,43,.45);
  transition: transform .12s, box-shadow .2s;
}
.btn-watch:hover { box-shadow: 0 16px 40px rgba(228,0,43,.6); }
.btn-watch:active { transform: translateY(1px) scale(.99); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 26px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  font-family: var(--font-head); font-weight: 500; font-size: 16px;
  letter-spacing: .05em; text-transform: uppercase; color: #e7ecf4;
  transition: background .18s;
}
.btn-ghost:hover { background: rgba(255,255,255,.09); }
.play-tri {
  display: inline-block; width: 0; height: 0;
  border-left: 12px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent;
}

/* Заголовки секций */
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .24em; margin-bottom: 10px;
}
.eyebrow.red  { color: var(--red); }
.eyebrow.blue { color: var(--blue-2); }
.section-title {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(28px, 4vw, 44px); text-transform: uppercase;
  letter-spacing: -.01em; margin-bottom: clamp(24px, 3vw, 40px);
}
.section { padding-top: clamp(48px, 7vw, 88px); }

/* ----------------------------- Анимации ----------------------------- */
@keyframes ringPulse { 0%{transform:translate(-50%,-50%) scale(1);opacity:.55} 100%{transform:translate(-50%,-50%) scale(2.4);opacity:0} }
@keyframes softGlow { 0%,100%{box-shadow:0 0 0 1px rgba(255,255,255,.14),0 14px 40px rgba(228,0,43,.45)} 50%{box-shadow:0 0 0 1px rgba(255,255,255,.22),0 14px 66px rgba(228,0,43,.8)} }
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.8)} }
@keyframes chatIn { 0%{opacity:0;transform:translateY(10px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes focusGlow { 0%,100%{box-shadow:0 0 0 1px rgba(255,255,255,.08),0 24px 60px rgba(0,0,0,.5)} 45%{box-shadow:0 0 0 2px rgba(255,47,69,.85),0 0 34px rgba(255,47,69,.55),0 0 70px rgba(27,109,255,.4)} }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(8,11,17,.82); border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-row {
  max-width: var(--wrap); margin: 0 auto; padding: 12px var(--pad-x);
  display: flex; align-items: center; gap: 18px;
}
.header-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: .02em; color: #fff; }
.brand-name span { color: var(--red); }
.brand-tag { font-family: var(--font-head); font-weight: 500; font-size: 9px; letter-spacing: .4em; color: var(--muted-2); margin-top: 2px; }

.live-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px;
  border-radius: 999px; background: rgba(27,109,255,.12); border: 1px solid rgba(27,109,255,.34);
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--blue-4); white-space: nowrap;
}
.live-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #3d8bff; }

.main-nav {
  display: flex; align-items: center; gap: 26px;
  font-family: var(--font-head); font-size: 15px; letter-spacing: .06em;
  text-transform: uppercase; color: #c4cddb; font-weight: 500;
}
.main-nav a { padding: 6px 0; transition: color .15s; }
.main-nav a:hover { color: #fff; }

.header-cta { height: 40px; padding: 0 20px; font-size: 14px; }

.burger {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); cursor: pointer;
}
.burger span { width: 18px; height: 2px; background: #e6ebf3; box-shadow: 0 -6px 0 #e6ebf3, 0 6px 0 #e6ebf3; display: block; }

.mobile-menu {
  display: none; border-top: 1px solid rgba(255,255,255,.07);
  padding: 8px var(--pad-x) 16px; flex-direction: column; gap: 2px;
  font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.05); color: #d5dce8; }
.mobile-menu a:last-child { border-bottom: none; }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; overflow: hidden; }
/* Фон-заглушка вместо hero-bg.jpg — только CSS: арена-свечение + вигнетка */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(27,109,255,.20), transparent 60%),
    radial-gradient(80% 70% at 18% 20%, rgba(228,0,43,.22), transparent 62%),
    radial-gradient(120% 90% at 50% -20%, rgba(27,109,255,.10), transparent 55%),
    conic-gradient(from 210deg at 50% -10%, rgba(255,47,69,.10), transparent 30%, rgba(27,109,255,.10) 60%, transparent 80%),
    #080b12;
}
.hero-bg::after { /* тонкие «лучи света» арены */
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 46px);
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
}
.hero-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,8,13,.35) 0%, rgba(6,8,13,.55) 55%, var(--bg) 100%);
}
.hero-inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(28px,5vw,64px) var(--pad-x) clamp(40px,6vw,80px);
  display: flex; flex-wrap: wrap; gap: clamp(24px,3.5vw,48px); align-items: center;
}
.hero-copy { flex: 1 1 360px; min-width: min(360px, 100%); }
.hero-side { flex: 2 1 520px; min-width: min(520px, 100%); width: 100%; }

.status-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
  border-radius: 999px; background: rgba(228,0,43,.14); border: 1px solid rgba(228,0,43,.4);
  margin-bottom: 22px;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.status-badge .label {
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; color: #fff; white-space: nowrap; text-transform: uppercase;
}
.hero-kicker { font-family: var(--font-head); font-weight: 600; font-size: clamp(13px,1.6vw,16px); letter-spacing: .24em; color: var(--muted-2); margin-bottom: 10px; }
.hero-title {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(42px,7vw,84px);
  line-height: .96; letter-spacing: -.01em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title .vs { display: block; color: #8b96a8; font-weight: 400; font-size: .62em; letter-spacing: .02em; }
.hero-title .num { color: var(--red); }
.hero-lead { font-size: clamp(16px,2vw,20px); font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.hero-sub { font-size: clamp(14px,1.7vw,16px); color: var(--muted); margin-bottom: 28px; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero-actions .btn-watch { height: 56px; font-size: 17px; }
.hero-note { font-size: 13px; color: #7f8da0; max-width: 42ch; }

/* ----------------------------- Player ----------------------------- */
.player-box {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #0a0e15;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
}
.player-box.is-focus { animation: focusGlow 1.25s ease-in-out 4; }
#partner-player-container { position: absolute; inset: 0; }

/* Превью-заглушка вместо player-preview.jpg — только CSS */
.player-fallback { position: absolute; inset: 0; display: block; cursor: pointer; }
.player-fallback .preview {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 50% 38%, rgba(27,109,255,.18), transparent 60%),
    radial-gradient(90% 70% at 50% 120%, rgba(228,0,43,.22), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #0c1220, #060a12);
}
.player-fallback .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,13,.35) 0%, rgba(6,8,13,.05) 40%, rgba(6,8,13,.78) 100%);
}
.player-badge {
  position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: 8px; background: rgba(196,0,35,.9);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.player-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.player-badge .label { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .12em; color: #fff; text-transform: uppercase; }
.player-brand {
  position: absolute; top: 16px; right: 16px; display: flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 12px; border-radius: 8px; background: rgba(10,14,20,.55);
  border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.player-brand span { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .06em; color: #fff; }
.player-brand span span { color: #ff6b7a; }

.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 96px; height: 96px; }
.play-btn .ring { position: absolute; top: 50%; left: 50%; width: 96px; height: 96px; border-radius: 50%; border: 2px solid rgba(255,47,69,.6); animation: ringPulse 2.6s ease-out infinite; }
.play-btn .ring.delay { animation-delay: 1.3s; }
.play-btn .core { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(180deg, var(--red), var(--red-deep)); animation: softGlow 2.8s ease-in-out infinite; }
.play-btn .core span { display: inline-block; width: 0; height: 0; border-left: 26px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 7px; }

/* ----------------------------- Live chat ----------------------------- */
.chat {
  margin-top: 14px; background: linear-gradient(180deg, var(--panel4), var(--panel2));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.chat.is-focus { animation: focusGlow 1.4s ease-in-out 3; }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.chat-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.chat-title .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.chat-viewers { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted-2); font-weight: 600; white-space: nowrap; }
.chat-viewers .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.chat-feed { height: clamp(240px,32vh,320px); overflow-y: auto; padding: 12px 14px; display: flex; flex-direction: column; gap: 11px; }
.chat-feed::-webkit-scrollbar { width: 8px; }
.chat-feed::-webkit-scrollbar-track { background: transparent; }
.chat-feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,.14); border-radius: 8px; }

.msg { display: flex; gap: 10px; }
.msg.enter { animation: chatIn .35s ease; }
.msg .avatar { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; }
.msg .body { min-width: 0; }
.msg .meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.msg .name { font-weight: 700; font-size: 13.5px; color: var(--blue-4); }
.msg .you { padding: 1px 7px; border-radius: 5px; background: rgba(255,47,69,.16); border: 1px solid rgba(255,47,69,.4); font-size: 10px; font-weight: 700; letter-spacing: .04em; color: var(--red-soft); }
.msg .text { font-size: 14px; line-height: 1.45; color: #d3dbe8; word-break: break-word; }
.msg.mine .name { color: var(--red-soft); }
.msg.sys .name { color: var(--muted-2); }

.chat-input { border-top: 1px solid var(--line); padding: 10px 12px; background: rgba(255,255,255,.02); }
.chat-form { display: flex; gap: 8px; align-items: center; }
.chat-form input { height: 42px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--ink); font-family: var(--font-body); outline: none; }
.chat-form input:focus { border-color: rgba(255,47,69,.5); }
.chat-form .name-in { flex: 0 0 90px; padding: 0 12px; font-size: 13px; }
.chat-form .text-in { flex: 1; min-width: 0; padding: 0 14px; font-size: 14px; }
.chat-form input::placeholder { color: #7f8da0; }
.chat-send { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 44px; height: 42px; border-radius: 10px; border: none; cursor: pointer; background: linear-gradient(180deg, var(--red), var(--red-deep)); box-shadow: 0 6px 16px rgba(228,0,43,.4); }
.chat-send span { display: inline-block; width: 0; height: 0; border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 2px; }
.chat-hint { margin-top: 7px; font-size: 11px; color: var(--faint); line-height: 1.4; }

/* ----------------------------- Info strip ----------------------------- */
.info-strip { position: relative; z-index: 2; margin-top: -14px; background: linear-gradient(180deg, var(--panel1), #0c111b); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px,2.5vw,28px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.info-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px; }
.info-head .t { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px,2.4vw,24px); letter-spacing: .04em; text-transform: uppercase; }
.chip-blue { padding: 5px 12px; border-radius: 999px; background: rgba(27,109,255,.14); border: 1px solid rgba(27,109,255,.34); font-size: 12px; font-weight: 700; color: var(--blue-4); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; overflow: hidden; }
.info-cell { background: var(--panel3); padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.info-cell .k { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-3); font-weight: 700; }
.info-cell .v { font-family: var(--font-head); font-size: clamp(15px,1.8vw,18px); font-weight: 500; color: var(--ink); }

/* ----------------------------- Why cards ----------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: clamp(14px,1.6vw,20px); }
.why-card { position: relative; background: linear-gradient(180deg, var(--panel1), var(--panel2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; overflow: hidden; }
.why-card .big-n { position: absolute; top: -30px; right: -10px; font-family: var(--font-head); font-weight: 700; font-size: 120px; line-height: 1; color: rgba(255,255,255,.035); }
.why-card .in { position: relative; }
.why-card .bar { width: 44px; height: 3px; background: linear-gradient(90deg, var(--red), var(--red-deep)); border-radius: 2px; margin-bottom: 18px; }
.why-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 22px; text-transform: uppercase; letter-spacing: .01em; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; line-height: 1.55; color: #98a4b8; }

/* ----------------------------- Steps ----------------------------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: clamp(14px,1.6vw,20px); }
.step { background: var(--panel3); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
.step .n { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: rgba(27,109,255,.14); border: 1px solid rgba(27,109,255,.34); font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--blue-3); margin-bottom: 18px; }
.step p { font-size: 15.5px; line-height: 1.5; color: var(--ink-2); font-weight: 500; }
.note-blue { margin-top: 20px; display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; background: rgba(27,109,255,.07); border: 1px solid rgba(27,109,255,.2); }
.note-blue .i { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(27,109,255,.25); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--blue-4); }
.note-blue p { font-size: 14px; line-height: 1.55; color: #a9b5c8; }

/* ----------------------------- Fight card ----------------------------- */
.main-event { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(115deg, rgba(196,0,35,.16) 0%, #0b1019 42%, #0b1019 58%, rgba(27,109,255,.16) 100%); margin-bottom: 18px; }
.main-event .tag { position: absolute; top: 0; left: 50%; transform: translateX(-50%); padding: 6px 20px; background: #0b1019; border: 1px solid rgba(255,255,255,.12); border-top: none; border-radius: 0 0 10px 10px; font-family: var(--font-head); font-size: 12px; letter-spacing: .16em; color: var(--red); font-weight: 600; }
.me-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(14px,3vw,36px); padding: clamp(40px,5vw,56px) clamp(20px,4vw,40px) clamp(28px,4vw,40px); }
.fighter { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; min-width: 120px; }
.fighter .ava { width: clamp(96px,14vw,132px); height: clamp(96px,14vw,132px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,4vw,40px); color: #e7ecf4; box-shadow: inset 0 -18px 30px rgba(0,0,0,.5); }
.fighter.red .ava  { background: radial-gradient(circle at 50% 35%, #2a1520, #0a0e15); border: 2px solid rgba(255,47,69,.4); }
.fighter.blue .ava { background: radial-gradient(circle at 50% 35%, #15202e, #0a0e15); border: 2px solid rgba(27,109,255,.4); }
.fighter .nm { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px,2.6vw,28px); text-transform: uppercase; letter-spacing: .01em; }
.fighter .meta { font-size: 13px; color: var(--muted); margin-top: 3px; }
.vs-big { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4vw,40px); color: var(--red); align-self: center; }

.uc-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; background: var(--panel3); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 14px 18px; }
.uc-row + .uc-row { margin-top: 10px; }
.uc-row .tag { font-family: var(--font-head); font-size: 11px; letter-spacing: .1em; color: var(--muted-2); font-weight: 600; flex: 0 0 auto; min-width: 150px; }
.uc-row .pair { flex: 1; min-width: 220px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.uc-row .pair .a, .uc-row .pair .b { flex: 1; font-family: var(--font-head); font-size: clamp(14px,1.7vw,17px); font-weight: 500; color: var(--ink); }
.uc-row .pair .a { text-align: right; }
.uc-row .pair .b { text-align: left; }
.uc-row .pair .vs { flex: 0 0 auto; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--red); }
.card-note { margin-top: 14px; font-size: 13px; color: var(--muted-3); }

/* ----------------------------- Trust ----------------------------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: clamp(12px,1.4vw,16px); }
.trust-item { display: flex; align-items: center; gap: 13px; background: linear-gradient(180deg, var(--panel1), var(--panel2)); border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.trust-item .mark { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 9px; background: rgba(61,139,255,.14); border: 1px solid rgba(61,139,255,.3); color: var(--blue-3); font-weight: 800; }
.trust-item .t { font-size: 14px; font-weight: 600; color: var(--ink-2); line-height: 1.35; }

/* ----------------------------- FAQ ----------------------------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq .eyebrow, .faq .section-title { text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--panel3); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left; }
.faq-q .q { font-family: var(--font-head); font-weight: 500; font-size: clamp(16px,2vw,19px); color: var(--ink); letter-spacing: .01em; }
.faq-q .plus { flex: 0 0 auto; font-size: 24px; line-height: 1; color: var(--red); transition: transform .25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 22px 22px; font-size: 15px; line-height: 1.6; color: #a9b5c8; }

/* ----------------------------- Closing CTA ----------------------------- */
.closing { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(120deg, #14060b, var(--panel2) 45%, #06111f); padding: clamp(32px,5vw,56px); text-align: center; }
.closing::before { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(228,0,43,.16), transparent 60%); }
.closing .in { position: relative; }
.closing h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px,4vw,42px); text-transform: uppercase; margin-bottom: 12px; }
.closing p { font-size: 15px; color: #a9b5c8; margin: 0 auto 26px; max-width: 52ch; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { margin-top: clamp(48px,7vw,88px); border-top: 1px solid rgba(255,255,255,.07); background: #080b11; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(28px,4vw,44px) var(--pad-x) clamp(90px,10vw,44px); }
.footer-brand { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 24px; }
.footer-brand .brand-name { font-size: 21px; }
.footer-brand .brand-tag { font-size: 10px; letter-spacing: .38em; margin-top: 3px; }
.footer-disclaimer { font-size: 12.5px; line-height: 1.6; color: var(--faint); max-width: 90ch; margin-bottom: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13px; color: var(--muted); }
.footer-links a { border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 2px; transition: color .15s; }
.footer-links a:hover { color: var(--ink); }

/* ----------------------------- Sticky mobile CTA ----------------------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(6,8,13,0), rgba(6,8,13,.92) 30%); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: none; }
.sticky-cta .btn-watch { display: flex; width: 100%; height: 56px; }


#playerBox #trans_overlay {
  font-size: 3vw !important;
}

/* ----------------------------- Адаптив ----------------------------- */
/* Мобильный порог 880px (как в оригинале) */
@media (max-width: 879px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .hero-actions.desktop-only { display: none; }
  .sticky-cta { display: block; }
}
@media (min-width: 880px) {
  .cta-mobile { display: none; }   /* дублирующие мобильные CTA под плеером */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
