@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root {
  --header-height: 5.25rem;
  --first-color: hsl(228, 70%, 63%);
  --first-color-rgb: 95, 121, 227;
  --title-color: hsl(228, 18%, 96%);
  --text-color: hsl(228, 12%, 61%);
  --body-color: hsl(228, 24%, 16%);
  --shadow-color: hsla(228, 80%, 4%, .3);
  --body-font: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
  --tiny-font-size: .75rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
  --icon-size: 1.75rem;
  --global-palette4: var(--first-color);
}

@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
    --smaller-font-size: .813rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s;
  overflow-x: hidden;
}

body.single-post {
  background-color: #111;
  color: #e0e0e0;
}

a {
  text-decoration: none;
  transition: color .3s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  all: unset;
}

.container {
  margin-inline: 1.5rem;
}

.main {
  padding-top: calc(var(--header-height) + 2rem);
}

.sn-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(47, 53, 75, 0.6);
  backdrop-filter: blur(8px);
  z-index: var(--z-fixed);
  overflow: visible !important;
}

.sn-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible !important;
}

.sn-header__logo img {
  max-height: 60px;
}

.sn-nav {
  flex: 1;
  overflow: visible !important;
}

.sn-nav__list {
  font-size: clamp(.7rem, 1.1vw, 1.05rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: nowrap;
  max-width: 100%;
}

.sn-nav__list a {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  position: relative;
  line-height: 1.3;
}

.sn-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.25rem;
  width: 0;
  height: 2px;
  background: var(--first-color);
  transition: width .3s;
}

.sn-nav__list a:hover::after,
.sn-nav__list a.active::after {
  width: 100%;
}

.sn-dropdown {
  position: relative;
}

.sn-dropdown__toggle,
.sn-account__btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
}

.sn-dropdown__menu {
  position: absolute;
  inset: unset;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--body-color);
  box-shadow: 0 8px 24px var(--shadow-color);
  border-radius: .5rem;
  padding: .75rem 0;
  display: none;
  z-index: 9999;
  overflow: visible;
  list-style: none;
}

.sn-dropdown__menu li {
  list-style: none;
  margin-block: 0;
}

.sn-account .sn-dropdown__menu {
  left: auto;
  right: 0;
  max-width: 90vw;
}

.sn-dropdown__menu li a {
  display: block;
  padding: .5rem 1.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  white-space: nowrap;
}

.sn-dropdown__menu li a:hover {
  color: var(--first-color);
}

.sn-dropdown__menu > .sn-dropdown > .sn-dropdown__toggle {
  width: 100%;
  color: var(--text-color);
  padding: .5rem 1.5rem;
  font-weight: var(--font-semi-bold);
  justify-content: space-between;
  padding-right: 1.5rem;
  position: relative;
}

.sn-dropdown__menu > .sn-dropdown > .sn-dropdown__toggle:hover {
  color: var(--first-color);
}

.sn-dropdown__menu > .sn-dropdown > .sn-dropdown__toggle span.material-symbols-outlined {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  pointer-events: none;
}

.sn-dropdown.open > .sn-dropdown__menu {
  display: block;
}

.sn-dropdown .sn-dropdown .sn-dropdown__menu {
  top: 0;
  left: auto;
  right: 100%;
  margin-left: .5rem;
}

.sn-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sn-header__icon {
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--icon-size);
  cursor: pointer;
  color: var(--title-color);
  vertical-align: middle;
  line-height: var(--icon-size);
  position: relative;
}

.sn-account__avatar img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007BFF;
}

.sn-account__avatar {
  cursor: pointer;
}

.sn-burger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--title-color);
  cursor: pointer;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__right-toggle-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
}

.header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  font-size: 26px;
  font-weight: 700;
  color: white;
  padding: 4px;
  cursor: pointer;
}

.rotate-arrow {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.notice {
  width: 100%;
  padding: 10px 15px;
  background-color: hsl(185, 45%, 51%);
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notice-text {
  flex: 1;
  text-align: center;
  padding-right: 2rem;
}

.notice-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.sn-chat-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: black;
  font-size: 38px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999 !important;
  transition: transform 0.3s ease;
}

.sn-chat-floating-btn:hover {
  transform: scale(1.05);
}

.sn-chat-window {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 400px;
  max-width: 90vw;
  max-height: 60vh;
  background-color: hsl(227, 23%, 24%);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s ease;
  z-index: 9998;
}

.sn-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sn-chat-window-content {
  padding: 1rem;
  overflow-y: auto;
  height: 100%;
}

.sn-chat-tooltip {
  position: absolute;
  bottom: 80px;
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: translateX(-30%);
}

.sn-chat-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.sn-chat-tooltip.show {
  opacity: 1;
  visibility: visible;
}

input#sn-message-input {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: hsl(227, 23%, 24%);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.sn-message strong a {
  text-decoration: none;
  color: white;
}

.sn-message strong a:hover {
  text-decoration: underline;
  color: white;
}

.archive-container {
  width: 100%;
}

.archive-container .archive-header {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 2px 0 24px var(--shadow-color);
  margin-bottom: 20px;
}

