@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/nunito-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/nunito-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
--radius-main: 14px;
  --radius-pill: calc(var(--radius-main) * 0.5);

  --radius-tight: calc(var(--radius-main) * 0.3);

  --cta-green: linear-gradient(90deg, #1e7f3f, #22a84a);
}

:root {
  --thumb-edge: clamp(3px, 0.5vw, 6px);
  --thumb-edge-x: clamp(4px, 0.6vw, 5px);
  --thumb-edge-y: clamp(3px, 0.5vw, 5px);
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

.model {
  color: silver;
  padding: 5px 0 5px;
}

\ q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 9999;
  padding: clamp(10px, 1.5vw, 12px);
  padding-right: 44px;
  background: linear-gradient(270deg, #14532d, #16a34a, #14532d);
  background-size: 200% 200%;
  animation: navbarFlow 6s ease infinite;
  border-bottom: 2px solid #22c55e;
  text-align: center;
  overflow: visible;

}

#navbar {
  position: fixed;
  inset: 0 auto auto 0;

}

#navbar-close {

}

@keyframes navbarFlow {
0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

#navbar * {
  float: none !important;
  margin: 0;
  padding: 0;
  text-align: center;

  align-items: center;
}

#navbar .navbar-text {
  display: block;
  width: 100%;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  font-size: clamp(14px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.3px;
  font-weight: 800;
  color: #fff;
}
#navbar .navbar-text {
  transition: font-size 0.15s ease;
}
#navbar:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

#navbar {
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.25);
}
#navbar-close {

}
#navbar a {
  display: block;
  width: 100%;
  text-decoration: none;
}

#navbar .navbar-text {
  transform: translateX(-1%);
}

#navbar-close {
  position: fixed;
  right: 12px;
  top: 6px;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: white;
  cursor: pointer;
  opacity: 1;
  line-height: 1;
  padding-bottom: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease;
  text-align: center;
}

#navbar-close:hover {
  opacity: 0.7;
}

body {
  width: auto;
  background: black;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;

  line-height: 1.4;
  color: #555555;
  overflow-x: visible;
}

html,
body {
  height: 100%;
}

#wrapper {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 25px;
}

h2 {
  font-size: 28px;
  text-transform: normal;
}

.title {
  line-height: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
}

a:link,
a:visited {
  color: #888888;
}

a:hover {
  color: #808080;
}

abbr,
acronym {
  border-bottom: 1px dotted;
  cursor: help;
}

em {
  font-style: italic;
}

ol,
ul {
  margin: 0;
}

ol li {
  list-style: decimal outside;
}

ul li {
  list-style: none;
}

th,
td {
  border: 1px solid;
  padding: 8px;
}

th {
  font-weight: bold;
  text-align: center;
}

caption {
  margin-bottom: 8px;
  text-align: center;
}

a:link,
a:visited {
  text-decoration: none;
}

:focus {
  outline: 0;
}
#header {
  color: #c2c2c2;
  flex: 0 1 auto;
  float: right;
  text-align: justify;
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1.05rem);
  line-height: 1.3;
  font-weight: 400;
  text-shadow: 1px 1px 1px #111;
  width: 100%;
}
@media (orientation: landscape) and (max-height: 700px) {
#header {
    font-size: 0.6em;
  }
}

body.single #header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(0,0,0,0.25);

  backdrop-filter: blur(4px);

  transition: all 0.3s ease;
}
body.single #header-inside {
  display: flex;
  align-items: center;
  justify-content: space-between;

  flex-wrap: wrap;
  row-gap: 8px;

  padding: 10px clamp(16px, 3vw, 20px);
}

@media (max-width: 768px) {

  body.single #header-inside {
    padding-block: 5px;
  }
}

@media (max-width: 1024px) {

  body.single #logo_home.logo-swappable,
  #logo_home.logo-swappable {

    width: clamp(30px, 8vw, 34px);
    height: clamp(30px, 8vw, 34px);
    max-height: none;
    border-radius: 50%;

    object-fit: contain;
    padding: 3px;
    box-sizing: border-box;
    background: #111;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;

    margin-top: 0;
  }
}

body.single #header-inside > a:first-child {
  flex: 0 1 auto;
  min-width: 0;
}
body.single #header-inside > a:first-child #logo_home {
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

body.single .single-header-promo {
  flex: 0 0 auto;
  max-width: 100%;
}
body.single #header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
body.single #header {
  backdrop-filter: blur(6px);
}
body.single #content {
  margin-top: -30px;
}
body.single .entry video {
  display: block;
  margin-top: 0;
}
body.single .entry iframe,
body.single .entry video {
  position: relative;
  z-index: 1;
}
body.single .entry {
  margin-top: 6px;
}
body.single .entry video,
body.single .entry iframe {
  margin-top: 0;
}
body.single #logo_home {
  height: 24px;
  width: auto;
  display: block;
}
body.single #content,
body.single .content,
body.single .wrap,
body.single .container {
  padding-top: 0 !important;
}
body.single #header::after {
  display: none;
}

body.single #logo_home {
  max-height: clamp(22px, 3vw, 32px);
  margin: 0;
}

body.single .entry video,
body.single .entry iframe {
  width: 100%;

  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: clamp(8px, 1.5vw, 14px);
  display: block;
}

body.single .video-info {
  margin-top: 10px;
}

body.single .video-info h2 {
    font-size: clamp(18px, 2.2vw, 26px);
  color: #fff;
  line-height: 1.2;
}
body.single .cta-button {
  margin-top: 12px;
}

body.single .video-meta {
  margin-top: clamp(4px, 1vw, 8px);
  font-size: clamp(13px, 1.2vw, 16px);
  color: #bbb;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  row-gap: 4px;
  column-gap: clamp(4px, 1.4vw, 12px);
}

.meta-stars {
  flex-shrink: 1;
  min-width: 0;
}
body.single .video-meta span {
  display: inline;
}
.meta-item,
.video-views {
  display: inline-flex;
  align-items: center;
}
body.single .video-meta .meta-item {
  display: inline-flex !important;
}.video-views,
.meta-time {
  flex-shrink: 0;
}

body.single .meta-stars a {
  color: #ddd !important;
  text-decoration: none;
}

body.single .meta-stars a:hover {
  color: #fff !important;
}

body.single .video-views {
  color: #fff;
  font-weight: 600;
  font-size: clamp(14px, 1.3vw, 17px);
}
body.single .video-meta a {
  color: #bbb !important;
  text-decoration: none;
}

body.single .video-meta a:hover {
  color: #fff !important;
}

