/* ════════════════════════════════════════════════════
   BICPHIM — WATCH PAGE — Motchill layout
   ════════════════════════════════════════════════════ */
:root {
  --bg:      #000;
  --surface: #0f0f0f;
  --card:    #141414;
  --card2:   #1a1a1a;
  --border:  rgba(255,255,255,.08);
  --accent:  #00c853;
  --yellow:  #ffa502;
  --orange:  #ff6b35;
  --red:     #e53935;
  --text:    #eaedf2;
  --muted:   #6b7280;
  --sub:     #9ca3af;
  --r:       8px;
}
/* Reset cũ — chặn style.css cũ override layout */
.body.player { display: block !important; padding: 0 !important; max-width: none !important; }
.sidebar { display: none !important; }
/* Đảm bảo site-main không add padding extra cho watch page */
main.site-main:has(.bp-watch-wrap) { padding: 0 !important; max-width: none !important; }

/* ── Layout wrapper ── */
.bp-watch-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 16px 40px;
  font-family: system-ui,-apple-system,sans-serif;
  color: var(--text);
}
a { text-decoration: none; color: inherit; }

/* ── Breadcrumb ── */
.bp-bc {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
  margin-bottom: 12px; flex-wrap: wrap;
}
.bp-bc a { color: var(--muted); transition: color .15s; }
.bp-bc a:hover { color: var(--accent); }
.bp-bc .sep { color: rgba(255,255,255,.2); }
.bp-bc .cur { color: var(--sub); }

/* ── Main title ── */
.bp-watch-title {
  font-size: 20px; font-weight: 800;
  color: var(--text); margin: 0 0 14px;
  line-height: 1.3; letter-spacing: -.2px;
}
@media(max-width:640px) { .bp-watch-title { font-size: 17px; } }

/* ── Two-col layout ── */
.bp-watch-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}
@media(max-width:1024px) {
  .bp-watch-layout { grid-template-columns: 1fr 240px; gap: 14px; }
}
@media(max-width:860px) {
  .bp-watch-layout { grid-template-columns: 1fr; }
}

/* ── Player ── */
.bp-player-box {
  background: #000;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  width: 100%;
  touch-action: manipulation; /* chặn double-tap zoom của browser */
}
/* JWPlayer tự quản lý height qua aspectratio — không override */
.bp-player-box #player { width: 100% !important; }
/* Fix mobile: player không bị full height khi load */
@media (max-width: 768px) {
  .bp-player-box { max-height: 56.25vw !important; }
  .bp-player-box .plyr { max-height: 56.25vw !important; }
  .bp-player-box video { max-height: 56.25vw !important; }
}
/* Plyr dark theme override */
.bp-player-box .plyr {
  --plyr-color-main: #00c853;
  --plyr-video-background: #000;
  --plyr-range-fill-background: #00c853;
  border-radius: var(--r);
  width: 100%;
}
/* iframe embed: dùng padding-top hack riêng trong wrapper */
.bp-player-box .bp-iframe-wrap {
  position: relative; padding-top: 56.25%; height: 0; width: 100%;
}
.bp-player-box .bp-iframe-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none; display: block;
}
.bp-player-loading {
  display: flex; align-items: center; justify-content: center;
  min-height: 200px; color: var(--muted); font-size: 15px; gap: 8px;
  flex-direction: column;
}
.bp-player-loading i { font-size: 40px; opacity: .3; }

/* ── Action bar ── */
.bp-action-bar {
  display: flex; flex-direction: column;
  gap: 6px; margin: 10px 0 14px;
}
.bp-action-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
}
.bp-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 6px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: all .15s; border: 1px solid var(--border);
  background: var(--card2); color: var(--sub);
  white-space: nowrap;
}
.bp-action-btn:hover { border-color: rgba(0,200,83,.4); color: var(--accent); }
.bp-action-btn i { font-size: 13px; }
.bp-action-btn.prev, .bp-action-btn.next {
  background: var(--surface);
}
.bp-action-btn.prev:hover, .bp-action-btn.next:hover {
  background: var(--accent); color: #000; border-color: var(--accent);
}
.bp-action-sep { flex: 1; min-width: 0; }
@media(max-width:640px) {
  .bp-action-sep { display: none; }
}
.bp-action-views {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--muted);
}

