			.slinks {
    white-space: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    display: flex
;
    gap: 7px;
    margin-top: 10px;
}
.slinks a {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.slinks a:hover {
    background: #00351d;
	color:#fff;
}
a.taxo-actor {
    background: #131517;
    color: #fa71ff;
}
a.taxo-cat {
    background: #ffffff;
    color: #1f202a;
}
a.taxo-tag {
    background: #131517;
}
span.lcat {
    position: absolute;
    bottom: 31px;
    left: 0px;
    background: #56fea0;
    color: #000;
    padding: 3px 10px;
    border-radius: 0px 11px 0px 0px;
    font-size: 12px;
}
.back-button {
    position: absolute;
    left: -2px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #00000000;
    color: #fff;
    transform: translate(-0%, -50%);
    top: 50%;
    border-radius: 0;
    display: flex
;
    align-items: center;
    gap: 5px;
}
button.back-button svg {
    width: 16px;
}
span.num {
    font-size: 30px;
    padding-left: 5px;
    color: #56fea0;
}
.tag-list a {
    min-width: 135px;
    background: #2e3338;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 8px;
    flex: auto;
    text-decoration: none;
    display: flex
;
    justify-content: space-between;
    align-items: center;
}




.taxo-tag {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  will-change: transform, box-shadow, color;
}

.taxo-tag::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.taxo-tag:hover {
  color: #222;
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.taxo-tag:hover::after {
  width: 100%;
}

.dec {
    margin: 0px 0px 13px 0px;
    font-family: cursive;
    background: #252631;
    border-radius: 14px;
    padding: 12px;
}

@media (max-width: 768px) {
  h1.stitle {
    font-size: 16px;       /* Slightly larger for readability */
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: left;       /* Optional: change to center if needed */
  }
}
.toggle-button {
    display: inline-block;
    background-color: #1e1e1e;
    color: #00ffff;
    border: 1px solid #00ffff;
    padding: 2px 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 11px; /* fixed the typo */
    transition: background-color 0.3s, color 0.3s;
}

.toggle-button:hover {
    background-color: #00ffff;
    color: #1e1e1e;
}
.footeracbtns {
    display: flex
;
    gap: 5px;
    justify-content: center;
    margin: 15px 0;
}
.footeracbtns button {
    font-size: 12px;
    padding: 6px 6px;
    border: 1px solid #00ff99;
    border-radius: 5px;
    background: #ffffff00;
    color: #fff;
    cursor: pointer;
    display: flex
;
    align-items: center;
    gap: 5px;
}
.footeracbtns button:hover {
    background: #00ff99;
    color: #000;
    fill: #000 !important;
}
.video .play-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, filter 0.3s ease;
  font-size: 30px;
  color: white;
}

/* Greenish (#00ff99) shadow when hovering over thumbnail */
.video:hover .play-icons {
  opacity: 1;
  filter: drop-shadow(0 0 10px #00ff99);
}

/* Black shadow when hovering directly on icons - darker and bolder */
.video .play-icons:hover {
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 1));
}