body.single .video-description-wrapper {
  margin-top: 16px;
}
body.single .video-description {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.04);
}

body.single .video-description {
  position: relative;

  padding: clamp(14px, 2vw, 20px);

  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-main);

  color: #d1d5db;
  font-family: "Nunito Sans", sans-serif;

  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.7;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
}

@media (max-width: 768px) {
body.single .video-description {
    -webkit-line-clamp: 2;
  }
}

body.single .video-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;

  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0),
    rgba(17,17,17,1)
  );

  pointer-events: none;
}

body.single .video-description.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

body.single .video-description.expanded::after {
  display: none;
}

body.single .desc-toggle {
  display: inline-block;

  margin-top: 6px;
  margin-left: clamp(14px, 2vw, 20px);

  background: none;
  border: none;

  font-family: "Nunito Sans", sans-serif !important;

  color: #9ca3af;
  font-size: clamp(13px, 1vw, 14px);
  font-weight: 600;

  cursor: pointer;
}
.video-description {
  transition: border 0.2s ease;
}

.video-description:hover {
  border-color: rgba(255,255,255,0.12);
}
body.single .desc-toggle:hover {
  color: #fff;
}
body.single .video-content-block {
  margin-top: 10px;
  padding-bottom: 6px;

}
.video-description-wrapper {
  margin-top: 18px;

}

.desc-toggle {
  margin-top: 10px;
}#header {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
body.single #header {
  background-image: none !important;
}#header-inside {
  max-width: 1400px;
  display: block;
  align-items: flex-start;
  gap: 16px;
  margin: 0 auto;
  padding: 10px clamp(16px, 3vw, 20px);
}

#header-inside p {
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}#logo_home {
  float: left;
  max-height: 2em;
  height: auto;
  width: auto;
  margin-right: clamp(5px, 1.5vw, 10px);
  margin-top: 2px;
}

@media (orientation: landscape) and (max-height: 700px) {
#logo_home {
    max-height: 3em;

    margin-right: clamp(4px, 1vw, 8px);

    margin-top: 0;

  }
}
#title {
  font-size: 21px;
  font-weight: 800;
  line-height: 150%;
  color: silver;
  margin-bottom: 5px;
}

#title span {
  vertical-align: middle !important;
  color: silver;
}

#main ul li {
  list-style: none;
  margin-left: 4px;
}

#content {
  background: black;
  width: 100%;
  display: block;
  flex: 1 1 auto;
  margin-bottom: 20px;
}

#content-inside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 20px);
}

#main {
  margin-top: clamp(5px, 2vw, 10px);
}

#main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}

#main>*:only-child {
  width: 100%;
  max-width: clamp(270px, 60vw, 500px);
  margin-left: 0;

  margin-right: auto;
}

@media (max-width: 600px) {
#main>*:only-child {
    max-width: 100%;

  }
}

body.single .video-description.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
  max-height: none;
}

body.single .video-description.expanded::after {
  display: none;
}
body.single .video-description-wrapper {
  position: relative;
  z-index: 1;
}

body.single .desc-toggle {
  position: relative;
  z-index: 2;
}
body.single .video-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
   margin-bottom: clamp(40px, 4vw, 60px);
  overflow: hidden;
  max-height: calc(1.7em * 2);
}

#breadcrumbs {
  background: black;
  color: #e6e6e6;
  font-size: 14px;
  width: 100%;

  float: left;
  margin: 10px 0 5px 0;
  border-radius: var(--radius-tight);
}

#breadcrumbs h2 {
  line-height: 105%;
}

#breadcrumbs p {
  float: left;
  margin: 0;
  padding: 9px 10px 0 10px;
}

#breadcrumbs a {
  color: white;
}

#breadcrumbs a:hover {
  color: #b0b0b0;
}

#breadcrumbs strong {
  color: white;
}

.multiple {
  display: flex;
  flex-direction: column;
}.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  margin: 30px auto;
  max-width: 1400px;
}
.wp-pagenavi {
  max-height: 120px;
  overflow: hidden;
}
.wp-pagenavi .current {
  filter: brightness(2);
  border-color: #333;
}
.wp-pagenavi a:hover {
  filter: brightness(2);
  color: #fff;
}

@media (max-width: 600px) {
.wp-pagenavi a,
  .wp-pagenavi span {

    font-size: 11px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;

  padding: 8px 12px;
  font-size: clamp(13px, 1vw, 16px);

  color: #ddd;
  background: #111;
  border: 1px solid #333;
  border-radius: var(--radius-tight);

  text-decoration: none;
  transition: all 0.2s ease;
}

.multiple h2 a {
  color: white;
}

.multiple p {
  margin: 0;
  padding: 0 0 0 4px;
}

.post-image {
  float: none;
}

.thumbz {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-main);
  transition: transform 0.24s ease;
  transform: translateZ(0) scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
}

@media (hover: hover) {
  .multiple:hover .thumbz {
    transform: translateZ(0) scale(1.025);
  }
}

.thumbz.is-loading,
.thumbz.is-previewing {
  transform: translateZ(0) scale(1.025);
}

.thumbz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1.001);
  transition: filter 0.35s ease;
  backface-visibility: hidden;
}

@media (hover: hover) {
  .multiple:hover .thumbz img {
    filter: brightness(1.15);
  }
}

.thumbz img,
.thumb-video,
.thumb-img {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.thumbz::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 25%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0) 70%);

  pointer-events: none;
}
@media (hover: hover) {
  .multiple:hover .thumbz::after {
    opacity: 0;
  }
}

.thumbz::after {
  transition: opacity 0.25s ease;
}
.thumbz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.instant {
  display: none;
  z-index: -100;
}

.instant-view {
  text-align: center;
}#starrings {
text-shadow:
  -1px -1px 1px rgba(0,0,0,0.6),
   1px -1px 1px rgba(0,0,0,0.6),
  -1px  1px 1px rgba(0,0,0,0.6),
   1px  1px 1px rgba(0,0,0,0.6);
  font-size: clamp(0.8rem, 0.4vw + 0.5rem, 0.85rem);
  padding: 5px;
  position: absolute;
  right: 1px;
  text-align: right;
  top: -2px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  max-width: 85%;
}
#starrings {
  position: absolute;
  z-index: 3;
}
#starrings a {font-weight: 600;   color: rgba(255, 255, 255, 0.85) !important;}#starrings img {
  border: 0;
}

#starrings img:hover {
  border: 0;
}