/* ── Section card ── */
.bp-watch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 14px;
  overflow: hidden;
}
.bp-watch-card-head {
  padding: 12px 16px;
  font-size: 13px; font-weight: 700; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.bp-watch-card-head i { color: var(--accent); font-size: 12px; }
.bp-watch-card-body { padding: 14px 16px; }

/* ── Episode grid ── */
.bp-ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 6px;
}
.bp-ep-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 9px 4px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--sub);
  transition: all .15s; text-align: center; line-height: 1.2;
  cursor: pointer;
}
.bp-ep-btn:hover { background: rgba(0,200,83,.1); border-color: rgba(0,200,83,.35); color: var(--accent); }
.bp-ep-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }
.bp-ep-btn.locked { opacity: .4; pointer-events: none; color: var(--muted); }

/* ── Movie info ── */
.bp-info-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.bp-info-poster {
  width: 90px; min-width: 90px;
  aspect-ratio: 2/3; border-radius: 6px;
  overflow: hidden; background: #0a0a0a; flex-shrink: 0;
}
.bp-info-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bp-info-meta { flex: 1; min-width: 0; }
.bp-info-title {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; line-height: 1.4;
}
.bp-info-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 10px; font-style: italic; }
.bp-badge-row { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.bp-badge {
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 4px; letter-spacing: .3px;
}
.bp-badge.quality { background: var(--accent); color: #000; }
.bp-badge.sub     { background: rgba(255,255,255,.1); color: var(--sub); border: 1px solid var(--border); }
.bp-badge.year    { background: rgba(255,165,2,.12); color: var(--yellow); border: 1px solid rgba(255,165,2,.25); }
.bp-badge.status  { background: rgba(0,200,83,.1); color: var(--accent); border: 1px solid rgba(0,200,83,.25); }
.bp-ep-status {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 10px;
}
.bp-ep-status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
}
.bp-desc {
  font-size: 13.5px; color: var(--sub); line-height: 1.75;
  margin-bottom: 0;
}
.bp-desc a{color:#00c853;text-decoration:underline;font-weight:500;}
.bp-desc a:hover{color:#fff;}
.bp-desc.collapsed {
  display: -webkit-box; -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}
.bp-see-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 8px; font-size: 12.5px;
  color: var(--accent); cursor: pointer; font-weight: 600;
}
.bp-see-more:hover { text-decoration: underline; }

/* ── Genres + stars ── */
.bp-meta-label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 6px; margin-top: 12px;
}
.bp-genre-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.bp-genre-tag {
  padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: 11.5px; color: var(--sub); transition: all .15s;
}
.bp-genre-tag:hover { background: rgba(0,200,83,.1); border-color: rgba(0,200,83,.35); color: var(--accent); }

/* ── Cast grid — sidebar 3 cột ── */
.bp-sb-cast .bp-cast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
}
.bp-cast-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  text-decoration: none; color: inherit;
  transition: color .15s;
}
.bp-cast-item:hover { color: var(--accent); }
.bp-cast-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
  position: relative;
}
.bp-cast-item:hover .bp-cast-avatar { border-color: var(--accent); }
.bp-cast-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.bp-cast-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 22px;
}
.bp-cast-name {
  font-size: 11px; font-weight: 600;
  color: inherit; text-align: center;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  width: 100%;
}
.bp-cast-char {
  font-size: 10px; color: var(--muted);
  text-align: center; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
  width: 100%;
}

