/* =============================================
   VIDEOJS QUALITY BUTTON  (VJS 8)
   ============================================= */
.vjs-quality-btn {
  cursor: pointer;
}
.vjs-quality-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  padding: 0 8px;
  height: 100%;
  pointer-events: none;
}
.vjs-quality-btn .vjs-icon-placeholder { display: none !important; }
.vjs-quality-btn .vjs-menu {
  bottom: 0em;
  left: 50%;
  transform: translateX(-50%);
}
.vjs-quality-btn .vjs-menu-content {
  background: rgba(8,8,18,.97) !important;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  min-width: 72px;
  bottom: 0;
}
.vjs-quality-btn .vjs-menu-item {
  font-size: .78rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 9px 16px !important;
  text-align: center;
  color: rgba(255,255,255,.7) !important;
}
.vjs-quality-btn .vjs-menu-item:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}
.vjs-quality-btn .vjs-menu-item.vjs-selected,
.vjs-quality-btn .vjs-menu-item.vjs-selected:hover {
  background: rgba(25,118,210,.5) !important;
  color: #fff !important;
}
/* hide default checkmark */
.vjs-quality-btn .vjs-menu-item-text::before { display: none; }

/* =============================================
   LUSTPRESS — main.css  (mydesi2.net exact layout)
   Blue theme, left sidebar, card grid
   ============================================= */

