:root {
  --bg-root:          #0a0a0a;
  --bg-primary:       #111;
  --bg-secondary:     #0d0d0d;
  --bg-card:          #191919;
  --bg-surface:       #212121;
  --bg-elevated:      #2c2c2c;
  --bg-nav:           rgba(10,10,10,.97);
  --text-muted:       #5a5a5a;
  --text-base:        #919191;
  --text-light:       #ddd;
  --text-white:       #fff;
  --accent:           #e50914;
  --accent-hover:     #f40612;
  --accent-dim:       rgba(229,9,20,.16);
  --accent-orange:    #ff9800;
  --border:           rgba(255,255,255,.07);
  --border-hover:     rgba(255,255,255,.14);
  --shadow-sm:        0 2px 8px rgba(0,0,0,.5);
  --shadow-card:      0 4px 18px rgba(0,0,0,.55);
  --shadow-card-hov:  0 14px 44px rgba(0,0,0,.8);
  --shadow-nav:       0 4px 24px rgba(0,0,0,.8);
  --radius-xs:        3px;
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
  --radius-pill:      100px;
  --transition:       .2s cubic-bezier(.4,0,.2,1);
  --font:             -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font);
}

body {
  margin: 0;
  padding: 0;
}

body.lusterthemes {
  color: var(--text-base);
  font-size: 14px;
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg-root);
}

a {
  color: var(--text-light);
  text-decoration: none;
  outline: none;
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

textarea, select, input, button {
  outline: none;
  font-family: var(--font);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container::after {
  content: '';
  display: table;
  clear: both;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row::after {
  content: '';
  display: table;
  clear: both;
}

[class*="col-"] {
  position: relative;
  min-height: 1px;
  padding-right: 5px;
  padding-left: 5px;
  width: 100%;
  float: left;
}

.col-xs-1  { width: 8.3333%; }
.col-xs-2  { width: 16.6667%; }
.col-xs-3  { width: 25%; }
.col-xs-4  { width: 33.3333%; }
.col-xs-5  { width: 41.6667%; }
.col-xs-6  { width: 50%; }
.col-xs-7  { width: 58.3333%; }
.col-xs-8  { width: 66.6667%; }
.col-xs-9  { width: 75%; }
.col-xs-10 { width: 83.3333%; }
.col-xs-11 { width: 91.6667%; }
.col-xs-12 { width: 100%; }

@media (min-width: 768px) {
  .col-sm-1  { width: 8.3333%; }
  .col-sm-2  { width: 16.6667%; }
  .col-sm-3  { width: 25%; }
  .col-sm-4  { width: 33.3333%; }
  .col-sm-5  { width: 41.6667%; }
  .col-sm-6  { width: 50%; }
  .col-sm-7  { width: 58.3333%; }
  .col-sm-8  { width: 66.6667%; }
  .col-sm-9  { width: 75%; }
  .col-sm-10 { width: 83.3333%; }
  .col-sm-11 { width: 91.6667%; }
  .col-sm-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-md-1  { width: 8.3333%; }
  .col-md-2  { width: 16.6667%; }
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.3333%; }
  .col-md-5  { width: 41.6667%; }
  .col-md-6  { width: 50%; }
  .col-md-7  { width: 58.3333%; }
  .col-md-8  { width: 66.6667%; }
  .col-md-9  { width: 75%; }
  .col-md-10 { width: 83.3333%; }
  .col-md-11 { width: 91.6667%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 1200px) {
  .col-lg-1  { width: 8.3333%; }
  .col-lg-2  { width: 16.6667%; }
  .col-lg-3  { width: 25%; }
  .col-lg-4  { width: 33.3333%; }
  .col-lg-5  { width: 41.6667%; }
  .col-lg-6  { width: 50%; }
  .col-lg-7  { width: 58.3333%; }
  .col-lg-8  { width: 66.6667%; }
  .col-lg-9  { width: 75%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-11 { width: 91.6667%; }
  .col-lg-12 { width: 100%; }
}

.clearfix::after, .clearfix::before { content: ''; display: table; clear: both; }
.pull-left  { float: left !important; }
.pull-right { float: right !important; }
.text-center  { text-align: center !important; }
.text-left    { text-align: left !important; }
.text-right   { text-align: right !important; }
.text-uppercase { text-transform: uppercase; }
.img-responsive { max-width: 100%; height: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 767px) { .hidden-xs { display: none !important; } }
@media (min-width: 768px) { .hidden-sm { display: none !important; } }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }
::selection { background: var(--accent); color: #fff; text-shadow: none; }

.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: rgba(229,9,20,.4);
  background: rgba(255,255,255,.08);
}

.form-control::placeholder { color: var(--text-muted); }

.form-group { margin-bottom: 12px; }

.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
}

.input-group .form-control {
  flex: 1 1 auto;
  z-index: 0;
  min-width: 0;
}

.input-group-btn {
  display: flex;
  align-items: stretch;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  -webkit-box-shadow: none;
  box-shadow: none;
  background-image: none;
  text-shadow: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  -webkit-user-select: none;
  user-select: none;
}

.btn:focus { outline: none; }

.btn-xs, .btn-group-xs > .btn {
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: var(--radius-xs);
}

.btn-success {
  color: #fff;
  background-color: var(--bg-elevated);
  border-color: var(--border);
}

.btn.active, .btn:active {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn:hover {
  color: #fff;
  background-color: var(--accent);
  border-color: var(--accent);
}

button.btn.btn-like.btn-success.btn-xs:hover,
button.btn.btn-like.btn-success.btn-xs.active,
button.btn.btn-dislikes.btn-success.btn-xs.active {
  background: transparent !important;
  border-color: transparent !important;
}

#wrapper {
  background: transparent;
}

#header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

#headwrap {
  padding: 10px 0;
  margin: 0;
  display: flex;
  align-items: center;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#headwrap .col-md-3.slogan {
  display: flex;
  align-items: center;
  padding-left: 0;
}

#headwrap .dp-search-form {
  margin-left: auto;
}

