:root {
  --red: #e50914;
  --red-dim: #8a0009;
  --red-glow: rgba(229,9,20,0.18);
  --black: #06080f;
  --navy: #0b0e1c;
  --card: #10141f;
  --card2: #161b29;
  --border: rgba(255,255,255,0.07);
  --border-hot: rgba(229,9,20,0.5);
  --text: #f0f2fa;
  --text-muted: #717893;
  --text-dim: #404766;
  --accent-green: #22c55e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="light"] {
  --black: #f0f2fa;
  --navy: #e4e7f2;
  --card: #ffffff;
  --card2: #f5f7ff;
  --border: rgba(0,0,0,0.08);
  --border-hot: rgba(229,9,20,0.4);
  --text: #0d0f1a;
  --text-muted: #555c7a;
  --text-dim: #9099bb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--black);
  font-family: var(--font-body);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,8,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

[data-theme="light"] .header { background: rgba(240,242,250,0.92); }

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
  position: relative; overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 80%; height: 80%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
}

.logo-text span { color: var(--red); }

.logo-sub {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

.header-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

.search-wrap { flex: 1; max-width: 320px; position: relative; }

.search-wrap i {
  position: absolute;
  left: 13px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 13px;
  pointer-events: none;
}

#searchInput {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px 9px 36px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

#searchInput:focus { border-color: var(--red); background: var(--card2); }
#searchInput::placeholder { color: var(--text-dim); }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--border-hot); color: var(--red); }

.tg-btn {
  width: 38px; height: 38px;
  background: #229ed9;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 0 0 0 rgba(34,158,217,0.4);
}

.tg-btn:hover {
  background: #1a8bbf;
  box-shadow: 0 0 0 6px rgba(34,158,217,0.15);
  transform: scale(1.08);
}

.header-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.dot-live {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* ─── LAYOUT ─── */
.layout {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 28px 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

/* ─── PLAYER SIDE ─── */
.video-frame {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-glow), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

#player {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
  outline: none;
  position: relative;
  z-index: 0;
}

.video-hud {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hud-row { display: flex; align-items: center; gap: 10px; }

.live-pill {
  background: var(--red);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0;
}

.live-pill::before {
  content: '';
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.hud-channel {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: #fff;
}

/* ─── BUFFERING SPINNER ─── */
.buffer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.buffer-overlay.visible { opacity: 1; }

.buffer-spinner {
  width: 52px; height: 52px;
  position: relative;
  margin-bottom: 12px;
}

.buffer-spinner::before,
.buffer-spinner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.buffer-spinner::before {
  inset: 0;
  border-top-color: var(--red);
  animation: spin 0.9s linear infinite;
}

.buffer-spinner::after {
  inset: 8px;
  border-top-color: rgba(229,9,20,0.3);
  animation: spin 1.4s linear infinite reverse;
}

@keyframes spin { to { transform: rotate(360deg); } }

.buffer-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
}

/* ─── PLAYER META ─── */
.player-meta {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
}

.player-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.meta-left { display: flex; flex-direction: column; gap: 3px; }

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 30px;
  font-size: 0.7rem;
  color: var(--accent-green);
  font-weight: 500;
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}

.quality-badge i { font-size: 10px; }

.meta-playing-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── SERVER SWITCHER ─── */
.server-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.server-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 4px;
}

.srv-btn {
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.16s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.srv-btn:hover { background: var(--red-glow); border-color: var(--border-hot); color: var(--text); }
.srv-btn.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 600; }

/* ─── CHANNELS SIDE ─── */
.channels-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - 86px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dim) transparent;
}

.channels-side::-webkit-scrollbar { width: 4px; }
.channels-side::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 4px; }

/* ─── CATEGORIES ─── */
.cats-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.cats-grid { display: flex; flex-wrap: wrap; gap: 7px; }

.cat-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 5px 13px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.cat-chip:hover { background: var(--red-glow); border-color: var(--border-hot); color: var(--text); }
.cat-chip.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 600; }

/* ─── LIST HEADER ─── */
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 2px;
}

.list-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--text);
}

.list-count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ─── CHANNEL LIST ─── */
.channel-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - 340px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dim) transparent;
}

.channel-list::-webkit-scrollbar { width: 3px; }
.channel-list::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 3px; }

.ch-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.16s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ch-item:hover { background: var(--card2); border-color: rgba(229,9,20,0.3); transform: translateX(3px); }
.ch-item.active { background: var(--card2); border-left: 3px solid var(--red); border-color: var(--border-hot); }
.ch-item.active .ch-num { color: var(--red); }

.ch-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }

.ch-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  width: 22px;
  flex-shrink: 0;
  text-align: right;
}

/* ─── CHANNEL LOGO ─── */
.ch-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--card2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ch-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  border-radius: 8px;
}

.ch-info { flex: 1; min-width: 0; }

.ch-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ch-cat {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-transform: uppercase;
}