/* ── Tags ── */
.bp-tags { display: flex; flex-wrap: wrap; gap: 5px; padding: 14px 16px; }
.bp-tag {
  padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  font-size: 11.5px; color: var(--muted); transition: all .15s;
}
.bp-tag:hover { background: rgba(0,200,83,.1); border-color: rgba(0,200,83,.35); color: var(--accent); }

/* ── Related movies ── */
/* ── Internal links ── */


.bp-related-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bp-related-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; color: var(--text);
  padding-bottom: 10px; margin-bottom: -10px;
  border-bottom: 2px solid var(--accent);
}
.bp-related-title .bar { width: 4px; height: 18px; background: var(--accent); border-radius: 2px; }

/* ══ RELATED GRID — override toàn bộ style.css cũ ══ */
.bp-related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
  float: none !important;
}
@media(max-width:800px)  { .bp-related-grid { grid-template-columns: repeat(3,1fr) !important; } }
@media(max-width:640px)  { .bp-related-grid { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; } }

/* Card wrapper */
.bp-related-grid li.item-movie,
.bp-related-grid .item-movie {
  background: var(--card) !important; border-radius: var(--r) !important;
  overflow: hidden !important; border: 1px solid var(--border) !important;
  transition: transform .22s, box-shadow .22s, border-color .22s !important;
  display: block !important; width: 100% !important; float: none !important;
  padding: 0 !important; margin: 0 !important;
  transform: translateZ(0) !important; isolation: isolate !important;
  list-style: none !important;
}
.bp-related-grid .item-movie:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,.6) !important;
  border-color: rgba(0,200,83,.35) !important;
}

/* Link wrapper */
.bp-related-grid .item-movie > a {
  display: block !important; position: relative !important;
  text-decoration: none !important; color: inherit !important;
}

/* Image container — FORCE 2:3 */
.bp-related-grid .item-movie .image,
.bp-related-grid .item-movie .image.tab-movies1 {
  position: relative !important; width: 100% !important;
  padding-top: 0 !important; padding-bottom: 0 !important;
  aspect-ratio: 2 / 3 !important;
  overflow: hidden !important; display: block !important;
  background: #0a0a0a !important;
  height: auto !important; min-height: unset !important; max-height: unset !important;
}

/* movie-play phải absolute để fill toàn .image */
.bp-related-grid .item-movie .image .movie-play {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  margin: 0 !important; padding: 0 !important; display: block !important;
}

/* Ảnh poster — tất cả selectors có thể */
.bp-related-grid .item-movie .image img,
.bp-related-grid .item-movie .image .movie-play img,
.bp-related-grid .item-movie .image .movie-thumbnail,
.bp-related-grid .item-movie .image .video-image {
  position: absolute !important; inset: 0 !important;
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; object-position: center top !important;
  transition: transform .35s !important; display: block !important;
  max-width: none !important; transform: translateZ(0) !important;
}
.bp-related-grid .item-movie:hover .image img,
.bp-related-grid .item-movie:hover .image .movie-thumbnail { transform: scale(1.06) !important; }

/* Quality badge */
.bp-related-grid .item-movie .image .label,
.bp-related-grid .item-movie .image .label-quality,
.bp-related-grid .item-movie .image [class*="quality"],
.bp-related-grid .item-movie .image .item-quality {
  position: absolute !important; top: 6px !important; left: 6px !important;
  z-index: 2 !important; font-size: 9px !important; font-weight: 800 !important;
  padding: 2px 5px !important; border-radius: 3px !important;
  letter-spacing: .4px !important; text-transform: uppercase !important;
  background: var(--accent) !important; color: #000 !important; line-height: 1.4 !important;
}

/* Ẩn views/cripple */
.bp-related-grid .item-movie .image .view-onl,
.bp-related-grid .item-movie .image .views,
.bp-related-grid .item-movie .image .view,
.bp-related-grid .item-movie .image .cripple,
.bp-related-grid .item-movie .image span.cripple { display: none !important; }