#headwrap .form-group {
  margin: 0;
}

#header > .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.header-nav { margin-right: 0; position: relative; }
.header-nav img { max-width: 100%; margin: 8px 0; }

#header .site-title {
  margin: 0;
}

#header .site-title a {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
}

.logo-tld {
  color: var(--accent);
}

@media (max-width: 767px) {
  #headwrap {
    padding: 12px 0;
    justify-content: center;
  }
  #headwrap .col-md-3.slogan {
    width: 100%;
    justify-content: center;
    padding: 0;
  }
  #header .site-title {
    text-align: center;
    width: 100%;
  }
  #header .site-title a {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

.dp-search-form .form-control {
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill) !important;
  padding: 0 14px 0 44px;
  line-height: 42px;
  background: rgba(255,255,255,.06) url(../images/search.svg) 14px 50% / 20px no-repeat;
  transition: border-color var(--transition), background var(--transition);
}

.dp-search-form .form-control:focus {
  border-color: rgba(229,9,20,.45);
  background-color: rgba(255,255,255,.09);
}

.btn-search {
  height: 42px;
  background: var(--accent);
  border: none;
  color: #fff;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0 !important;
  padding: 0 20px;
  line-height: 42px;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-search:hover, .btn-search:focus, .btn-search:active {
  outline: none;
  background: var(--accent-hover);
  color: #fff;
}

#search-form-pc { margin: 4px 0; }

#mobile-search-form.dp-search-form { margin-top: 8px; }
#mobile-search-form.dp-search-form .form-group { margin-bottom: 6px; }
#mobile-search-form.dp-search-form input { background-color: rgba(255,255,255,.04); }

.navbar-container {
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: sticky;
  top: 0;
}

.navbar-container .container { padding: 0; }

.hot-bar {
  background: var(--bg-root);
  padding: 14px 0;
}

.hot-bar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hot-bar-label {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.hot-bar-label::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, #ff4d4d, var(--accent));
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(229,9,20,.5);
}

.hot-bar-slider {
  position: relative;
}

.hot-bar-viewport {
  overflow: hidden;
  position: relative;
}

.hot-bar-track {
  display: flex;
  gap: 6px;
  width: max-content;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.hot-bar-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, opacity .2s;
}

.hot-bar-btn-prev { left: 6px; }
.hot-bar-btn-next { right: 6px; }

.hot-bar-btn:hover { background: rgba(0,0,0,.85); }

.hot-bar-item {
  flex-shrink: 0;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .28s ease;
  position: relative;
}

.hot-bar-item:hover { transform: translateY(-4px); }

.hot-bar-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-md);
}