#time {
  max-width: 10px;
  height: auto;
  margin: 0;
}#views {
  height: auto;
  margin-left: 5px;
  max-width: 11px;
  vertical-align: -1px;
}#star {
  max-width: 10px;
  height: auto;
  margin-left: 4px;
}#category {
  max-width: 14px;
  max-height: auto;
  margin-left: 4px;
  vertical-align: -1px;
}

.full {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.entry p {
  color: grey;
  clear: both;
  font-size: 105%;
  line-height: 125%;
  text-align: justify;
}

.entry h1 {
  padding: 15px;
}

.entry h2 {
  color: silver;
  line-height: 120%;
}

.entry h3 {
  color: silver;
  padding-bottom: 20px;
  font-size: 140%;
  line-height: 150%;
}

.entry p strong {
  color: silver;
}

.entry ul li {
  list-style: inside none disc;
  margin-left: 5px;
  padding: 5px;
  color: grey;
  line-height: 120%;
}

.entry li {
  color: silver;
  font-size: 115%;
  text-align: left;
  text-decoration: none;
  list-style: inside none disc;
  padding: 5px;
}

.entry blockquote {
  color: grey;
  font-size: 130%;
  line-height: 120%;
  padding: 10px;
}

.entry blockquote img {
  padding-left: 20px;
}

.widgettitle {
  color: silver;
  padding: 5px;
}

.single {
  width: 100%;
}

.entry {
  display: block;
}.entry ul {
  margin: 0 0 15px 0;
}

.entry ol {}

p img {
  padding: 0;
  color: #666666;
  max-width: 100%;
}#video {
  width: 100%;
  height: auto;
  display: block;
}

#video-inside {
  width: 960px;
  margin: 0px auto;
  padding: 20px 0 20px 0;
  text-align: center;
}

.entry video {
  width: 100%;
  height: auto;
  display: block;

  border-radius: var(--radius-main);
}

.entry {
  margin-top: 15px;
}
#footer {
  color: #c2c2c2;
  background: #000;
  flex: 0 0 auto;
  font-size: clamp(0.85rem, 0.5vw + 0.7rem, 1.05rem);
  line-height: 1.2;
}

#footer {
  flex-shrink: 0;
}

#footer ul li {
  display: inline;
}

#footer-inside {
  max-width: 1400px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  display: box;
}

#footer-inside {
  padding: 10px;
}

#footer-inside p {
  font-weight: 300;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 black;
  text-align: center;
  color: ghostwhite;
  text-align: justify;
}

#footer a {
  color: #ffffff;
  font-weight: 600;
}

#footer a:hover {
  color: #cccccc;
}

video {
  object-fit: cover;
}

.entry {
  display: block !important;
}

.entry p {
  clear: both;
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.entry p {
  flex: 1;
  margin: 0;
}
.footer-logo {
  text-align: center;
  margin-bottom: 10px;
}

.footer-logo img {
  width: clamp(60px, 12vw, 100px);
  height: auto;
  opacity: 0.9;
}

.footer-logo img:hover {
  opacity: 1;
}

#breadcrumbs,
#breadcrumbs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px 0;
}

#breadcrumbs h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  color: white;
}.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cta-button {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1.15;
  margin: 14px 0;
  padding: 22px clamp(18px, 3vw, 32px);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: 0.3px;

  color: #fff !important;

  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
  padding: clamp(14px, 2vw, 24px) clamp(16px, 3vw, 32px);
  background: var(--cta-green);
  border: 2px solid #22c55e;
  border-radius: var(--radius-main);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-button,
.cta-button:link,
.cta-button:visited {
  color: #fff !important;
}
.cta-button .cta-accent {
  white-space: nowrap;
  color: #facc15 !important;
  font-weight: 900;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

body.single .cta-button .cta-accent {
  white-space: nowrap;
  color: #facc15 !important;
  font-weight: 900;
}
.icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  color: #aaa;
  display: inline-block;
}.meta-item strong {
  margin-right: 4px;

}

.meta-stars a+a {
  margin-left: 4px;
}

.meta-stars a:first-child {
  margin-left: 0;
}.meta-time .icon {
  transform: scale(0.9) translateY(-1px);
}

.meta-stars .icon {
  transform: scale(0.9) translateY(-1px);
}

.meta-views .icon {
  transform: scale(1) translateY(-1px);
}@media (max-width: 600px) {
.wp-pagenavi {
    flex-wrap: wrap;

    overflow-x: hidden;

    justify-content: center;
  }

  .wp-pagenavi .pages {
    display: none;
  }
}

.wp-pagenavi .pages {
  display: none;
}

#header {
  position: relative;
  overflow: hidden;
}#header-inside {
  position: relative;
  z-index: 2;
}

@keyframes valueColor {
0% {
    color: #facc15;
  }

  100% {
    color: #ffffff;
  }
}

.promo-value-wrap {
  display: inline;
  white-space: nowrap;
  width: auto;
}

.promo-value {
  display: inline;
  color: #facc15;
  font-weight: 900;
  text-shadow:
    0 0 6px rgba(250, 204, 21, 0.5),
    0 0 10px rgba(250, 204, 21, 0.3);
  white-space: nowrap;
}
.ad-item {
  opacity: 0.95;
}

.ad-item h2 span {
  color: #facc15;
}
.ad-item {
  position: relative;
}

.ad-item .thumbz::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.4),
    transparent
  );
}.meta-ad {
  color: #facc15;
  font-weight: 700;
  filter: brightness(1.1);
  font-size: 120%;
}
.meta-ad .icon {
  color: #facc15;
  transform: scale(0.95) translateY(-1px);
}

.ad-item .thumbz img {
  transition: opacity 0.4s ease;
}
.ad-item .ad-img {
  opacity: 0;
}
.ad-img.active {
  opacity: 1;
}
.grid-breaker {
  grid-column: 1 / -1;
}body.single .desc-toggle {
  font-family: "Nunito Sans", sans-serif !important;
}

.thumbz {
  position: relative;
}

.thumb-img,
.thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.thumbz::after,
#starrings,

.multiple:not(.external-card):not(.model-card):hover .thumb-video {
  opacity: 1;
}

.multiple:not(.external-card):not(.model-card):hover .thumb-img {
  opacity: 0;
}
.thumb-info {
  padding: 6px 2px 0;
}