:root {
  --hdr:        #1565c0;
  --bg-dark:    #0d47a1;
  --sidebar-bg: #1565c0;
  --card-bg:    #1565c0;
  --card-hover: #1976d2;
  --footer-bg:  #0d47a1;
  --border:     rgba(255,255,255,.1);
  --text:       #ffffff;
  --text2:      rgba(255,255,255,.75);
  --text3:      rgba(255,255,255,.45);
  --radius:     4px;
  --sidebar-w:  210px;
  --font:       'Roboto', sans-serif;
  --trans:      .15s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #1e73be!important;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, button { font-family: inherit; }

/* === HEADER === */
.site-header {
  background: #1e73be;
  position: sticky;
  top: 0;
  z-index: 200;
  /* box-shadow: 0 2px 8px rgba(0,0,0,.4); */
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  /* height: 52px; */
  gap: 20px;
  justify-content: space-between;
}
.logo {
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img {max-height: 38px;width:100%}
.top-nav { display: flex; margin-left: auto; }
.tnav-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  /* height: 52px; */
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: background var(--trans);
  white-space: nowrap;
  border-radius: 7px;
}
.tnav-link:hover {background: #000;color: #fff;}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* === BODY LAYOUT === */
.body-wrap {display: flex;min-height: calc(100vh - 52px);  background-color: rgba(0, 0, 0, 0.1); }

/* === SIDEBAR === */
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--sidebar-bg);
  padding: 10px 0 20px;
}
.sb-search { padding: 10px 10px 6px; position: relative; }
.sb-search-form {
  display: flex;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color var(--trans), background var(--trans);
}
.sb-search-form:focus-within {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
}
.sb-search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; padding: 7px 10px; font-size: .82rem; min-width: 0;
}
.sb-search-input::placeholder { color: rgba(255,255,255,.4); }
.sb-search-btn {
  background: none; border: none; color: rgba(255,255,255,.55);
  padding: 0 10px; cursor: pointer; display: flex; align-items: center;
}
.sb-search-btn:hover { color: #fff; }
.search-dropdown {
  position: absolute; top: calc(100% - 2px); left: 10px; right: 10px;
  background: #1565c0; border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); overflow: hidden; display: none;
  z-index: 300; box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.search-dropdown.open { display: block; }
.sd-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; font-size: .82rem; color: rgba(255,255,255,.85);
  cursor: pointer; transition: background var(--trans);
}
.sd-item:hover, .sd-item.focused { background: rgba(255,255,255,.15); color: #fff; }
.sd-empty { padding: 10px 12px; font-size: .8rem; color: rgba(255,255,255,.4); text-align: center; }

.sb-section {/* margin-top: 6px; */}
.sb-heading {
  font-weight: 600;
  letter-spacing: .047em;
  color: #FFF;
  padding: 10px 14px 4px;
  font-size: 1.05rem;
  margin: 0 0 5px;
}
.sb-nav { display: flex; flex-direction: column; }
.sb-link {
  display: block;
  padding: 7px 14px;
  font-size: .95rem;
  color: #FFF;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px 20px;
  margin-bottom: 1px;
  font-size: 14px;
}
.sb-link:hover {background: #000;color: #fff;font-weight: 500;}
.sb-link.active {
  background: rgba(255,255,255,.12); color: #fff;
  border-left-color: #fff; font-weight: 500;
}

/* === MAIN === */
.site-main { flex: 1; min-width: 0; padding: 12px 12px 40px; }

/* === PAGE HERO === */
.page-hero { margin-bottom: 12px; }
.page-title { font-size: 1.28rem; font-weight: 700; color: #fff;margin-bottom: 10px; }
.page-desc { font-size: .8rem; color: var(--text3); margin-top: 2px; }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: .796rem;
  color: #eee;
  margin-bottom: 2px;
  padding: 9px 10px 2px 10px;
}
.breadcrumb a { color: var(--text2); }
.breadcrumb a:hover { color: #fff; }

/* === VIDEO GRID === */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
@media (min-width:1200px) { .video-grid { grid-template-columns: repeat(5,1fr); } }
@media (min-width:1440px) { .video-grid { grid-template-columns: repeat(6,1fr); } }

/* === VIDEO CARD === */
.video-card {  position: relative; overflow: hidden; }
 
.card-thumb-wrap {
  display: block; position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden;  
}
.card-thumb { width:100%; height:100%; object-fit:cover; display:block; transition: opacity .25s; }
.card-trailer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .3s;
}
.video-card:hover .card-trailer { opacity: 1; }
.video-card:hover .card-thumb   { opacity: 0; }

.card-info {padding: 5px 9px 10px;}
.card-title {
  display: block; font-size: .89rem; font-weight: 500; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 3px;
}
.video-card:hover .card-title { color: #90caf9; }
.card-meta {
  display: flex; align-items: center; gap: 5px;
  font-size: .76rem; color: rgba(255,255,255,.65);
}
.card-meta .sep { opacity: .7; }

/* === PAGINATION === */
.pagination { margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--border);     text-align: center; }
.pagination-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px;
}
.page-numbers { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; }

.page-btn, .page-num, .page-btn {
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--trans);
  border: none;
  cursor: pointer;
  padding: .75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  background: rgba(0,0,0,0.20)!important;
  border-radius: 0px;
}
.active.page-btn, .active.page-num, .active.page-btn ,
.page-btn:hover, .page-num:hover, .page-btn:hover{background:#000 !important}
 .page-btn, .page-num { background: rgba(255,255,255,.15); color: #fff; }
.page-btn:not(.disabled):hover { background: rgba(255,255,255,.28); }
.page-btn.disabled { opacity: .3; cursor: not-allowed; }
.page-num {color: #FFF;}
.page-num:hover { background: rgba(255,255,255,.18); color: #fff; }
.page-num.current { background: #fff; color: #1565c0; }
.page-ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; color: rgba(255,255,255,.35); font-size: .95rem;
}
.page-info { text-align: center; font-size: .73rem; color: rgba(255,255,255,.3); margin-top: 6px; width: 100%; }

.page-goto {margin-top: 85px;margin-left: 10px;clear: both;}
.goto-label { font-size: .76rem; color: rgba(255,255,255,.45); white-space: nowrap; }
.goto-input {
  width: 54px; height: 36px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  color: #fff; text-align: center; font-size: .95rem; font-weight: 600;
  outline: none; -moz-appearance: textfield;
}
.goto-input::-webkit-inner-spin-button,
.goto-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.goto-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.18); }
.goto-btn {
  height: 36px; padding: 0 12px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  color: #fff; font-size: .78rem; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: .04em; transition: background var(--trans);
}
.goto-btn:hover { background: rgba(255,255,255,.24); }

/* === VIDEO PAGE === */
.player-wrap { background: #000; width: 100%; }
.video-js { width: 100%; }
.video-js .vjs-big-play-button {
  border: 2px solid rgba(255,255,255,.75); background: rgba(0,0,0,.5);
  border-radius: var(--radius); width: 68px; height: 46px;
  line-height: 46px; font-size: 1.4em;
  top: 50%; left: 50%; transform: translate(-50%,-50%); margin: 0;
  transition: background var(--trans);
}
.video-js:hover .vjs-big-play-button { background: rgba(0,0,0,.7); }
.video-js .vjs-control-bar { background: linear-gradient(to top,rgba(0,0,0,.85),transparent); }
.video-js .vjs-play-progress { background: #1976d2; }
.video-js .vjs-load-progress { background: rgba(25,118,210,.35); }
.video-js .vjs-slider { background: rgba(255,255,255,.2); }
.video-js .vjs-volume-level { background: #1976d2; }
.vjs-sprite-tooltip { box-shadow: 0 4px 16px rgba(0,0,0,.7); }

.video-info-bar {padding: 16px 10px;border-bottom: 1px solid rgba(0,0,0,.2);}
.video-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.video-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.vact-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: var(--radius); font-size: .78rem;
  font-weight: 500; color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18); cursor: pointer;
  transition: background var(--trans); text-decoration: none;
}
.vact-btn:hover { background: rgba(255,255,255,.22); }
.vact-btn.dl-hd { background: #1976d2; border-color: #1976d2; }
.vact-btn.dl-sd { background: #424242; border-color: #424242; }
.vact-btn.dl-hd:hover { background: #1e88e5; }
.vact-btn.dl-sd:hover { background: #616161; }

.video-tags-row {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 16px; background: #1a237e; border-bottom: 1px solid rgba(0,0,0,.15);
}
.tag-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.tag-group-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.35); flex-shrink: 0;
}
.tag-pill {
  display: inline-block; padding: 3px 10px; border-radius: 3px;
  font-size: .75rem; font-weight: 500; background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15);
  transition: background var(--trans), color var(--trans);
}
.tag-pill:hover { background: rgba(255,255,255,.2); color: #fff; }
.cat-pill { background: rgba(25,118,210,.3); border-color: #1976d2; color: #90caf9; }

.gallery-section { padding: 12px 16px;  }
.section-title {
  font-size: .76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.45); margin-bottom: 8px;
}
.gallery-grid {
  display: flex; gap: 4px; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent;
  padding-bottom: 4px;
}
.gallery-frame {
  flex-shrink: 0; width: 130px; height: 73px; object-fit: cover;
  border-radius: 2px; border: 2px solid transparent; cursor: pointer;
  transition: border-color var(--trans);
}
.gallery-frame:hover { border-color: rgba(255,255,255,.5); }

/* === CATEGORIES === */
.categories-grid {display: grid;grid-template-columns: repeat(auto-fill,minmax(230px,1fr));gap: 3px;}
.cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgb(0 0 0 / 16%);
  transition: background var(--trans);
  font-size: 16px;
}
.cat-card:hover {background: rgb(0 0 0 / 25%);}
.cat-name {font-size: .944rem;font-weight: 500;color: #fff;}
.cat-count {font-size: .77rem;color: rgba(255,255,255,.5);}

/* === SEARCH === */
.search-results-list { display: flex; flex-direction: column; gap: 3px; max-width: 540px; }
.search-result-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: var(--card-bg);
  color: rgba(255,255,255,.85); font-size: 1.05rem;
  transition: background var(--trans); border-radius: var(--radius);
}
.search-result-item:hover { background: var(--card-hover); color: #fff; }
.result-arrow { margin-left: auto; opacity: .4; }

/* === EMPTY / ERROR === */
.no-results {
  text-align: center; padding: 50px 20px; color: rgba(255,255,255,.3);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.error-page { text-align: center; padding: 60px 20px; }
.error-code { font-size: 5rem; font-weight: 700; color: rgba(255,255,255,.18); line-height: 1; }
.error-msg { color: rgba(255,255,255,.45); font-size: 1rem; margin: 8px 0 20px; }
.btn-home {
  display: inline-block; padding: 9px 22px; background: rgba(255,255,255,.14);
  color: #fff; border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  transition: background var(--trans);
}
.btn-home:hover { background: rgba(255,255,255,.24); }

/* === FOOTER === */
.site-footer {
  /* background: rgba(0,0,0,0.29); */
  border-top: 1px solid rgba(0,0,0,.2);
  text-align: center;
}
.footer-desc h2 {font-size: 33px;font-weight: 700;color: #fff;margin-bottom: 4px;}
.footer-desc p {font-size: 19px;color: rgba(255,255,255,.45);margin-bottom: 16px;}
.footer-nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px 16px; margin-bottom: 14px; }
.footer-nav a {font-size: .982rem;color: rgba(255,255,255,.755);transition: color var(--trans);}
.footer-nav a:hover { color: #fff; }
.footer-copy {font-size: .7983rem;color: rgba(255,255,255,.628);}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .top-nav { display: none; }
  .body-wrap { flex-direction: column; }
  .sidebar {
    width: 100%; max-height: none; position: static;
    display: none; border-right: none; border-bottom: 1px solid rgba(0,0,0,.2);
  }
  .sidebar.open { display: block; }
  .site-main { padding: 10px 8px 30px; }
  .video-grid { grid-template-columns: repeat(2,1fr); gap: 2px; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .page-goto { margin-left: 0; }
}
@media (max-width: 400px) {
  .card-title { font-size: .83rem; }
  .card-meta  { font-size: .76rem; }
}

/* video info top row: title left, download btns right */
.video-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.video-dl-btns {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* =============================================
   RELATED SECTION
   ============================================= */
.related-section {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.section-more {
  font-size: .75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.4);
  transition: color var(--trans);
}
.section-more:hover { color: #fff; }

/* vmeta-static pills — no pointer */
.vact-btn.vmeta-static { cursor: default; pointer-events: none; }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,.8);
  cursor: default;
  user-select: none;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--trans);
  user-select: none;
}
.lb-close, .lb-prev, .lb-next { pointer-events: all; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 16px; right: 16px; font-size: .95rem; }
.lb-prev  { left: 16px;  top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }

/* =============================================
   PLAYER + AD SIDEBAR LAYOUT
   ============================================= */

/* Two-column: player | 250px ad sidebar */
.player-ad-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  padding: 10px 10px 0px 10px;
}

/* Player column — fills remaining space */
.player-col {
  flex: 1;
  min-width: 0;               /* prevent flex blowout */
}

/* player-wrap inside the col */
.player-col .player-wrap {
  background: #000;
  width: 100%;
  /* Enforce 16:9 aspect ratio regardless of sidebar */
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* VideoJS must fill the column exactly */
.player-col .video-js {
  width: 100% !important;
  height: 100% !important;
}

/* Ad sidebar — fixed 250px, stacks two 250x250 slots */
.player-ad-sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ad-slot {
  width: 300px;
  height: 250px;
  background: #0d47a1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ad-slot img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Ad label */
.ad-slot::after {
  content: 'AD';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.2);
  pointer-events: none;
}

/* Mobile ad strip — hidden on desktop */
.ad-slot-mobile {
  display: none;
}

/* ─── RESPONSIVE ──────────────────────────── */

/* When sidebar would be too cramped, stack below player */
@media (max-width: 900px) {
  .player-ad-wrap {
    flex-direction: column;
  }

  .player-col {
    width: 100%;
  }

  /* Hide right sidebar on mobile */
  .player-ad-sidebar {
    display: none;
  }

  /* Show mobile ad (250x250) below player */
  .ad-slot-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 8px 0 2px;
  }

  .ad-slot-mobile .ad-slot {
    width: 300px;
    height: 250px;
    margin: 0 auto;
  }
}



/* === HEADER SEARCH BUTTON === */
.hdr-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.hdr-search-btn:hover {
  background: #000;
  transform: scale(1.08);
}

/* === SEARCH OVERLAY === */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 30, 80, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }

.search-overlay-inner {
  width: 100%;
  max-width: 600px;
  padding: 0 16px;
  position: relative;
}

.search-overlay-form {
  display: flex;
  align-items: center;
  background: #1565c0;
  border: 2px solid #1876e2;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  transition: border-color .15s;
}
.search-overlay-form:focus-within {
  border-color: rgba(255,255,255,.7);
}
.search-overlay-icon {
  flex-shrink: 0;
  color: rgba(255,255,255,.5);
  margin-left: 14px;
}
.search-overlay-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 14px 12px;
  letter-spacing: .01em;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,.35); }
.search-overlay-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: color .15s;
  margin-right: 4px;
}
.search-overlay-close:hover { color: #fff; }

/* Dropdown inside overlay */
.search-overlay-inner .search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 16px;
  right: 16px;
  background: #1565c0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  overflow: hidden;
  display: none;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.search-overlay-inner .search-dropdown.open { display: block; }

/* Remove old sidebar search (keep sb-search empty/hidden) */
.sb-search { display: none; }

.hmbxc {    display: flex;
    flex-direction: row;
    align-items: center;    gap: 10px;}


    .vjs-quality-control {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.vjs-quality-trigger {
  background: none;
  border: none;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 10px;
  height: 100%;
  cursor: pointer;
  opacity: .85;
  transition: opacity .15s;
  white-space: nowrap;
}
.vjs-quality-trigger:hover { opacity: 1; }

/* Dropdown */
.vjs-quality-list {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 8, 20, .97);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  list-style: none;
  min-width: 72px;
  overflow: hidden;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,.7);
}
.vjs-quality-list.open { display: block; }

.vjs-quality-item {
  padding: 9px 18px;
  font-size: .78rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  text-align: center;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.vjs-quality-item:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.vjs-quality-item.active {
  background: rgba(25,118,210,.5);
  color: #fff;
}

.video-js .vjs-current-time {display: inline-block;}






.sidebar {background: -moz-linear-gradient(0deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);background: linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.045) 100%);}
.sidebar a {background-color: rgba(0, 0, 0, 0.15);margin-bottom:2px}


.video-card {
    background: rgba(0, 0, 0, 0.25);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.30) 100%);
}