.hot-bar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.hot-bar-item:hover .hot-bar-thumb img { transform: scale(1.07); }

.hot-bar-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  border-radius: var(--radius-md);
}

.hot-bar-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.hot-bar-play svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}

.hot-bar-item:hover .hot-bar-play {
  animation: play-pop .35s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes play-pop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.hot-bar-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  color: #fff;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.5;
}

.hot-bar-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 11.5px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px 7px;
  z-index: 1;
  line-height: 1.4;
}

.navbar {
  position: relative;
  min-height: 48px;
  margin: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: stretch;
}

.navbar-header { display: none; }
.navbar-toggle { display: none; }
.navbar-toggle .icon-bar { background-color: #ddd; }

#dp { display: flex !important; flex: 1; }

.navbar-collapse {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.nav, .navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.navbar-left { margin-right: auto; }

.main-navigation { border: none; background: transparent; }

.main-navigation .navbar-nav > li > a {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  padding: 14px 12px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.main-navigation .navbar-nav > li > a .menu-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 5px;
  flex-shrink: 0;
}

.main-navigation .navbar-nav > li > a .menu-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  vertical-align: middle;
}

.main-navigation .navbar-nav > li > a:hover,
.main-navigation .navbar-nav > li > a:focus {
  color: #fff;
  background: rgba(255,255,255,.05);
}

.main-navigation .navbar-nav > .active > a,
.main-navigation .navbar-nav > .active > a:hover,
.main-navigation .navbar-nav > .active > a:focus {
  color: #fff;
  background: var(--accent-dim);
}

.main-navigation .navbar-nav > .active > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

#search-form { display: none !important; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  display: none;
  min-width: 180px;
  padding: 6px;
  background: #1c1c1c;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,.7);
  list-style: none;
}

.open > .dropdown-menu { display: block; }

.dropdown-menu > li > a {
  display: block;
  padding: 9px 12px;
  color: var(--text-light);
  font-size: 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #fff;
  background: rgba(255,255,255,.08);
}

@media (max-width: 767px) {
  .navbar { min-height: 0; }

  .nav, .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: var(--bg-secondary);
  }

  .navbar-nav li {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-pill);
    margin: 0;
    transition: background var(--transition), border-color var(--transition);
  }

  .main-navigation .navbar-nav > li > a {
    padding: 6px 14px;
    font-size: 12.5px;
    color: rgba(255,255,255,.7);
  }

  .main-navigation .navbar-nav > li:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.14);
  }

  .main-navigation .navbar-nav > .active {
    background: var(--accent-dim);
    border-color: rgba(229,9,20,.4);
  }

  .main-navigation .navbar-nav > .active > a,
  .main-navigation .navbar-nav > .active > a:hover {
    color: #fff !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .main-navigation .navbar-nav > .active > a::after { display: none; }

  #search-form { display: block !important; padding: 0 12px 10px; }

  #header { background: rgba(8,8,8,.99); }
  .navbar-container { background: rgba(10,10,10,.99); }
}

#main-contents { position: relative; }

.dp-panel-filter {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.top-filter-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.top-filter-btn {
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.top-filter-btn:hover { color: #fff; background: rgba(255,255,255,.12); }

.top-filter-btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.dp_box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 10px -3px 24px;
}

.col-lg-3.col-md-3.col-sm-3.col-xs-6.thumb,
.col-md-3.col-sm-6.col-xs-6.thumb {
  padding: 3px;
  float: none;
}

.dp_box .grid-item { padding: 3px; float: none; }

@media (max-width: 767px) {
  .col-lg-3.col-md-3.col-sm-3.col-xs-6.thumb,
  .col-md-3.col-sm-6.col-xs-6.thumb,
  .dp_box .grid-item {
    padding: 3px;
  }

  .dp_box { margin: 6px -3px 16px; }
}

.dp-item {
  position: relative;
  line-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}

.dp-item:hover {
  transform: translateY(-4px);
  z-index: 2;
}

.dp-item span { line-height: 1.6; }

.dp-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  aspect-ratio: 16 / 11;
  width: 100%;
}

.dp-thumb figure { display: none; }

.dp-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

img.lazy-img {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-secondary) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: lazy-shimmer 1.4s infinite;
}