.starrings-below {
  font-size: 13px;
  margin-bottom: 4px;
}
.thumbz #starrings,
.thumbz .entry-multiple {
  display: none !important;
}
.thumb-title {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.4em;
  color: #ccc;
  transition: color 0.2s ease;
}
.multiple:hover .thumb-title {
  color: #fff;
}
.thumb-title a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.multiple {
  cursor: pointer;
}
.thumb-title a:hover {
  opacity: 0.8;
}
.meta-row {
  font-size: clamp(13px, 1.1vw, 14px);
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;

  flex-wrap: nowrap;
  width: 100%;
}
.meta-views,
.meta-time,
.meta-separator {
  flex-shrink: 0;
}
.starrings-below {
  font-size: clamp(13px, 1.1vw, 14px);
  color: #bbb;
  line-height: 1.4;
}

.starrings-below a {
  white-space: nowrap;
}
.starrings-below {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-sep {
  color: #666;
}
.thumb-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (hover: none) {
.thumb-video {
    display: none !important;
  }

  .thumbz::after {
    opacity: 1 !important;
  }
}

.multiple:active {
  transform: scale(0.98);
  transition: transform 0.08s ease-out;
}
.ad-item .thumb-title {
  color: #facc15;
}

.meta-ad {
  color: #facc15;
  font-weight: 500;
}
.meta-ad {
  color: #aaa;
}

@media (max-width: 767px) {
.intro-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
.intro-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.intro-text.expanded {
  -webkit-line-clamp: unset;
}

.video-description-wrapper {
  position: relative;
}

body.single .desc-toggle {
  position: absolute;
  bottom: -18px;
left: 0;
right: 0;
margin: 0 auto;
  width: 36px;
  height: 36px;

  border-radius: 50%;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 3;

  transition: all 0.25s ease;
}

body.single .desc-toggle:hover {
  background: rgba(40,40,40,0.95);
  transform: scale(1.1);
}

.desc-toggle .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.2s ease;
}

.desc-toggle:hover .arrow {
  border-color: #fff;
}

.video-description.expanded + .desc-toggle .arrow {
  transform: rotate(-135deg);
}
.external-card .thumb-link {
  position: relative;
}

.ad-item .thumb-link::after {
  content: "JOIN NOW";

  position: absolute;
  top: 10px;
  left: 10px;

  background: rgba(255,255,255,0.92);
  color: #000;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;

  padding: 4px 8px;
  border-radius: var(--radius-tight);

  backdrop-filter: blur(4px);

  z-index: 2;
}

.starrings-below {
  display: block;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

  line-height: 1.25;
  margin-top: 4px;
}

.meta-stars {
  display: inline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  color: rgba(255,255,255,0.75);
}

.meta-stars a {
  color: inherit;
}

.more-stars {
  opacity: 0.7;
  margin-left: 4px;
}

body.single .meta-stars {
  display: inline-block;
  max-width: 100%;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  vertical-align: bottom;

  line-height: inherit;
  color: rgba(255,255,255,0.75);
}

.meta-stars a {
  color: inherit;
}

body.single .more-stars-toggle {
  margin-left: 6px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

body.single .more-stars-toggle:hover {
  opacity: 1;
}

body.single .hidden-stars {
  display: none !important;
}

body.single .meta-stars.expanded {
  flex-basis: 100%;
  display: block;
  white-space: normal;

}

.meta-stars.expanded .hidden-stars {
  display: inline !important;
}
.more-stars-toggle {
  margin-left: 6px;
  opacity: 0.7;
}
.meta-views,
.meta-time,
.meta-separator {
  flex: 0 0 auto;
}
.meta-stars.expanded .more-stars-toggle {
  display: block;
  margin-left: 0;
  margin-top: 4px;
}
a,
.thumb-link {
  cursor: pointer;
}
.meta-series-wrap {
  flex: 1 1 auto;
  display: inline-flex;
  min-width: 0;
  flex-shrink: 1;
  max-width: fit-content;

  vertical-align: bottom;
}

.meta-series {
  display: inline-block;
  max-width: 100%;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  vertical-align: bottom;
  opacity: 0.85;
}

.multiple .meta-row {
  display: flex;
  align-items: center;
  gap: 6px;

  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.multiple .meta-views,
.multiple .meta-time,
.multiple .meta-separator {
  flex: 0 0 auto;
}

.multiple .meta-series {
  flex: 1 1 0%;
  min-width: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  display: block;
}
.meta-series {
  color: inherit;
  text-decoration: none;

  transition: color 0.15s ease, opacity 0.15s ease;
}

.meta-series:hover {
  color: #fff;
  opacity: 1;
}
.multiple .meta-stars a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

:root {
  --ve-pill-h: 32px;
  --ve-pill-bg: rgba(255,255,255,0.10);
  --ve-pill-bg-hover: rgba(255,255,255,0.18);
  --ve-pill-fg: #c9c9c9;
  --ve-accent: #22c55e;
}

.series-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  box-sizing: border-box;
  height: var(--ve-pill-h);
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ve-pill-bg);
  color: var(--ve-pill-fg);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.series-item:hover {
  background: var(--ve-pill-bg-hover);
  color: #fff;
}

.series-item.active {
  background: var(--ve-accent);
  color: #fff;
}

.series-item--icon {
  padding: 0 15px;
  width: auto;
  min-width: 46px;
}

.series-item--icon .ve-i {
  width: 17px;
  height: 17px;
}

.ve-i {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: block;
  overflow: visible;
}

.category-title .ve-i {
  width: 0.95em;
  height: 0.95em;
  display: inline-block;
  vertical-align: -0.06em;
  margin-right: 2px;
}

.ve-search {
  position: sticky;
  left: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: var(--ve-pill-h);
  padding: 0 6px 0 12px;
  border-radius: 999px;
  background: #1a1a1a;

  box-shadow: 0 0 0 7px #000, 13px 0 12px -7px #000,
              inset 0 0 0 1px rgba(255,255,255,0.10);
  transition: background 0.18s ease;
}

.ve-search:focus-within {
  background: #222;
  box-shadow: 0 0 0 7px #000, 13px 0 12px -7px #000,
              inset 0 0 0 1.5px var(--ve-accent);
}

.ve-search::after {
  content: "";
  position: absolute;
  top: -7px;
  bottom: -7px;
  left: 100%;
  width: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  background: linear-gradient(to right, #000 0%, #000 35%, rgba(0,0,0,0) 100%);
}

.is-scrolled .ve-search::after { opacity: 1; }

.ve-search-label {
  display: flex;
  align-items: center;
  color: #8b8b8b;
  font-size: 13px;
  cursor: text;
}

.ve-search:focus-within .ve-search-label { color: var(--ve-accent); }

.ve-search-input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  height: 100%;
  padding: 0 8px;

  width: clamp(110px, 20vw, 172px);

  transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.ve-search-input:focus,
.ve-search.is-open .ve-search-input { width: clamp(180px, 24vw, 240px); }
.ve-search-input::placeholder { color: #7d7d7d; font-weight: 400; }

@media (max-width: 600px) {

  .ve-search {
    padding-left: 10px;
    background: #0c0c0c;

    box-shadow: 0 0 0 7px #000, 13px 0 12px -7px #000,
                inset 0 0 0 1px rgba(255,255,255,0.24);
  }
  .ve-search-input {

    font-size: 16px;
    width: 104px;
    padding: 0 6px;
  }
  .ve-search-input:focus,
  .ve-search.is-open .ve-search-input { width: min(44vw, 172px); }

  .ve-search-input::placeholder { font-size: 13px; }
}

.ve-search-input::-webkit-search-decoration,
.ve-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.ve-search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #8b8b8b;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.ve-search-clear:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.ve-search-clear .ve-i { width: 12px; height: 12px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.category-header {

  margin-bottom: 15px;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}
.series-item {
  white-space: nowrap;
}

.series-item {
  flex: 0 0 auto;
}
.series-nav::-webkit-scrollbar {
  display: none;
}
.series-nav {
  scrollbar-width: none;
}
.series-nav-wrapper {
  position: relative;
}
.series-nav:active {
  cursor: grabbing;
}

.ve-search,
.ve-search-input,
.series-nav:active .ve-search-input {
  cursor: text;
}

.series-label {
  color: #d5d5d5;
  font-size: 13px;
  font-weight: 700;
  margin: 0 6px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.series-nav {
  display: flex;
  align-items: center;
  height: 34px;
  gap: 10px;
  overflow-x: auto;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;

}

.series-nav {
  cursor: grab;
}

.series-nav:active {
  cursor: grabbing;
}
.series-nav::-webkit-scrollbar {
  display: none;
}.series-nav-wrapper {
  position: relative;
  background: #000;
  padding: 4px 0;
}
body.single .video-meta .time-short {
  display: none;
}

body.single .video-meta .views-label {
  display: inline;
}

@media (max-width: 768px) {
body.single .video-meta .views-label {
    display: none;
  }

  body.single .video-meta .time-full {
    display: none;
  }

  body.single .video-meta .time-short {
    display: inline;
  }
}

@media (max-width: 768px) {
body.single .meta-series-wrap {
    flex: 0 0 auto !important;
    display: inline-flex;

    max-width: fit-content;
  }
}

@media (max-width: 768px) {
body.single .video-views { order: 1; }
  body.single .meta-time   { order: 2; }

  body.single .meta-stars  { order: 3; }

  body.single .meta-series-wrap {
    order: 4;

    flex: 0 0 auto;
  }
}

body.single .video-meta {

  display: block;

  flex-wrap: wrap;
  align-items: center;
}

body.single .video-meta .meta-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

body.single .video-meta {
  --meta-dot-gap: clamp(4px, 1.4vw, 12px);
  column-gap: calc(var(--meta-dot-gap) * 2 + 4px);
}

body.single .video-meta > * {
  position: relative;
}

body.single .meta-stars {
  overflow: visible;
}

body.single .video-meta > * + *::before {

  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  margin: 0 7px;
  opacity: 0.5;
}
.thumbz {
  border-radius: var(--radius-main);
}.ad-rotator {
  position: relative;
}

.ad-rotator .ad-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ad-rotator .ad-img.active {
  opacity: 1;
  position: relative;
}
.ad-rotator {
  position: relative;
}

.ad-img {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ad-img.active {
  opacity: 1;
}.thumb-meta-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;

  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);

  padding: 4px 8px;
  border-radius: var(--radius-pill);

  font-size: 12px;
  color: #fff;

  display: flex;
  align-items: center;
  gap: 4px;
}

.meta-dot {
  opacity: 0.6;
}
.meta-row {
  display: none !important;
}
.starrings-below .category::before {
  content: "•";
  margin: 0 6px;
  opacity: 0.5;
}
@media (max-width: 899px) {
.starrings-below {
    display: none;
  }

  .model-card .thumb-info {
    display: none;
  }
}

@media (min-width: 900px) {
.starrings-below {
    display: block;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .multiple:hover .starrings-below {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
  .multiple:active {
  transform: scale(0.97);
}
}

.ad-item {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.ad-item:hover {
  opacity: 1;
}
.meta-stars {
  display: inline;
  white-space: nowrap;
}

.meta-stars .hidden-stars {
  display: none;
}

.meta-stars.expanded .hidden-stars {
  display: inline;
}
.more-stars-toggle {
  display: inline;
  white-space: nowrap;
  cursor: pointer;
}
body.single .meta-stars.expanded {
  display: inline;
  white-space: nowrap;
  flex-basis: auto;
}
.meta-stars.expanded .more-stars-toggle {
  display: inline;
  margin-left: 6px;
}
@media (max-width: 768px) {
body.single .meta-stars.expanded {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block;
  }
}

#related-posts-section #main > * {
  min-width: 0;
}
#related-posts-section #main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
#related-posts-section #main {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
#related-posts-section #main {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
#related-posts-section .thumbz {
  }
}

@media (max-width: 767px) {
#related-posts-section .thumbz {
    width: 100%;
  }

  #related-posts-section .thumbz img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#related-posts-section .multiple {
  display: flex;
  flex-direction: column;
}
#related-posts-section .load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#related-posts-section #load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 5px 12px;
  min-width: 120px;

  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;

  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  transition: all 0.2s ease;
}

#related-posts-section #load-more:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}
.series-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  padding: 4px 0;
}