.archive-container .archive-header h1 {
  font-weight: 600;
  color: var(--title-color);
}

.archive-title {
  text-transform: lowercase;
}

.archive-title::first-letter {
  text-transform: uppercase;
}

.archive-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 20px 0;
  width: 100%;
}

.archive-post,
.archive-post.carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #1c1c1e;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin: 0 !important;
}

.archive-post:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.archive-post img,
.archive-post.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px;
}

.archive-post .item-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
  padding: 15px;
  pointer-events: none;
  z-index: 4;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.archive-post .item-title-overlay h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

.archive-post .card-main-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
  background: transparent;
}

.archive-post .meta-actions {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.archive-posts-grid > *:not(.archive-post) {
  display: none !important;
}

.archive-pagination {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 2px 0 24px var(--shadow-color);
  margin-bottom: 20px;
  text-align: center;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.archive-pagination .page-numbers {
    display: flex !important; /* Fontos a középre igazításhoz */
    justify-content: center;
    align-items: center;
    width: 50px;  /* FIX SZÉLESSÉG - így lesz kocka */
    height: 50px; /* FIX MAGASSÁG - így lesz kocka */
    padding: 0 !important; /* Padding törlése, hogy a méret fix maradjon */
    border: 2px solid white;
    border-radius: 10px; /* Lekerekítés, mint a képen */
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    background-color: transparent;
    transition: all 0.3s ease;
    margin: 0 !important; /* A gap kezeli a távolságot */
}

/* Az éppen aktív oldal (teli fehér) */
.archive-pagination .page-numbers.current {
    background-color: white;
    color: var(--body-color); /* Sötét szín a számnak */
    border-color: white;
}

/* Hover effekt (ha ráviszed az egeret) */
.archive-pagination .page-numbers:not(.current):hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* A nyilak (ikonok) méretezése és igazítása */
.archive-pagination .page-numbers i {
    font-size: 24px; /* Ikon mérete, hogy arányos legyen */
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobilon kicsit kisebb gombok */
@media screen and (max-width: 600px) {
    .archive-pagination .page-numbers {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-width: 2px;
    }
    .archive-pagination .page-numbers i {
        font-size: 20px;
    }
}

.nav-links a:last-child {
  margin-right: 0px;
}

span.current {
  text-decoration: none;
  color: black;
  font-weight: 600;
  border: 2px solid white;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: white;
  margin-right: 8px;
}

a.prev, a.next {
  font-size: 12px;
  text-transform: uppercase;
}

.sn-fullscreen-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: display 0.4s ease;
}

.sn-fullscreen-search.show {
  display: flex;
}

.sn-search-inner {
  text-align: center;
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  color: #fff;
  position: relative;
}

.sn-close-search {
  position: absolute;
  top: -20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.sn-search-inner .search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.sn-search-inner .search-field {
  flex: 1;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
}

.sn-search-inner .search-submit {
  padding: 17px;
  font-size: 1.2rem;
  border: none;
  background-color: hsl(227, 23%, 24%);
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sn-search-inner .search-submit i {
  vertical-align: middle;
}

.sn-search-results {
  margin-top: 20px;
  text-align: left;
}

.sn-search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result-item {
  display: block;
  margin-bottom: 10px;
}

.search-result-item a {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: inherit;
  text-decoration: none;
  background-color: hsla(0, 0%, 38%, 0.500);
  padding: 10px;
  border-radius: 10px;
}

.search-result-thumbnail-wrapper {
  width: 107px;
  height: 160px;
  flex-shrink: 0;
  background-color: hsla(0, 0%, 38%, 0.500);
  border-radius: 5px;
  overflow: hidden;
}

.search-result-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.search-result-excerpt {
  font-size: 14px;
  color: #ddd;
  margin: 0;
}

.sn-search-filters {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.sn-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.sn-checkbox-container {
  font-size: 12px;
}

.sn-checkbox-container .sn-checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.sn-checkbox-container:hover input ~ .sn-checkmark {
  background-color: #ccc;
}

.sn-checkbox-container input:checked ~ .sn-checkmark {
  background-color: #2196F3;
}

.sn-checkbox-container .sn-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.sn-checkbox-container input:checked ~ .sn-checkmark::after {
  display: block;
}

.sn-checkbox-container .sn-checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.sn-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  overflow-y: auto;
}

.sn-search-overlay.show {
  opacity: 1;
  visibility: visible;
}

.sn-search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px 40px 20px;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sn-search-overlay.show .sn-search-container {
  transform: translateY(0);
}

.sn-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  color: var(--title-color);
}

.sn-search-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.sn-close-search {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.sn-close-search:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.sn-search-input-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.sn-search-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 20px 20px 55px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}

.sn-search-field:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--first-color);
  box-shadow: 0 0 0 4px rgba(var(--first-color-rgb), 0.2);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.sn-search-loader {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--first-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.sn-search-loader.active {
  display: block;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.sn-search-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.sn-filter-option input {
  display: none;
}

.filter-chip {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.sn-filter-option input:checked + .filter-chip {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sn-search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.search-result-card {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
}

.search-result-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
}

.result-poster-wrap {
  width: 80px;
  flex-shrink: 0;
  position: relative;
}

.result-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
  display: block;
}

.result-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.result-excerpt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px;
  font-style: italic;
}

.sn-search-overlay::-webkit-scrollbar {
  width: 8px;
}

.sn-search-overlay::-webkit-scrollbar-track {
  background: transparent;
}

.sn-search-overlay::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.sn-search-more-wrap {
  grid-column: 1 / -1;
  margin-top: 10px;
  text-align: center;
}

.sn-view-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: rgba(var(--first-color-rgb), 0.15);
  color: var(--title-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(var(--first-color-rgb), 0.3);
  transition: all 0.3s ease;
}

.sn-view-more-btn strong {
  color: var(--first-color);
}

.sn-view-more-btn:hover {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--first-color-rgb), 0.4);
}

.sn-view-more-btn:hover strong {
  color: #fff;
}

.sn-view-more-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.sn-view-more-btn:hover i {
  transform: translateX(5px);
}

.show__content__container {
  display: grid;
  grid-template-columns: 75% 25%;
  gap: 20px;
  width: 99.1%;
  margin-top: 20px;
}

.show__main__content {
  grid-column: 1;
  background-color: #1a1a1a;
  padding: 20px;
  text-align: justify;
  border-radius: 15px;
}

.show__main__content .entry-content p {
  line-height: 35px;
}

.show__main__content .post-content-divider {
  margin: 25px 0;
  border-top: 2px solid white;
}

.show__main__content a {
  color: rgb(144, 148, 167);
  text-decoration: none;
  font-weight: 600;
  font-style: italic;
}

.show__main__content a:hover {
  color: rgba(144, 148, 167, 0.512);
  text-decoration: underline;
}

.show__sidebar__content {
  grid-column: 2;
  background-color: #1a1a1a;
  padding: 20px;
  text-align: justify;
  border-radius: 15px;
}

.show__sidebar__content .widget-area ul {
  margin-left: 20px;
}

.show__comments {
  grid-column: 1 / -1;
  margin-top: 10px;
  background-color: #1a1a1a;
  padding: 20px;
  text-align: justify;
  border-radius: 15px;
  max-width: 74.4%;
}

.title-heading {
  font-weight: 600;
  font-size: 28px;
  border-left: 5px solid hsl(228, 70%, 63%);
  padding-left: 10px;
}

.title-heading i {
  color: hsl(227, 16%, 34%);
}

.title-heading#season-display {
  font-size: 16px;
  font-weight: 600;
}