/* Title overlay — dùng cho cả h2 trong và ngoài .image */
.bp-related-grid .item-movie h2.title-movie,
.bp-related-grid .item-movie .title-movie,
.bp-related-grid .item-movie .name-movie,
.bp-related-grid .item-movie > a > h2.title-movie {
  position: absolute !important; bottom: 0 !important;
  left: 0 !important; right: 0 !important; z-index: 4 !important;
  backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(0,0,0,.55) !important;
  font-size: 11.5px !important; font-weight: 600 !important;
  line-height: 1.4 !important; color: #fff !important;
  margin: 0 !important; padding: 7px 8px 9px !important;
  display: -webkit-box !important; -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important; overflow: hidden !important;
  white-space: normal !important; height: auto !important;
  transition: background .2s !important;
  top: auto !important; /* reset any top:0 from old CSS */
}
.bp-related-grid .item-movie:hover h2.title-movie,
.bp-related-grid .item-movie:hover .title-movie,
.bp-related-grid .item-movie:hover > a > h2.title-movie { background: rgba(0,200,83,.55) !important; }

/* Ẩn meta ngoài card */
.bp-related-grid .item-movie .info-movie,
.bp-related-grid .item-movie .meta-movie,
.bp-related-grid .item-movie .time-movie { display: none !important; }

/* ── SIDEBAR ── */
.bp-watch-sidebar { position: sticky; top: 108px; }
@media(max-width:860px) { .bp-watch-sidebar { position: static; } }