.series-nav-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 18px;
  pointer-events: none;
  z-index: 3;

  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
  opacity: 1;
  transition: opacity 0.18s ease;
}

.series-nav-wrapper.is-scroll-end::after,
.series-nav-wrapper.is-no-scroll::after {
  opacity: 0;
}

.series-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.series-nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 34px;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #ddd;

  cursor: pointer;
  transition: all 0.2s ease;
}

.series-nav-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.series-nav-btn[disabled] {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.series-nav-btn span {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
.series-nav-btn {
    display: inline-flex;
  }

  .series-nav-wrapper::after {
    right: 42px;
    width: 22px;
  }
}

.series-label--legacy {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

  padding: 5px 10px;
  border-radius: 999px;

  background: #111;
  color: #cfcfcf;
  border: 1px solid rgba(255,255,255,0.08);

  font-size: 13px;
  font-weight: 600;
}
.meta-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
}
.model-card .meta-badge--model {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.model-card .model-meta-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  font-size: clamp(13px, 1.1vw, 14px);
  color: #bbb;
  line-height: 1.35;
}
.model-card .meta-badge--model {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-card--featured .thumb-meta-overlay {
  background: #16a34a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.series-item-group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  gap: 0;
}

.series-item-group .series-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.series-item-group.is-current {
  align-items: stretch;
  overflow: hidden;
  border-radius: 999px;
}

.series-item-group.is-current .series-item--main,
.series-item-group.is-current .series-item--sort-toggle {
  vertical-align: middle;
  border-radius: 0;
  margin: 0;
}

.series-item-group.is-current .series-item--main {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  padding-right: 12px;
}

.series-item-group.is-current .series-item--sort-toggle {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  min-width: 20px;
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #21C55E;
}

.series-item--sort-toggle {
  gap: 5px;
  min-width: 20px;
  padding-left: 11px;
  padding-right: 13px;
  line-height: 1;
  font-size: 12.5px;
}

.series-item--sort-toggle .ve-i { width: 13px; height: 13px; }

@media (max-width: 768px) {
.series-item-group.is-current .series-item--sort-toggle,
  .series-item--sort-toggle {
    min-width: 18px;
    padding-left: 9px;
    padding-right: 11px;
    gap: 4px;
  }
}

.series-item-group.is-current .series-item--main.is-selected,
.series-item-group.is-current .series-item--main.is-selected:hover,
.series-item-group.is-current .series-item--main.is-selected + .series-item--sort-toggle.active,
.series-item-group.is-current .series-item--main.is-selected + .series-item--sort-toggle.active:hover {
  background: #22c55e;
  color: #fff;
}

.series-item-group.is-current .series-item--main.is-selected {
  border-right-color: #22c55e;
}

.series-item-group.is-current .series-item--main.is-selected + .series-item--sort-toggle.active {
  border-left-color: #21C55E;
}

.series-item-group.is-current .series-item--main.active + .series-item--sort-toggle.is-selected,
.series-item-group.is-current .series-item--main.active + .series-item--sort-toggle.is-selected:hover {
  background: var(--ve-pill-bg);
  color: #fff;
  box-shadow: none;
  border-left: 2px solid #21C55E;
  border-top: 2px solid #22c55e;
  border-right: 2px solid #22c55e;
  border-bottom: 2px solid #22c55e;
}
.single-keywords-nav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: none;
  padding: 0;
}