.title-heading#title-has-margin,
.title-has-margin {
  margin: 20px 0;
}

.title-heading#no {
  display: none !important;
}

.show__comments .comment-respond .comment-reply-title {
  padding: 0 0 15px 0;
  font-weight: 600;
  border-bottom: 2px solid hsl(228, 12%, 61%);
  text-align: center;
  font-size: 24px;
}

.show__comments .comment-number {
  padding: 0 0 15px 0;
  font-weight: 600;
  border-bottom: 2px solid hsl(228, 12%, 61%);
  text-align: left;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

form.comment-form {
  margin-top: 20px;
}

span.required,
label[for="comment"] {
  display: none;
}

.show__comments textarea {
  min-width: calc(100% - 115px);
  max-height: 100px;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid white;
  font-size: 14px;
  background-color: #1a1a1a;
  color: white;
  margin: 20px 0;
}

.show__comments .comments-hello-user {
  font-size: 12px;
  text-align: right;
  border-bottom: 1px solid hsl(228, 12%, 61%);
  padding-bottom: 20px;
}

.show__comments .comments-hello-user a {
  text-decoration: none;
  color: hsl(230, 12%, 61%);
}

.show__comments .comments-hello-user a:hover {
  text-decoration: underline;
}

.show__comments .comment-form-comment {
  display: flex;
  align-items: center;
  gap: 15px;
}

.show__comments .comment-user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.show__comments .comment-user-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.btn-insert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.btn-insert .spoiler-btn {
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  background-color: hsl(227, 23%, 24%);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-left: 115px;
}

.btn-insert .spoiler-btn:hover {
  background-color: hsl(227, 20%, 33%);
  transition: 0.3s ease-in-out;
}

.btn-insert input.submit {
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  background-color: hsl(227, 23%, 24%);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.btn-insert input.submit:hover {
  background-color: hsl(227, 20%, 33%);
  transition: 0.3s ease-in-out;
}

.spoiler-wrapper {
  margin-bottom: 25px;
}

.spoiler-wrapper .spoiler-toggle {
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  background-color: hsl(227, 23%, 24%);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-left: 10px;
}

.spoiler-wrapper .spoiler-content {
  background-color: hsl(227, 23%, 24%);
  color: white;
  padding: 10px;
  margin-top: -5px;
  border-radius: 0px 5px 5px 5px;
  font-style: italic;
  margin-left: 10px;
}

.spoiler-wrapper p {
  display: none;
}

ol.comment-list {
  list-style: none;
}

li.comment {
  padding: 15px;
  background-color: #383838;
  margin-bottom: 10px;
  border-radius: 15px;
  border-left: 10px solid hsl(227, 23%, 24%);
}

.comment-reply-title a {
  text-decoration: none;
  color: hsl(230, 12%, 61%);
}

.comment-reply-title a:hover {
  text-decoration: underline;
}

.comment-author {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comment-author-header {
  display: flex;
  align-items: center;
}

.comment-time-under {
  display: block;
  margin-left: 57px;
}

.comment-time-under a {
  text-decoration: none;
  color: white;
  font-size: 10px;
}

.comment-author-header a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-style: normal;
  padding: 0;
  margin-left: 57px;
  line-height: 1;
}

.comment-author-header span.material-symbols-outlined {
  color: hsl(209, 74%, 64%);
  font-size: 1rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 5px;
}

.comment-time {
  font-weight: normal;
  font-size: 10px;
  display: block;
}

span.comment-author-role#translator {
  padding: 2px 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-left: 10px;
  font-style: normal;
  background-color: hsl(209, 74%, 64%);
  border-radius: 5px;
  color: black;
}

span.comment-author-role#subscriber {
  padding: 2px 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-left: 10px;
  font-style: normal;
  background-color: hsl(22, 85%, 63%);
  border-radius: 5px;
  color: black;
}