@keyframes lazy-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

img.lazy-loaded {
  animation: lazy-fade .3s ease;
  background: none;
}

@keyframes lazy-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.dp-item:hover .dp-thumb img { transform: scale(1.08); }

.card-views {
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 600;
  color: #c8ded0;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: var(--radius-pill);
  z-index: 4;
  line-height: 1.5;
  backdrop-filter: blur(6px);
}

.grid-item .status {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  z-index: 4;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
  pointer-events: none;
  border-radius: var(--radius-md);
}

.card-title-overlay {
  padding: 20px 10px 10px;
  background: linear-gradient(to top, rgb(42 42 42 / 96%) 0%, rgb(0 0 0 / 28%) 55%, transparent 100%);
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--text-white);
}

.card-title {
  margin: 0;
  padding: 7px 10px 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  text-align: center;
}

.icon_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.22);
  opacity: 0;
  transition: opacity .22s ease;
  z-index: 5;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.dp-item:hover .icon_overlay { opacity: 1; }

.play-btn {
  width: 50px;
  height: 50px;
  background: rgba(229,9,20,.35);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.8);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s ease;
  box-shadow: 0 4px 20px rgba(229,9,20,.3), inset 0 1px 0 rgba(255,255,255,.15);
}

.dp-item:hover .play-btn { transform: scale(1); }

.play-btn i {
  color: #fff !important;
  font-size: 16px;
  margin-left: 3px;
  -webkit-text-fill-color: #fff;
}

.dp-post-title-box { display: none; }

.section-bar {
  position: relative;
  margin: 20px 0 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.section-bar::before,
.section-bar::after { display: none; }

.section-more { margin-left: auto; }

.section-title {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: none;
  line-height: 1;
  color: var(--text-white);
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, #ff4d4d, var(--accent));
  border-radius: var(--radius-pill);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(229,9,20,.5);
}

.section-title span {
  float: none;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  padding: 0;
  color: var(--text-white);
  position: static;
}

.section-title span::before,
.section-title span::after { display: none !important; }

.section-title a { color: var(--text-white); }

.section-more {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition);
}

.section-more:hover { color: var(--accent-hover); }

h1.entry-title {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  margin: 0 0 0 2px;
  line-height: 1.5;
}

.entry-title a:hover { color: var(--accent); }

.popular-post {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.popular-post .item {
  clear: both;
  margin: 6px 0;
  padding-right: 10px;
  line-height: 1.2;
  list-style-type: none;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.popular-post .item:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.13);
  transform: translateX(3px);
}

.popular-post .item:hover h3.title { color: var(--accent); }
.popular-post .item:first-child { margin-top: 0; }
.popular-post .item:last-child { border-bottom: 1px solid var(--border); }

.popular-post .viewsCount { font-size: 12px; margin-top: 4px; }
.popular-post a { color: var(--text-muted); }

.popular-post .item-link {
  display: block;
  overflow: hidden;
  position: relative;
  margin-right: 12px;
  padding: 0;
  float: left;
}

.popular-post .post-thumb {
  float: left;
  height: 86px;
  transition: transform .3s ease;
}

.popular-post .item:hover img { transform: scale(1.06); }

.popular-post .is_trailer {
  background: rgba(71,132,19,.9);
  padding: 2px 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 var(--radius-sm);
}

.popular-post h3.title {
  color: var(--text-light);
  cursor: pointer;
  margin: 10px 0 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  transition: color var(--transition);
}

.popular-post .stat {
  color: var(--text-base);
  display: block;
  font-size: .8em;
  height: 1.4em;
  line-height: 1.4em;
  overflow: hidden;
}

.popular-post .info {
  color: var(--text-base);
  display: block;
  font-size: .8em;
  height: 1.4em;
  line-height: 1.4em;
}