.single-keywords-nav .series-item {
  margin: 0;
}

@media (hover: none), (pointer: coarse) {
.multiple:active {
    transform: none !important;
  }

  .thumb-video {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    background: #000 !important;
  }

  .thumb-img {
    opacity: 1 !important;
    transition: opacity 0.12s ease !important;
  }

  .thumbz.is-previewing .thumb-video {
    opacity: 1 !important;
  }

  .thumbz.is-previewing .thumb-img {
    opacity: 0 !important;
  }

  .thumbz.is-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #22c55e;
    z-index: 10;
    animation: thumb-loading 0.8s ease-in-out infinite;
    pointer-events: none;
  }

  .thumbz.is-previewing::after {
    display: none;
  }

  @keyframes thumb-loading {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
  }
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.single-header-promo {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  color: #fff !important;
  font-weight: 800;

  line-height: 1.1;

  padding-block: 10px;
  margin-block: -10px;
}

@media (max-width: 1024px) {
#navbar {
    padding-right: calc(46px + env(safe-area-inset-right, 0px));
    padding-left: max(10px, env(safe-area-inset-left, 0px));
  }

  #navbar a {
    display: block;
    width: 100%;
    padding-right: calc(40px + env(safe-area-inset-right, 0px));
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  #navbar .navbar-text {
    transform: none !important;
    margin: 0 !important;

    font-size: clamp(12px, 3.3vw, 15px) !important;

    line-height: 1.35 !important;
    letter-spacing: 0.1px !important;
  }

  #navbar-close {
    right: calc(8px + env(safe-area-inset-right, 0px)) !important;
  }

  body.single .single-header-promo {
    display: inline-block;
    max-width: 100%;

    font-size: clamp(13px, 3.6vw, 16px);
    letter-spacing: 0.15px;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 820px) {
#navbar-close {
    right: calc(8px + env(safe-area-inset-right, 0px));
  }
}

.search-dead-end {
  grid-column: 1 / -1;
  padding: 6px 2px 2px;
}
.search-dead-end .empty {
  margin: 0 0 6px;
}
.search-dead-end__lead {
  margin: 0;
  opacity: .75;
}

@media (max-width: 900px) {
  .series-nav { scroll-padding-right: 28px; }
}

body.single .video-meta span.cast { display: none; }

@media (max-width: 374px) {
  body.single .video-meta span.cast--xs { display: inline; }
}
@media (min-width: 375px) and (max-width: 430px) {
  body.single .video-meta span.cast--sm { display: inline; }
}
@media (min-width: 431px) and (max-width: 768px) {
  body.single .video-meta span.cast--md { display: inline; }
}
@media (min-width: 769px) and (max-width: 1023px) {
  body.single .video-meta span.cast--lg { display: inline; }
}
@media (min-width: 1024px) {
  body.single .video-meta span.cast--xl { display: inline; }
}

body.single .video-meta > *,
body.single .video-meta .meta-stars,
body.single .video-meta .meta-series-wrap,
body.single .video-meta .video-views,
body.single .video-meta span.cast,
body.single .video-meta .hidden-stars,
body.single .video-meta .more-stars-toggle {
  display: inline;
  white-space: normal;
  min-width: 0;
  max-width: none;
  overflow: visible;
}

body.single .video-meta span.cast { display: none; }
@media (max-width: 374px)  { body.single .video-meta span.cast--xs { display: inline; } }
@media (min-width: 375px) and (max-width: 430px)  { body.single .video-meta span.cast--sm { display: inline; } }
@media (min-width: 431px) and (max-width: 768px)  { body.single .video-meta span.cast--md { display: inline; } }
@media (min-width: 769px) and (max-width: 1023px) { body.single .video-meta span.cast--lg { display: inline; } }
@media (min-width: 1024px) { body.single .video-meta span.cast--xl { display: inline; } }

body.single .video-meta > * {
  vertical-align: middle;
  line-height: 1.45;
}

body.single .video-meta > * + *::before {
  vertical-align: middle;

  position: relative;
  top: -0.5px;
}