.bp-sb {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 14px;
}
.bp-sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--text);
}
.bp-sb-head .tabs { display: flex; gap: 4px; }
.bp-sb-tab {
  padding: 3px 9px; border-radius: 4px; font-size: 11px;
  font-weight: 600; color: var(--muted); cursor: pointer;
  border: 1px solid transparent; transition: all .15s;
}
.bp-sb-tab:hover { color: var(--text); }
.bp-sb-tab.active { background: var(--accent); color: #000; border-color: var(--accent); }

.bp-top-list { padding: 4px 0; }
.bp-top-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  transition: background .15s; text-decoration: none; color: inherit;
}
.bp-top-item:last-child { border-bottom: none; }
.bp-top-item:hover { background: rgba(255,255,255,.04); }
.bp-top-num {
  font-size: 22px; font-weight: 900; font-style: italic;
  width: 24px; flex-shrink: 0; text-align: center; line-height: 1;
  color: var(--muted);
}
.bp-top-item:nth-child(1) .bp-top-num { color: var(--orange); font-size: 26px; }
.bp-top-item:nth-child(2) .bp-top-num { color: #b8c0cc; font-size: 24px; }
.bp-top-item:nth-child(3) .bp-top-num { color: #cd7f32; font-size: 24px; }
.bp-top-thumb {
  width: 50px; height: 70px;
  border-radius: 5px; overflow: hidden; flex-shrink: 0; background: #111;
  transform: translateZ(0); isolation: isolate;
}
.bp-top-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transform: translateZ(0); }
.bp-top-info { flex: 1; min-width: 0; }
.bp-top-name {
  font-size: 12.5px; font-weight: 600; color: var(--text);
  line-height: 1.35; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.bp-top-item:hover .bp-top-name { color: var(--accent); }
.bp-top-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.bp-top-meta i { font-size: 10px; }

/* ── Share modal ── */
.bp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 1000;
  display: none; align-items: center; justify-content: center;
}
.bp-modal-overlay.open { display: flex; }
.bp-modal {
  background: #1e1e1e; border: 1px solid var(--border);
  border-radius: 12px; width: 480px; max-width: 92vw;
  padding: 24px; position: relative;
}
.bp-modal-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 20px; text-align: center;
}
.bp-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; cursor: pointer;
  color: var(--muted); font-size: 18px; line-height: 28px; text-align: center;
  border-radius: 50%; transition: all .15s;
}
.bp-modal-close:hover { background: rgba(255,255,255,.08); color: var(--text); }
.bp-share-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-bottom: 20px;
}
.bp-share-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; width: 72px;
}
.bp-share-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: transform .2s;
}
.bp-share-item:hover .bp-share-icon { transform: scale(1.1); }
.bp-share-label { font-size: 11px; color: var(--sub); text-align: center; }
.bp-share-fb   { background: #1877f2; color: #fff; }
.bp-share-tw   { background: #000; color: #fff; border: 1px solid #333; }
.bp-share-line { background: #06c755; color: #fff; }
.bp-share-copy { background: var(--card2); color: var(--text); border: 1px solid var(--border); }
.bp-share-embed{ background: var(--card2); color: var(--text); border: 1px solid var(--border); }
.bp-share-url-row {
  display: flex; gap: 8px; align-items: center;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 12px;
}
.bp-share-url-row input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--sub); font-size: 12.5px;
}
.bp-share-url-copy {
  padding: 5px 12px; border-radius: 5px;
  background: var(--accent); color: #000;
  font-size: 12px; font-weight: 700; cursor: pointer;
  white-space: nowrap; border: none;
  transition: opacity .15s;
}
.bp-share-url-copy:hover { opacity: .85; }
.bp-share-msg {
  text-align: center; font-size: 12px; color: var(--accent);
  height: 18px; margin-top: 6px;
}
/* ── Report error modal ── */
.bp-report-options {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.bp-report-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  background: var(--card2); border: 1px solid var(--border);
  cursor: pointer; transition: border-color .15s;
}
.bp-report-opt:hover { border-color: var(--accent); }
.bp-report-opt input[type="radio"] { accent-color: var(--accent); cursor: pointer; }
.bp-report-opt span { font-size: 13.5px; color: var(--text); }
.bp-report-note {
  width: 100%; min-height: 64px; resize: vertical;
  background: var(--card2); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 13px; padding: 10px 12px; outline: none;
  font-family: inherit; margin-bottom: 14px; box-sizing: border-box;
}
.bp-report-note:focus { border-color: var(--accent); }
.bp-report-submit {
  width: 100%; padding: 11px; border-radius: 8px; border: none;
  background: var(--accent); color: #000; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity .15s;
}
.bp-report-submit:hover { opacity: .85; }
.bp-report-submit:disabled { opacity: .5; cursor: not-allowed; }
.bp-report-err { color: #e53935; font-size: 12px; text-align: center; height: 16px; margin-top: -8px; margin-bottom: 8px; }

/* ── Lights off overlay ── */
.bp-lights-off-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.bp-lights-off-overlay.on { display: block; }
/* Player — z-index bình thường, chỉ nổi lên khi đèn tắt via JS */
.bp-player-box.lights-on-top { z-index: 9100; }
/* Share modal luôn cao hơn overlay */
.bp-modal-overlay { z-index: 9500 !important; }
/* Action bar nổi lên khi đèn tắt */
.bp-action-bar { position: relative; z-index: auto; }
.bp-action-bar.lights-on-top { z-index: 9200; }
.bp-lights-btn-active {
  background: rgba(0,200,83,.15) !important;
  border-color: rgba(0,200,83,.5) !important;
  color: var(--accent) !important;
}
/* Sidebar không được che nav dropdown */
.bp-watch-sidebar { position: sticky; top: 108px; z-index: auto; }
/* Anti-aliasing toàn cục — fix chữ/nút bị răng cưa */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.bp-action-btn, .bp-ep-btn, .bp-sb-tab, .bp-count,
.bp-sec-title, .bp-watch-title, .bp-bc { text-rendering: optimizeLegibility; }
/* Font đồng bộ toàn trang watch */
.bp-watch-wrap { font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif; }

/* ── Responsive ── */
@media(max-width:640px) {
  .bp-watch-wrap { padding: 10px 10px 32px; }
  .bp-ep-grid { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
  .bp-action-bar { gap: 4px; }
  .bp-action-btn { padding: 6px 10px; font-size: 11.5px; }
}