.popular-post .episode {
  display: inline-block;
  margin: 6px 0 0;
  padding: 2px 8px;
  background: rgba(30,80,130,.35);
  border: 1px solid rgba(100,180,220,.12);
  border-radius: var(--radius-sm);
  color: #7ec8e8;
  font-size: 11px;
  font-weight: 600;
}

.popular-post .original_title {
  font-size: 12px;
  margin: 0;
  padding-right: 5px;
  color: var(--text-base);
}

.page-numbers {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.page-numbers li {
  display: inline-flex;
  line-height: 1;
  margin: 0;
}

.page-numbers li a,
.page-numbers li span.current,
.page-numbers li span.dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.page-numbers li a {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text-light);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.page-numbers li a:hover {
  background: var(--accent-dim);
  border-color: rgba(229,9,20,.35);
  color: #fff;
  font-weight: 600;
}

.page-numbers li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.page-numbers li span { color: var(--text-muted); }
.page-numbers li span:hover { cursor: not-allowed; }

.tag-row-keywords a::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  opacity: .45;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/%3E%3Ccircle cx='7' cy='7' r='1' fill='white' stroke='none'/%3E%3C/svg%3E");
}

.tag-row-categories a::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  opacity: .45;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.the_tag_list a {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  margin: 2px 2px 2px 0;
  color: rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.the_tag_list a:hover {
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
}

.mb-screen {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0 0 10px;
}

.videoWrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000;
}

@media (min-width: 768px) {
  .ratio-desktop { aspect-ratio: 100 / 41 !important; }
  .ratio-desktop .jw-aspect.jw-reset { padding-top: 41% !important; }
}

.videoWrapper iframe,
.videoWrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 0 6px;
}

.wrap-content .videoWrapper {
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 0;
}

.btn-server,
#video-actions {
  display: inline-flex !important;
  align-items: center;
  height: 30px;
}

.btn-server {
  gap: 5px;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: #d0d0d0 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 0 12px !important;
  margin: 0 !important;
  line-height: 1 !important;
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
  cursor: pointer;
}

.btn-server:hover {
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
  border-color: var(--border-hover) !important;
}

.btn-server.active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

#video-actions {
  margin-left: auto;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

#video-actions .btn-like,
#video-actions .btn-dislikes {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: #e0e0e0 !important;
  font-size: 13px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  height: 30px;
  line-height: 1 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: background var(--transition), color var(--transition) !important;
}

#video-actions .btn-like:focus,
#video-actions .btn-dislikes:focus { outline: none !important; box-shadow: none !important; }

#video-actions .btn-like {
  border-right: 1px solid rgba(255,255,255,.1) !important;
}

.btn-view {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  height: 30px;
  padding: 0 12px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: #ccc !important;
  font-size: 12px !important;
  line-height: 1 !important;
  margin: 0 !important;
  cursor: default;
  pointer-events: none;
  box-shadow: none !important;
}

#video-actions .btn-like:hover,
#video-actions .btn-dislikes:hover {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
}

#video-actions .btn-like.active,
#video-actions .btn-like:active {
  background: rgba(79,195,247,.12) !important;
  color: #4fc3f7 !important;
}

#video-actions .btn-dislikes.active,
#video-actions .btn-dislikes:active {
  background: rgba(239,154,154,.12) !important;
  color: #ef9a9a !important;
}

#video-actions .btn-like i,
#video-actions .btn-dislikes i {
  font-size: 14px;
}

.dp-panel-filter .panel-heading {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 15px;
  background: rgba(255,255,255,.02);
}

.htmlwrap {
  margin-top: 1px;
  font-size: 14px;
  color: var(--text-base);
  line-height: 1.7;
  width: 100%
}

.htmlwrap .movie-desc {
  margin: 0 0 6px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
}

.the_tag_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
}