span.comment-author-role#administrator {
  padding: 2px 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  margin-left: 10px;
  font-style: normal;
  background-color: hsl(50, 85%, 63%);
  border-radius: 5px;
  color: black;
}

.comment-author cite.fn {
  background-color: #1a1a1a;
  min-width: calc(100% - 45px);
  margin-left: -57px;
  border-bottom: 2px dotted white;
  padding: 10px;
  z-index: 0;
}

.comment-body img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 4px solid #1a1a1a;
  z-index: 1;
}

.comment-body p {
  color: white;
  text-align: justify;
  padding: 10px;
}

.comment-body a {
  color: white;
  text-decoration: none;
}

.comment-body a:hover {
  text-decoration: underline;
}

.comment-body .reply {
  text-align: right;
}

.comment-body .reply a {
  color: white;
  padding: 5px 10px;
  background-color: hsl(227, 23%, 24%);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 5px;
}

.reply .login-message {
  text-align: right;
  font-size: 10px;
}

.comments-area .must-log-in {
  text-align: center;
  margin: 20px 0;
}

.comments-area .must-log-in a {
  text-decoration: none;
  color: hsl(230, 12%, 61%);
}

.comments-area .must-log-in a:hover {
  text-decoration: underline;
}

span.says {
  display: none;
}

ol.children {
  list-style-type: none;
  margin-left: 50px;
}

ol.children li {
  border-left: none;
}

ol.children .comment-body {
  padding: 15px;
  background-color: #383838;
  margin-bottom: 10px;
  border-radius: 15px;
  border-left: 10px solid hsl(227, 23%, 24%);
  border-bottom: 10px solid hsl(227, 23%, 24%);
}

.macd-actors-container,
.macd-cast-container {
  display: flex;
  overflow-x: auto;
  padding: 10px 0;
  transition: none;
  scrollbar-width: thin;
  scrollbar-color: #555 #f1f1f1;
}

.macd-actors-container a {
  color: #ddd;
  text-decoration: none;
}

.macd-actors-container a:hover {
  color: #fff;
  text-decoration: underline;
}

.macd-actors-container::-webkit-scrollbar,
.macd-cast-container::-webkit-scrollbar {
  height: 8px;
}

.macd-actors-container::-webkit-scrollbar-thumb,
.macd-cast-container::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}

.macd-actors-container::-webkit-scrollbar-track,
.macd-cast-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.macd-actor,
.macd-cast-member {
  flex: 0 0 auto;
  margin-right: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 600 !important;
}

.macd-actor-image,
.macd-cast-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgb(144, 148, 167);
  transition: transform 0.3s;
  margin-bottom: 10px;
}

.macd-actor-image:hover,
.macd-cast-image:hover {
  transform: scale(1.1);
  border-color: var(--first-color);
}

.macd-cast-member span {
  font-weight: 600;
  font-size: 12px;
  margin-top: 2px;
}

.wp-block-tt-tab-header-button,
.wp-block-tt-tab-panel {
  background-color: #1e1e1e !important;
}

.wp-block-tt-tabs .wp-block-tt-tab-panel {
  padding: 0px !important;
  border: none !important;
}

.wp-block-tt-tab-header-button {
  color: white !important;
}

.wp-block-tt-tab-panel {
  border-radius: 0 15px 15px 15px;
}

.widget-area a {
  text-decoration: none;
  color: rgb(144, 148, 167);
  font-weight: 600;
}

.widget-area a:hover {
  color: rgba(144, 148, 167, 0.512);
}

.widget-area select {
  width: 100%;
  height: 30px;
  padding: 5px;
  font-size: 16px;
  color: white;
  background-color: #1a1a1a;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin: 5px 0 20px 0;
}

.widget-area select:focus {
  border-color: #007BFF;
  outline: none;
}

.wp-block-separator {
  border: none !important;
}