.hd-badge {
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.sd-badge {
  background: rgba(255,160,90,0.12);
  color: #ffaa55;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,160,90,0.2);
}

.ch-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Favourite star button */
.fav-btn {
  width: 26px; height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  border-radius: 50%;
  transition: all 0.16s;
  padding: 0;
}

.fav-btn:hover { color: #f59e0b; transform: scale(1.2); }
.fav-btn.active { color: #f59e0b; }

.ch-play {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.16s;
}

.ch-play i { font-size: 9px; color: var(--text-dim); margin-left: 2px; }
.ch-item:hover .ch-play { background: var(--red-glow); border-color: var(--border-hot); }
.ch-item:hover .ch-play i { color: var(--red); }
.ch-item.active .ch-play { background: var(--red); border-color: var(--red); }
.ch-item.active .ch-play i { color: #fff; }

/* ─── EMPTY STATE ─── */
.empty-state { padding: 40px 20px; text-align: center; color: var(--text-dim); font-size: 0.8rem; }
.empty-state i { font-size: 2rem; margin-bottom: 12px; opacity: 0.3; display: block; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text);
  z-index: 9999;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  letter-spacing: 0.3px;
}

.toast i { margin-right: 8px; color: var(--red); }

/* ─── SCROLL-HIDE COLLAPSIBLE ─── */
.scroll-collapsible {
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, margin 0.28s ease, padding 0.28s ease;
  max-height: 600px;
  opacity: 1;
}
.scroll-collapsible.hidden {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; padding: 0; gap: 0; }
  .channels-side { max-height: none; padding: 12px 14px 40px; }
  .channel-list { max-height: none; }
  .header-status { display: none; }

  /* Fix header to top */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  /* Fix player-side (video frame only) right below header */
  .player-side {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 190;
    background: #000;
  }

  .video-frame {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  /* On mobile, player-meta is moved into channels-side via JS */
  .player-side .player-meta {
    display: none;
  }

  .channels-side .player-meta {
    display: flex;
    flex-direction: column;
    margin: 0 0 12px 0;
    border-radius: 10px;
  }

  /* Push all scrollable content below fixed header + fixed player */
  /* 62px header + 56.25vw video (16:9 aspect) */
  .layout {
    padding-top: calc(62px + 56.25vw);
  }
}

@media (max-width: 560px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .logo-text { font-size: 1.3rem; }
  .player-meta { padding: 12px 14px; }
  .player-meta-top { flex-wrap: wrap; gap: 10px; }
  .search-wrap { max-width: 160px; }
  .ch-logo { width: 30px; height: 30px; font-size: 0.9rem; }
}

/* ─── FOOTER ─── */
.site-footer {
  margin-top: 40px;
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 36px 28px 28px;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--text);
}

.footer-brand span { color: var(--red); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-top: -10px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-family: var(--font-body);
  transition: color 0.18s;
}

.footer-links a:hover { color: var(--red); }

.footer-links .sep {
  color: var(--text-dim);
  font-size: 0.7rem;
}

.footer-store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 18px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.18s;
  min-width: 140px;
}

.store-btn:hover { border-color: var(--border-hot); background: var(--card2); transform: translateY(-2px); }

.store-btn i {
  font-size: 22px;
  flex-shrink: 0;
}

.store-btn .store-text { display: flex; flex-direction: column; text-align: left; }

.store-btn .store-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.store-btn .store-name {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.2;
}

.store-btn.gplay i { color: #34a853; }
.store-btn.astore i { color: #a8a8a8; }
.store-btn.atv i { color: #1a73e8; }

.footer-disclaimer {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  max-width: 600px;
  line-height: 1.6;
  padding-top: 6px;
  border-top: 1px solid var(--border);
  width: 100%;
  text-align: center;
}

@media (max-width: 560px) {
  .store-btn { min-width: 120px; padding: 8px 14px; }
  .site-footer { padding: 28px 16px 20px; }
}

/* ─── SPORTS PROMO MODAL ─── */
.promo-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: fadeInBackdrop 0.25s ease;
}

@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.promo-modal {
  background: var(--card);
  border: 1px solid var(--border-hot);
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 420px;
  width: calc(100% - 40px);
  position: relative;
  box-shadow: 0 0 60px rgba(229,9,20,0.22), 0 20px 60px rgba(0,0,0,0.6);
  animation: slideUpModal 0.28s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
}

@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(28px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.promo-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), #ff4444);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(229,9,20,0.4);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.3);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.promo-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo-title span { color: var(--red); }

.promo-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
  font-family: var(--font-body);
}

.promo-desc strong {
  color: var(--text);
  font-weight: 600;
}

.promo-actions {
  display: flex;
  gap: 10px;
}

.promo-ok {
  flex: 1;
  background: var(--red);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.promo-ok:hover { background: #c8000f; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,9,20,0.35); }

.promo-cancel {
  flex: 0 0 auto;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.18s;
}

.promo-cancel:hover { border-color: var(--border-hot); color: var(--text); }

@media (max-width: 560px) {
  .promo-modal { padding: 28px 20px 22px; }
  .promo-title { font-size: 1.55rem; }
}