/* =============================================
   TOP NAV DROPDOWN SUBMENUS
   ============================================= */
.tnav-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tnav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.tnav-drop-trigger svg {
  opacity: .6;
  transition: transform .2s;
  flex-shrink: 0;
}
.tnav-drop:hover .tnav-drop-trigger svg,
.tnav-drop.open  .tnav-drop-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Submenu panel */
.tnav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  background: #0d47a1;
  border: 1px solid rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.3);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  z-index: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  animation: submenuIn .15s ease;
}
@keyframes submenuIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tnav-drop:hover .tnav-submenu,
.tnav-drop.open  .tnav-submenu {
  display: block;
}

.tnav-sub-link {
  display: block;
  padding: 9px 16px;
  font-size: .94rem;
  color: rgba(255,255,255,.78);
  transition: background .12s, color .12s, padding-left .12s;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.tnav-sub-link:last-child { border-bottom: none; }
.tnav-sub-link:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  padding-left: 20px;
}

/* "View All" link — distinct style */
.tnav-sub-all {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-top: 1px solid rgba(255,255,255,.1) !important;
  border-bottom: none !important;
}
.tnav-sub-all:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Mobile — submenus stack in sidebar when nav opens */
@media (max-width: 768px) {
  .tnav-drop { display: none; } /* hidden in header on mobile — use sidebar instead */
}


.footer-desc{
    background: rgba(0, 0, 0, 0.16);
    padding: 30px 30px;
}



.footer-row {
background:  rgba(0,0,0,0.25);
      padding: 30px 30px;

}


.body-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: -moz-linear-gradient(45deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
  /* opacity: 0.7; */
}
.search-overlay-submit {
    padding: 14px 22px;
    font-size: 16px;
    color: #f3f2f2;
    background: #193b5f;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}

.search-overlay-submit:hover {
  background: #000;
}

 

 .inner-page {
             padding: 15px 30px;
             font-size:16px;
             max-width: 900px;
             background-color: rgba(0, 0, 0, 0.14);
             margin: 30px auto;
            }


.inner-page p {line-height:24px;margin-bottom:5px}
.inner-page h1,
.inner-page h2,
.inner-page h3 {margin-bottom:10px;margin-top:20px;}