.sidebar__dropdown-toggle {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  column-gap: 1rem;
  color: var(--text-color);
  padding-left: 2rem;
  transition: color .4s, opacity .4s;
  font-size: 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: var(--font-semi-bold);
}

.sidebar__dropdown-menu {
  display: none;
}

.sidebar__dropdown-menu.show {
  display: block;
}

.sidebar__dropdown-toggle:hover {
  color: var(--first-color);
}

.sidebar__dropdown-toggle i {
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: normal;
}

.sidebar__dropdown#sub-sub-menu {
  margin-top: 0.75rem;
}

.sidebar__dropdown-toggle i.ri-arrow-drop-down-line {
  transition: transform 0.3s ease;
}

.sidebar__dropdown-toggle.active i.ri-arrow-drop-down-line {
  transform: rotate(180deg);
}

.sidebar__dropdown-toggle.sub-dropdown-toggle {
  padding-left: 3rem;
}

.sidebar__dropdown-menu li a {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 1rem;
  color: var(--text-color);
  padding-left: 4rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: color .4s, opacity .4s;
  text-decoration: none;
}

.sidebar__dropdown-menu li a:hover {
  color: var(--first-color);
}

.page-container .um-clear {
  background-color: transparent !important;
}

.page-container .um-profile a {
  font-style: normal !important;
}

.page-container .page-content {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 2px 0 24px var(--shadow-color);
  margin-bottom: 20px;
  text-align: justify;
  line-height: 35px;
}

.page-container .page-content ul.wp-block-list,
.page-container .page-content ul.wp-block-list ul.wp-block-list {
  margin-left: 45px;
}

.page-container .page-content a {
  text-decoration: none;
  color: #fff;
  font-style: italic;
}

.page-container .page-content a:hover {
  text-decoration: underline;
}

.page-container .page-header {
  width: 100%;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 2px 0 24px var(--shadow-color);
  margin-bottom: 20px;
}

.page-container .page-header h1 {
  font-weight: 600;
}

.page-container .um {
  max-width: 60% !important;
}

.page-container .um-header {
  background-color: #1a1a1a;
  border: none;
  border-radius: 0 0 15px 15px !important;
}

.page-container .um-cover {
  background-color: #1a1a1a !important;
  border-radius: 15px 15px 0 0 !important;
}

.page-container .um-cover img {
  border-radius: 15px 15px 0 0;
}

.page-container .um-name {
  font-size: 18px !important;
}

.page-container .um-name a {
  color: white !important;
}

.page-container .um-mycred-badges {
  width: 100%;
  text-align: center;
  padding: 10px 0px 10px 0px;
  margin-top: 10px;
  border-bottom: 2px solid hsl(227, 23%, 24%);
}

.page-container .um-profile-photo a.um-profile-photo-img {
  border: 5px solid hsl(226, 18%, 32%) !important;
}

.page-container .um-mycred-badges img {
  width: 50px !important;
  height: 50px !important;
}

.page-container .um-meta-text {
  color: white !important;
  margin-top: 1rem !important;
  min-height: 0 !important;
  padding: 10px;
}

.page-container .um-profile-nav {
  background-color: #1a1a1a;
  width: 100% !important;
  height: auto !important;
  border-radius: 15px !important;
  padding: 20px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin-top: 20px !important;
}

.page-container .um-profile-nav-item.active {
  background-color: hsl(209, 74%, 64%) !important;
  border-radius: 8px !important;
}

.page-container .um-profile-body {
  background-color: #1a1a1a;
  max-width: 100% !important;
  min-height: 500px !important;
  max-height: 100% !important;
  margin-top: 20px !important;
  padding: 20px !important;
  border-radius: 15px !important;
  color: white !important;
}

.page-container .um-profile-body a {
  color: white !important;
}

.page-container .um-profile-subnav {
  background-color: #1a1a1a !important;
  margin-top: 10px !important;
  border-radius: 15px !important;
}

.wp-block-lbb-lightbox {
  background-color: rgb(58, 58, 58) !important;
  padding: 15px !important;
  border-radius: 15px !important;
  border: 1px solid black !important;
}

.wp-block-tt-tabs .wp-block-lbb-lightbox {
  background-color: none !important;
  padding: 0px !important;
  border-radius: 0px !important;
  border: 0px !important;
}