body.single .more-stars-toggle {
  cursor: pointer;
  opacity: 0.75;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

body.single .more-stars-toggle:hover { opacity: 1; }

body.single .more-stars-toggle .mst-chev {

  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 3px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

body.single .more-stars-toggle .mst-close { display: none; }
body.single .meta-stars.expanded .more-stars-toggle .mst-open { display: none; }
body.single .meta-stars.expanded .more-stars-toggle .mst-close { display: inline; }
body.single .meta-stars.expanded .more-stars-toggle .mst-chev {
  transform: rotate(180deg);
}

body.single .video-meta .meta-stars a,
body.single .video-meta .meta-stars a + a,
body.single .video-meta .meta-stars .hidden-stars a {
  margin: 0;
}

body.single .video-meta,
body.single .video-meta > *,
body.single .video-meta .meta-series,
body.single .video-meta .time-full,
body.single .video-meta .time-short,
body.single .video-meta .views-label,
body.single .video-meta .meta-stars a,
body.single .video-meta span.cast,
body.single .video-meta .hidden-stars,
body.single .video-meta .more-stars-toggle,
body.single .video-meta .more-stars-toggle span {
  vertical-align: baseline;
}

body.single .video-meta .meta-series {
  display: inline;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  max-width: none;
}

body.single .video-meta .meta-stars .cast-sep {
  margin-right: 4px;
}

#navbar .navbar-text {
  line-height: 1.4;
}

.ve-suggest {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 60;

  width: calc(clamp(180px, 24vw, 240px) + 33px);
  max-width: 92vw;
  max-height: 52vh;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 6px;
  border-radius: var(--radius-main);
  background: #101010;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10),
              0 18px 40px rgba(0,0,0,0.55);
  -webkit-overflow-scrolling: touch;
}

.ve-suggest[hidden] { display: none; }

.ve-suggest-head {
  display: block;
  margin: 4px 8px 6px;
}

.ve-suggest-go {
  color: #8a8a8a;
  font-weight: 600;
}

.ve-suggest-go .ve-suggest-arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: #fff;
}

.ve-suggest-go-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ve-suggest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  color: var(--ve-pill-fg);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.ve-suggest-item[hidden] { display: none; }

.ve-suggest-item:hover,
.ve-suggest-item.is-active {
  background: var(--ve-pill-bg-hover);
  color: #fff;
}

.ve-suggest-name { text-transform: capitalize; }