.tag-row-items {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.dp-entry-box .item-content {
  max-height: 90px;
  overflow: hidden;
  transition: max-height .3s ease;
}

.dp-entry-box .item-info { margin-bottom: 10px; font-size: 11px; }
.dp-entry-box .item-content, .content-single img { max-width: 100%; }

@media (max-width: 767px) {
  .dp-entry-box .item-content { height: 85px; }
  .dp-entry-box .item-content.toggled { height: auto; }
}

.dp-entry-box .item-content.toggled { max-height: none; }

.entry-content h3 { font-size: 17px; margin-top: 0; }
.entry-content h2 { font-size: 17px; font-family: inherit; line-height: 26px; }
.entry-content img { margin: 14px auto; border-radius: var(--radius-md); height: inherit !important; }

a:hover { transition: color var(--transition); }

.container a {
  color: var(--text-light);
  font-size: 13px;
  font-family: var(--font);
}

.container a:hover { color: var(--accent); }

#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

footer { background-color: var(--bg-secondary) !important; }

.footer-minimal {
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo-link {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-logo-link:hover { color: var(--accent) !important; }

.footer-desc,
.footer-desc a {
  color: #8e8181;
  font-size: 12.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

.footer-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
}

.footer-pills li { margin: 0; }

.footer-pills a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: #a8a3a3;
  font-size: 12.5px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-pills a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}

footer .copyright {
  margin-top: 4px;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 16px;
  width: 100%;
  max-width: 720px;
}

.copyright a { color: inherit; text-decoration: none; }
.copyright a:hover { color: var(--accent); }

@media (max-width: 767px) {
  .footer-minimal { padding: 24px 12px 18px; gap: 14px; }
  .footer-logo-link { font-size: 22px; }
  .footer-pills a { padding: 5px 11px; font-size: 12px; }
}

/* Responsive visibility */
.hide-mobile  { display: block !important; }
.hide-desktop { display: none !important; }
@media (max-width: 767px) {
  .hide-mobile  { display: none !important; }
  .hide-desktop { display: block !important; }
}

/* Ads fade-in â€” preload-wrap excluded (injects immediately, no fade needed) */
.lazy-ad:not(#preload-wrap) { opacity: 0; transition: opacity 3s ease; }
.lazy-ad:not(#preload-wrap)[data-ad-loaded] { opacity: 1; }

/* Ads containers */
.ads-header,
.ads-footer,
.under-player {
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.ads-header  { margin: 6px 0 10px; line-height: 0; }
.ads-footer  { margin: 10px 0 6px; line-height: 0; }
.under-player { margin: 10px 0; line-height: normal; }
.lazy-ad > div { line-height: normal; }

/* Catfish fixed bar */
.banner-catfish-bottomm,
.banner-catfish-bottomd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  text-align: center;
  line-height: 0;
  background: rgba(0,0,0,0.8);
  box-shadow: 0 -2px 8px rgba(0,0,0,.35);
  animation: catfish-slide-up .3s ease;
}

@keyframes catfish-slide-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.catfish-bottom-close {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: background var(--transition);
  z-index: 1;
}

.catfish-bottom-close:hover { background: var(--accent); }

@media (max-width: 767px) {
  .catfish-bottom-close { width: 26px; height: 26px; font-size: 13px; border-width: 1px; }
}

/* Preload overlay */
.banner-preload {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.75);
}

.banner-preload-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-preload-container a {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.banner-preload-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .banner-preload-container { width: 300px; height: 270px; }
}

.banner-preload-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,.8);
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

@keyframes skeleton-shine {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-surface) 50%, var(--bg-card) 75%);
  background-size: 1200px 100%;
  animation: skeleton-shine 1.5s infinite linear;
  border-radius: var(--radius-sm);
}

@-moz-document url-prefix() {
  .card-title { max-height: 36px; overflow: hidden; }
}

/* Load more */
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-load-more:hover {
  background: var(--accent-dim);
  border-color: rgba(229,9,20,.35);
  color: #fff;
}

.btn-load-more:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* 404 */
.page-404 {
  text-align: center;
  padding: 80px 24px;
}

.code-404 {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #e50914, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.title-404 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 10px;
}

.uri-404 {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  word-break: break-all;
}

.uri-404 span { color: var(--text-base); }

.actions-404 {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-404-primary,
.btn-404-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}

.btn-404-primary:hover,
.btn-404-secondary:hover { opacity: .8; }

.btn-404-primary {
  background: var(--accent);
  color: #fff;
}

.btn-404-secondary {
  background: rgba(255,255,255,.06);
  color: var(--text-light);
  border: 1px solid var(--border);
}