.user-posts-list-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.user-post-item {
  background-color: #1a1d29;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

.user-post-item:hover {
  transform: translateY(-5px);
}

.user-post-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.user-post-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.user-post-title {
  margin: 0 0 10px;
  font-size: 1.1em;
  line-height: 1.3;
  min-height: 2.6em;
}

.user-post-title a {
  color: #fff;
  text-decoration: none;
}

.user-post-title a:hover {
  color: #ccc;
}

.user-post-excerpt {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.user-post-button {
  display: block;
  background-color: hsl(228, 85%, 63%);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  margin-top: auto;
  transition: background-color 0.2s ease;
}

.user-post-button:hover {
  background-color: hsl(228, 54%, 52%);
}

.pagination-container {
  margin-top: 40px;
  text-align: center;
}

.pagination-container .page-numbers {
  padding: 8px 15px;
  margin: 0 3px;
  border: 1px solid #333;
  border-radius: 5px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-container .page-numbers:hover {
  background-color: hsl(228, 85%, 63%);
  border-color: hsl(228, 85%, 63%);
  color: white;
}

.pagination-container .page-numbers.current {
  background-color: hsl(228, 85%, 63%);
  border-color: hsl(228, 85%, 63%);
  color: white;
  font-weight: bold;
}

.user-post-delete-button {
  display: block;
  background-color: #d63638;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.user-post-delete-button:hover {
  background-color: #a1282a;
}

.sn-notification-dropdown .sn-dropdown__menu {
  left: auto;
  right: 0;
  width: 360px;
  max-width: 90vw;
  margin-top: .5rem;
  padding: 0;
  overflow: hidden;
  transform: translateZ(0);
  cursor: pointer;
}

.notification-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-color);
  font-weight: 600;
}

.notification-list {
  max-height: 450px;
  overflow-y: auto;
}

.notification-item-link {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  transition: background-color 0.2s ease;
}

.notification-item-link:hover {
  background-color: hsla(228, 70%, 63%, 0.1);
}

.notification-item {
  display: flex;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid hsla(228, 24%, 25%, 0.8);
}

.notification-item-link:last-child .notification-item {
  border-bottom: none;
}

.notification-item__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background-color: #333;
}

.notification-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-item__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

.notification-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--title-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification-item__message {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-top: 3px;
}

.notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #e74c3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 0 2px var(--bg-color);
  transform: translateZ(0);
}

.notification-header {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--title-color);
  border-bottom: 1px solid hsla(228, 24%, 25%, 0.8);
}

.notification-item-link-wrapper {
  position: relative;
  display: block;
  border-bottom: 1px solid hsla(228, 24%, 25%, 0.8);
  transition: background-color 0.2s ease;
}

.notification-list .notification-item-link-wrapper:last-child {
  border-bottom: none;
}

.notification-item-link-wrapper:hover {
  background-color: hsla(228, 70%, 63%, 0.1);
}

.notification-item-link-wrapper:has(.notification-delete-btn:hover) {
  background-color: transparent;
}

.notification-item-link {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  padding-right: 3rem;
}

.notification-item {
  padding: .75rem 1rem;
}

.notification-delete-btn {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
  z-index: 5;
}

.notification-delete-btn:hover {
  opacity: 1;
  color: #e74c3c;
}

.notification-footer {
  padding: 0.75rem 1rem;
  text-align: center;
  background: var(--body-color);
  border-top: 1px solid hsla(228, 24%, 25%, 0.8);
}

.notification-clear-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.notification-clear-all:hover {
  color: #e74c3c;
}

.toggle-notification:hover {
  transition: background-color 0.2s ease;
  background-color: hsl(0, 0%, 41%) !important;
}

.um-verified-info {
  display: none;
}

.caption p {
  background-color: rgba(0, 0, 0, 0.554) !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}

.music_icon,
.video_icon,
.audio_icon {
  width: 35px !important;
  height: 35px !important;
  background: url('https://subtitleninjas.com/wp-content/uploads/2024/03/sitewidelogo.png') center no-repeat !important;
  background-size: contain !important;
}

.lbbContent_area {
  border-radius: 15px !important;
}

.music_icon svg,
.video_icon svg,
.audio_icon svg {
  display: none !important;
}

table {
  width: 100%;
  padding: 10px;
  text-align: center;
}

table tr td {
  text-align: center;
  padding: 10px 0;
}

table tr td img {
  display: inline-block;
}

table tr th {
  font-size: 18px;
}

.um-user-bookmarkss-list {
  text-align: center !important;
}

.um-user-bookmarkss-list img {
  width: 200px !important;
  border-radius: 10px !important;
  display: inline-block !important;
  margin-top: 15px !important;
}

.um-user-bookmarks-profile-remove-link {
  background-color: hsl(227, 23%, 24%) !important;
  padding: 5px 10px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

.um-user-bookmarks-profile-remove-link:hover {
  background-color: hsl(227, 20%, 33%) !important;
  transition: .3s ease-in-out;
}

.um-field-label,
.um-field-checkbox,
.um-col-alt-b a,
.um-link-alt,
span.um-field-checkbox-option {
  color: white !important;
}

.nsl-clear h3 {
  margin-top: 1rem !important;
}

.um-profile-body .um-col-alt .um-right a {
  color: black !important;
}

.um-dropdown li a {
  color: black !important;
}

.um-friends-user .um-friends-user-btn a.um-unfriend-btn {
  color: black !important;
}

.show__content__container .um-clear {
  display: none;
}

.fancybox__viewport {
  max-height: 90% !important;
}

.home-page-hidden-posts {
  display: none;
}

footer {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 80px;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  background-color: #1a1a1a;
}

footer a {
  color: rgb(144, 148, 167);
  text-decoration: none;
}

footer p#facebook-footer a:hover {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================================
   CINEMATIC SINGLE POST DESIGN (Unified)
   ========================================= */

.cinematic-hero-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
  margin-top: -30px;
  color: #fff;
  font-family: 'Lexend Deca', sans-serif;
}