.ve-suggest-head--2nd {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ve-suggest-group[hidden] { display: none; }

.ve-suggest-all,
.ve-suggest-all:link,
.ve-suggest-all:visited {
  display: block;
  margin-top: 6px;
  padding: 9px 10px 5px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: var(--ve-accent);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.ve-suggest-all:hover { color: #fff; }

@media (max-width: 600px) {
  .ve-suggest { width: calc(min(44vw, 172px) + 31px); }
}

.cta-button.has-cta-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45em;
}
.cta-button.has-cta-promo .cta-text {
  display: block;
}

.cta-button.has-cta-promo .cta-promo-ticket,
.cta-button.has-cta-promo > .cta-promo {
  vertical-align: baseline;
  margin-right: 0;
  flex: 0 0 auto;
}

@media (min-width: 1025px) {
  .cta-button.has-cta-promo {
    flex-direction: row;
    justify-content: center;
    gap: 0.7em;
  }

  .cta-button.has-cta-promo .cta-text { order: 1; }
  .cta-button.has-cta-promo .cta-promo-ticket,
  .cta-button.has-cta-promo > .cta-promo { order: 2; }
}

#breaker,
.cta-button-fit {
  container-type: inline-size;
}

@media (min-width: 1025px) {
  @supports (width: 1cqw) {
    .cta-button[style*="--cta-chars"] {

      font-size: clamp(
        20px,
        calc((100cqw - 2 * clamp(16px, 3vw, 32px) - 4px) / (0.55 * var(--cta-chars))),
        36px
      );
    }
  }
}

.cta-promo {
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0.32em 0.55em;
  border-radius: var(--radius-pill);
  font-size: 0.62em;
  line-height: 1;

  vertical-align: 0.2em;

  color: #fff;
  background: linear-gradient(180deg, #f7b81a, #e0870a);
  text-shadow: 0 1px 2px rgba(90, 45, 0, 0.55);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cta-promo-ticket {
  display: inline-flex;
  align-items: stretch;
  margin-right: 0.5em;

  vertical-align: 0.13em;
  border: 0;
  background: none;
}

.cta-promo-ticket .cta-promo:not(.cta-promo-code) {
  margin-right: 0;
  padding: 0.3em 0.55em;

  border-radius: 0.42em 0 0 0.42em;
  box-shadow: none;
  vertical-align: baseline;
  display: flex;
  align-items: center;
}

.cta-promo-ticket .cta-promo-code {
  background: none;
  color: #fff;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  border-radius: 0 0.42em 0.42em 0;
  padding: 0.3em 0.6em;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}

.cta-code-label {
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-right: 0.42em;
}
.cta-code-value {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.cta-code-label,
.cta-code-value,
.cta-value-t {
  position: relative;
  top: 0.05em;
}
.promo-code-t {
  position: relative;

  top: 0.04em;
}

.promo-code {
  display: inline-block;

  padding: 0.08em 0.3em 0.04em;

  border: 1px dashed rgba(255, 255, 255, 0.55);

  border-radius: 0.42em;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.05;
  vertical-align: 0.04em;
}

#navbar .promo-code {

  padding: 0.08em 0.3em 0.04em;
}

.single-header-promo.has-promo-ticket {
  display: inline-flex;
  align-items: center;
  overflow: visible;
}
.single-header-promo .cta-promo-ticket {
  margin-right: 0;
  vertical-align: baseline;
}
.single-header-promo .cta-promo {
  font-size: 0.92em;
  padding: 0.26em 0.6em;
}
.single-header-promo .cta-code-label {
  font-size: 0.78em;
}

.single-header-promo .cta-promo-code {
  background: var(--cta-green);
}

.thumb-promo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;

  display: inline-flex;
  align-items: stretch;
  border-radius: 0.42em;
  overflow: hidden;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1;
}

.thumb-promo-value {
  padding: 5px 8px;
  border-radius: 0.42em 0 0 0.42em;
  color: #fff;
  background: linear-gradient(180deg, #f7b81a, #e0870a);
  display: flex;
  align-items: center;
}

.thumb-promo-code {
  padding: 5px 8px;
  color: #fff;
  background: var(--cta-green);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 0 0.42em 0.42em 0;
  display: flex;
  align-items: center;
}

.post-image {
  container-type: inline-size;
}
@container (max-width: 200px) {
  .thumb-promo-code { display: none; }
  .thumb-promo-value { border-radius: 0.42em; }
}

/* Search-suggest typing pool: model rows (name ellipsis + type pill).
   Moved from inline <style> in index.php (operator, 2026-08-14). */
.ve-suggest-pill{font-size:10px;line-height:1;padding:2px 5px;margin-left:auto;border-radius:8px;border:1px solid #3b4754;color:#8b98a5;vertical-align:middle;white-space:nowrap;flex:none;}
.ve-suggest-name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}


  .video-cast { margin: 10px 0 8px; }
  .video-cast .meta-stars { display: inline-flex !important; flex-wrap: wrap;
    gap: 10px; vertical-align: middle;
     }
  .cast-pill { display: inline-flex; align-items: center; gap: 6px;
               box-sizing: border-box; height: var(--ve-pill-h, 34px);
               padding: 0 14px; border: 0; border-radius: 999px;
               background: var(--ve-pill-bg, #26282c);
               color: var(--ve-pill-fg, #d5d5d5);
               font-size: 14px; font-weight: 600; line-height: 1;
               white-space: nowrap; }
  body.single .meta-stars a.cast-pill { font-size: 15px; }  
  @media (max-width: 768px) {
    body.single .meta-stars a.cast-pill { font-size: 13px; }
  }
  .cast-pill:hover { background: var(--ve-pill-bg-hover, #333); }
  .cast-pill .cast-count { color: #8b98a5; font-size: 11px; font-weight: 400; }
  .cast-pill--f { background: rgba(214,93,134,.16); }
  .cast-pill--f:hover { background: rgba(214,93,134,.28); }
  .cast-more-toggle .cmt-chev { display: inline-block; width: 11px; height: 11px; }
  .cast-more-toggle .cmt-open, .cast-more-toggle .cmt-close {
    display: inline-flex; align-items: center; gap: 4px; }
  .cast-more-toggle .cmt-close { display: none; }
  .meta-stars.cast-open .cast-more-toggle .cmt-open { display: none; }
  .meta-stars.cast-open .cast-more-toggle .cmt-close { display: inline-flex; }
  .meta-stars.cast-open .cast-more-toggle .cmt-chev { transform: rotate(180deg); }
              .single-keywords-nav:not(.kw-open) .series-nav{flex-wrap:nowrap;overflow:hidden;height:auto;}
              .single-keywords-nav.kw-open .series-nav {
                max-height: none; overflow: visible;
              }
              .single-keywords-nav::after { display: none; }
.single-keywords-nav { margin-bottom: 12px; }
              @media (max-width: 768px), (pointer: coarse) {
                .single-keywords-nav .series-nav {
                  flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
                  height: 34px; max-height: 34px;
                }
                
              }

body.single .video-meta{display:flex;align-items:center;flex-wrap:nowrap;gap:10px;}
body.single .video-meta .video-cast{flex:1 1 auto;min-width:0;margin:0;display:inline-flex;}
body.single .video-meta .meta-pill{display:inline-flex !important;
align-items:center !important;box-sizing:border-box;
height:var(--ve-pill-h,32px);padding:0 14px;border-radius:999px;
background:transparent;border:1px solid rgba(255,255,255,0.14);
white-space:nowrap;flex:none;}
.meta-pill > *{display:inline-flex !important;align-items:center;
line-height:1 !important;vertical-align:baseline !important;}
.meta-pill .views-label{margin-left:4px;}
.meta-pill > * + *::before{content:"";display:inline-block;width:4px;height:4px;
border-radius:50%;background:currentColor;
margin:0 7px;opacity:.5;flex:none;}
body.single .video-meta > * + *::before{content:none;}
body.single .meta-pill, body.single .meta-pill *,
body.single .meta-stars a.cast-pill{
font-size:15px !important;font-weight:600 !important;
line-height:1 !important;}
body.single .meta-pill, body.single .meta-stars a.cast-pill{
height:32px !important;padding:0 14px !important;
border-radius:999px !important;}
@media (max-width:768px){
body.single .meta-pill, body.single .meta-pill *,
body.single .meta-stars a.cast-pill{font-size:13px !important;}}
.meta-stars:not(.cast-open) .cast-more-toggle .cmt-close{display:none !important;}
.meta-stars:not(.cast-open) .cast-more-toggle .cmt-open{display:inline-flex !important;}
.meta-stars.cast-open .cast-more-toggle .cmt-open{display:none !important;}
.meta-stars.cast-open .cast-more-toggle .cmt-close{display:inline-flex !important;}
body.single .video-meta:has(.cast-open){display:block !important;}
body.single .video-meta:has(.cast-open) .meta-pill{display:inline-flex !important;vertical-align:middle;margin:0 10px 10px 0;}
body.single .video-meta:has(.cast-open) .video-cast{display:inline !important;}
body.single .video-meta:has(.cast-open) .meta-stars{display:inline !important;max-height:none;overflow:visible;}
body.single .video-meta:has(.cast-open) .cast-pill{vertical-align:middle;margin:0 10px 10px 0;}
.cast-pill .cp-name{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.video-cast .meta-stars:not(.cast-open){flex-wrap:nowrap;overflow:hidden;}
body.single .video-meta:has(.cast-open){align-items:flex-start;}
body.single .video-info h2{margin-left:5px;}
@media (max-width:768px),(pointer:coarse){
.single-keywords-nav::after{content:"";position:absolute;top:0;bottom:0;right:0;width:24px;pointer-events:none;z-index:3;display:block;background:linear-gradient(to right,rgba(17,17,17,0),#111);opacity:1;transition:opacity .18s ease;}
.single-keywords-nav.is-scroll-end::after{opacity:0;}
}

.kw-more-toggle .cmt-chev{display:inline-block;width:11px;height:11px;}
.kw-more-toggle .cmt-open,.kw-more-toggle .cmt-close{display:inline-flex;align-items:center;gap:4px;}
.single-keywords-nav:not(.kw-open) .kw-more-toggle .cmt-close{display:none !important;}
.single-keywords-nav:not(.kw-open) .kw-more-toggle .cmt-open{display:inline-flex !important;}
.single-keywords-nav.kw-open .kw-more-toggle .cmt-open{display:none !important;}
.single-keywords-nav.kw-open .kw-more-toggle .cmt-close{display:inline-flex !important;}
.single-keywords-nav.kw-open .kw-more-toggle .cmt-chev{transform:rotate(180deg);}