.cinematic-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: blur(15px) brightness(0.4);
  transform: scale(1.1);
  z-index: 0;
}

.cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.3) 0%, #111 90%);
  z-index: 1;
}

.cinematic-content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.cinematic-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

.cinematic-left-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.poster-wrapper {
  transform-style: preserve-3d;
}

.cinematic-poster {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.cinematic-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 5px;
}

.cine-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
}

.cine-btn svg {
  width: 22px;
  height: 22px;
}

.btn-play,
.tmdb__post__watch__and__save.tab-trigger-btn {
  background: var(--first-color);
  color: #fff;
  font-size: 17px;
  padding: 16px 20px;
  display: flex !important;
  align-items: center;
  width: 100%;
}

.btn-play:hover,
.tmdb__post__watch__and__save.tab-trigger-btn:hover {
  background: hsl(228, 70%, 53%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -5px rgba(95, 121, 227, 0.5) !important;
}

.cine-btn.btn-secondary,
.btn-watchlist,
.btn-watched {
  width: calc(100% - 40px);
  background-color: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.cine-btn.btn-secondary:hover,
.btn-watchlist:hover,
.btn-watched:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.cine-btn.btn-secondary i {
  font-size: 18px;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.cine-btn.btn-secondary:hover i {
  color: #fff;
}

.cinematic-right-col {
  padding-top: 20px;
  color: #fff;
}

.cinematic-header {
  margin-bottom: 40px;
}

.cinematic-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.tmdb__post__translation__status,
.tmdb__post__kurocchii {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
}

#coming__soon { background-color: #F18A50; }
#under__translation { background-color: hsl(228, 85%, 63%); }
#completed { background-color: grey; }
.tmdb__post__kurocchii { background: linear-gradient(to right, rgb(168, 173, 227), rgb(241, 214, 80)); color: #000; }
#platform { background: linear-gradient(to right, rgb(32, 132, 122), rgb(99, 7, 138)); color: white; }

.cinematic-meta-cats a {
  color: var(--first-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
}

.cinematic-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 15px 0;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cinematic-meta-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.meta-separator {
  color: rgba(255,255,255,0.3);
}

.cinematic-meta-details a {
  color: inherit;
  text-decoration: none;
}

.cinematic-genres {
  margin-top: 10px;
}

.cinematic-genres a {
  color: #ddd;
  text-decoration: none;
}
.cinematic-genres a:hover {
  color: #fff;
  text-decoration: underline;
}

.meta-item.meta-year {
  border: 2px solid white;
  border-radius: 4px;
  padding: 2px 8px;
}

.cinematic-tabs-wrapper {
  margin-top: 40px;
}

.cinematic-tab-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 30px;
}

.tab-trigger {
  padding-bottom: 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  position: relative;
  transition: color 0.3s ease;
}

.tab-trigger.active {
  color: #fff;
}

.tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--first-color);
  transition: width 0.3s ease;
}

.tab-trigger.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

.tab-pane p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.crew-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.crew-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
}

.crew-member img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.2);
  margin-bottom: 8px;
  transition: transform 0.3s;
}

.crew-member:hover img {
  transform: scale(1.1);
  border-color: var(--first-color) !important;
}

.crew-member a {
  color: #ddd;
  font-size: 11px;
  text-decoration: none;
  font-weight: 600;
}

.crew-member a:hover {
  color: #fff;
  text-decoration: underline;
}

.cinematic-subtitle-container {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.subtitle-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subtitle-header i {
  font-size: 24px;
  color: var(--first-color) !important;
}

.subtitle-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.cinematic-notice {
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.notice-info {
  background-color: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: #90caf9;
}

.notice-warning {
  background-color: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: #ffcc80;
}

.subtitle-styled-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 45px 15px 20px;
  border-radius: 8px;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 24px;
}

.subtitle-styled-form select:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.subtitle-styled-form select:focus {
  border-color: var(--first-color) !important;
  box-shadow: 0 0 0 2px rgba(95, 121, 227, 0.2) !important;
}

.subtitle-styled-form option {
  background-color: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.subtitle-styled-form input[type="submit"],
.subtitle-styled-form button[type="submit"] {
  background-color: var(--first-color) !important;
  color: white;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(95, 121, 227, 0.3) !important;
}

.subtitle-styled-form input[type="submit"]:hover,
.subtitle-styled-form button[type="submit"]:hover {
  background-color: hsl(228, 70%, 53%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(95, 121, 227, 0.5) !important;
}

h3#tab-title {
  border-left: 5px solid hsl(228, 70%, 63%);
  padding-left: 10px;
  margin-bottom: 10px;
}

.admin-edit-wrapper a {
  color: #ddd;
  text-decoration: none;
  background-color: hsl(209, 74%, 64%);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  font-size: .7rem;
  text-transform: uppercase;
}
.admin-edit-wrapper a:hover {
  color: #fff;
}

.episode-block-item p {
  display: none !important;
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::before,
[data-tooltip]::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  bottom: 100%;
  margin-bottom: 12px;
  padding: 6px 12px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: 'Lexend Deca', sans-serif;
}

[data-tooltip]::after {
  content: '';
  bottom: 100%;
  margin-bottom: 6px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.tmdb__post__watch__and__save.tab-trigger-btn::before,
.tmdb__post__watch__and__save.tab-trigger-btn::after {
  display: none !important;
  content: none !important;
}

/* =========================================
   MEDIA QUERIES (Unified)
   ========================================= */

@media screen and (max-width: 1200px) {
  .show__content__container {
    grid-template-columns: 1fr;
  }

  .show__main__content,
  .show__sidebar__content,
  .show__comments {
    grid-column: 1;
    max-width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .sn-burger {
    display: block;
  }

  .sn-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100vh;
    background: hsl(227, 23%, 24%);
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding-top: var(--header-height);
    z-index: var(--z-fixed);
    overflow-y: auto;
  }

  .sn-header__inner .sn-nav {
    flex: 0;
  }

  .sn-header__actions {
    margin-left: auto;
  }

  .sn-nav.open {
    transform: translateX(0);
  }

  .sn-nav__list {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem 1.25rem;
  }

  .sn-nav__list > li {
    padding-block: 0.25rem;
    margin-bottom: 1rem;
  }

  .sn-nav__list > li:first-child {
    margin-top: 0;
  }

  .sn-header__inner {
    grid-template-rows: auto;
  }

  .sn-nav .sn-dropdown .sn-dropdown__menu {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
  }

  .sn-nav .sn-dropdown .sn-dropdown .sn-dropdown__menu {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    transition: max-height .3s ease, opacity .3s ease;
  }

  .sn-nav .sn-dropdown .sn-dropdown.open > .sn-dropdown__menu,
  .sn-nav .sn-dropdown.open > .sn-dropdown__menu {
    display: block;
    max-height: 1000px;
    opacity: 1;
  }

  .page-container .um {
    max-width: 100% !important;
  }
  
  .cinematic-hero-wrapper {
    min-height: auto;
    padding-top: 50px;
  }
  
  .cinematic-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .cinematic-hero-wrapper {
    padding: 40px 0;
    align-items: flex-start;
  }

  .cinematic-left-col {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .cinematic-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cinematic-actions .cine-btn {
    flex: 1 1 auto;
    padding: 12px;
    font-size: 14px;
  }
  .btn-play {
    width: 100%;
    flex: 1 1 100%;
    margin-bottom: 10px;
  }

  .cinematic-right-col {
    text-align: center;
  }

  .cinematic-title {
    font-size: 2.5rem;
  }

  .cinematic-meta-details {
    justify-content: center;
  }

  .cinematic-tab-nav {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .tab-trigger {
    font-size: 15px;
  }
  .cinematic-badges {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .header__right-toggle-wrapper {
    flex-direction: row;
  }

  .archive-posts-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 15px;
  }

  .archive-post,
  .archive-post.carousel-item {
    border-radius: 10px;
  }
  
  .macd-cast-container {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .macd-cast-image {
    width: 60px;
    height: 60px;
  }

  .macd-cast span {
    font-size: 0.75rem;
  }

  .sn-notification-dropdown {
    position: static !important;
  }

  .sn-notification-dropdown .sn-dropdown__menu {
    position: fixed !important;
    top: var(--header-height) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: calc(100vw - 3rem) !important;
    max-width: calc(100vw - 3rem) !important;
    min-width: auto !important;
    margin: 0 !important;
    padding: 0.5rem !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    z-index: 1001 !important;
  }

  .notification-item {
    padding: 0.5rem 0.75rem !important;
    white-space: normal !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .notification-list {
    max-height: 200px !important;
    overflow-y: auto !important;
  }

  body,
  html {
    overflow-x: hidden !important;
  }

  .sn-search-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subtitle-styled-form form {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .subtitle-styled-form select {
    flex: 1;
  }

  .subtitle-styled-form input[type="submit"],
  .subtitle-styled-form button[type="submit"] {
    width: auto;
    margin-top: 0;
    flex-shrink: 0;
  }

  .cinematic-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .tmdb__post__watch__and__save.tab-trigger-btn {
    flex: 1 1 100% !important;
    width: 100% !important;
    margin-bottom: 5px;
  }

  .cine-btn.btn-secondary {
    flex: 1 !important;
    width: auto !important;
    padding: 12px 0 !important;
    justify-content: center !important;
  }

  .cine-btn.btn-secondary .btn-text {
    display: none !important;
  }

  .cine-btn.btn-secondary i {
    margin-right: 0 !important;
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 600px) {
  .search-result-item a {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .search-result-thumbnail-wrapper {
    width: 100px;
    height: 150px;
  }

  .search-result-info {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cinematic-title {
    font-size: 2rem;
  }
  .cinematic-actions {
    flex-direction: column;
  }
  .cine-btn {
    width: 100%;
  }
}

.team-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

.credit-group {
  flex: 1 1 0; 
  min-width: 200px;
}

.credit-group .crew-list {
  justify-content: flex-start; 
}

@media screen and (max-width: 600px) {
  .team-credits {
    flex-direction: row;
  }
  .credit-group {
    min-width: 100%;
  }
}