:root {
  --bg: #08080b;
  --bg-soft: #101015;
  --panel: #16161d;
  --panel-2: #1f1f28;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f8f8fb;
  --muted: #aaaab8;
  --muted-2: #767687;
  --accent: #a72cff;
  --accent-2: #712fff;
  --accent-hot: #ff3d88;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --container: 1560px;
  --font: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(112, 47, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #0d0d12 0, #08080b 260px, #08080b 100%);
  color: var(--text);
}

body.mobile-menu-open,
body.search-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: 0;
  cursor: pointer;
}

.wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(8, 8, 11, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(280px, 760px) auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.logo,
.logo-footer {
  display: inline-flex;
  align-items: baseline;
  min-width: max-content;
  color: #fff;
  font-weight: 950;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.logo {
  font-size: clamp(25px, 2vw, 34px);
}

.logo-footer {
  font-size: 27px;
}

.logo-main {
  color: #fff;
}

.logo-accent {
  margin-left: 3px;
  background: linear-gradient(180deg, #d07cff 0%, #7f37ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-bang {
  margin-left: 1px;
  color: var(--accent-hot);
}

.search-holder {
  position: relative;
  width: 100%;
}

.search-form-holder {
  position: relative;
  z-index: 6;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: #15151a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.search-form:focus-within {
  border-color: rgba(167, 44, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(167, 44, 255, 0.2), 0 12px 38px rgba(0, 0, 0, 0.35);
}

.search-magnifier,
.trend-icon,
.icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}

.search-magnifier {
  margin-left: 18px;
  margin-right: 8px;
}

.search-magnifier::before,
.search-icon::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-magnifier::after,
.search-icon::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 7px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.search-input {
  min-width: 0;
  flex: 1 1 auto;
  height: 100%;
  padding: 0 10px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111118;
  font-size: 16px;
  font-weight: 700;
}

.search-input::placeholder {
  color: #777784;
}

.search-close,
.search-clear {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: transparent;
  color: #272730;
}

.search-close::before,
.search-clear::before,
.search-clear::after,
.mobile-menu-close::before,
.mobile-menu-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  margin: -1px 0 0 -8px;
}

.search-close::before {
  transform: rotate(180deg);
}

.search-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  margin: -6px 0 0 -7px;
  transform: rotate(45deg);
}

.search-clear {
  position: relative;
}

.search-clear::before,
.mobile-menu-close::before {
  transform: rotate(45deg);
}

.search-clear::after,
.mobile-menu-close::after {
  transform: rotate(-45deg);
}

.search-submit {
  height: 100%;
  padding: 0 22px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 5;
  display: none;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(18, 18, 24, 0.98);
  box-shadow: var(--shadow);
}

.search-holder:focus-within .search-drop,
body.search-open .search-drop {
  display: block;
}

.scrollable {
  max-height: min(74vh, 620px);
  overflow: auto;
  padding: 22px;
}

.search-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.search-muted {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.no-results {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 800;
  text-align: left;
}

.no-results:hover {
  background: rgba(167, 44, 255, 0.18);
}

.header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-button,
.language-switcher summary {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: 0.18s ease;
}

.header-button:hover,
.language-switcher summary:hover {
  border-color: rgba(167, 44, 255, 0.55);
  background: rgba(167, 44, 255, 0.16);
}

.header-button-search::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.header-button-search::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.header-button-menu::before,
.header-button-menu::after,
.header-button-menu {
  color: #fff;
}

.header-button-menu::before,
.header-button-menu::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.header-button-menu::before {
  top: 15px;
  box-shadow: 0 7px 0 currentColor;
}

.header-button-menu::after {
  top: 29px;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-code {
  font-size: 12px;
  font-weight: 950;
}

.language-switcher__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  min-width: 220px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #16161d;
  box-shadow: var(--shadow);
}

.language-switcher__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.language-switcher__dropdown a:hover,
.language-switcher__dropdown a.active {
  background: rgba(167, 44, 255, 0.16);
  color: #fff;
}

.nav {
  position: sticky;
  top: 77px;
  z-index: 70;
  background: rgba(8, 8, 11, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 13px 0;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #dedee7;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link.bold {
  padding: 11px 15px;
}

.nav-link.sm {
  padding: 9px 12px;
  font-size: 13px;
}

.nav-link:hover,
.nav-link.active {
  border-color: rgba(167, 44, 255, 0.55);
  background: rgba(167, 44, 255, 0.18);
  color: #fff;
}

.nav-link.color1 {
  border-color: rgba(255, 61, 136, 0.35);
}

.nav-link.color2 {
  border-color: rgba(167, 44, 255, 0.5);
}

.icon::before {
  display: block;
  content: "";
}

.home-icon::before {
  width: 14px;
  height: 14px;
  border-radius: 4px 4px 3px 3px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%);
}

.list-icon::before {
  width: 16px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.tag-icon::before {
  width: 15px;
  height: 15px;
  border-radius: 3px 8px 8px 3px;
  background: currentColor;
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
}

.crown-icon::before {
  width: 18px;
  height: 14px;
  background: currentColor;
  clip-path: polygon(0 35%, 25% 72%, 50% 5%, 75% 72%, 100% 35%, 88% 100%, 12% 100%);
}

.lang-icon::before {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.main {
  padding: 28px 0 52px;
}

.ad-slot {
  margin: 16px 0;
  overflow: hidden;
  border-radius: var(--radius);
  text-align: center;
}

.block-row {
  margin: 0 0 42px;
}

.headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 22px;
}

.heading {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 950;
  letter-spacing: -1px;
  line-height: 1.05;
}

.heading span {
  display: inline;
}

.trending-section {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.trending-title-holder {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.trending-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.list-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.max-3-rows {
  max-height: 128px;
  overflow: hidden;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.th {
  min-width: 0;
}

.th-image-holder {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #15151c;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
}

.th-link-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.th-link-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52) 100%);
  content: "";
  opacity: 0;
  transition: opacity 0.2s ease;
}

.th:hover .th-link-image::after {
  opacity: 1;
}

.th-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111118;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.th:hover .th-image {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.th-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 7px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.th-info {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  padding-top: 12px;
}

.th-ava {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.th-head {
  min-width: 0;
}

.th-row-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: start;
  gap: 8px;
}

.th-title {
  display: -webkit-box;
  overflow: hidden;
  color: #f4f4fa;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.th-title:hover {
  color: #fff;
}

.th-btn {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
}

.th-btn::before {
  position: absolute;
  top: 7px;
  left: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
  content: "";
}

.th-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.list-details,
.th-row-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 6px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.list-details .item,
.th-row-info .item {
  display: inline-flex;
  align-items: center;
}

.list-details .item:not(:last-child)::after,
.th-row-info .item:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.6;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-weight: 800;
}

.pagination {
  margin: 34px 0 0;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 900;
}

.pagination a:hover,
.pagination .active span,
.pagination span.active {
  border-color: rgba(167, 44, 255, 0.72);
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.video-page {
  margin-top: 4px;
}

.video-headline {
  align-items: flex-end;
}

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.player-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #000;
  box-shadow: var(--shadow);
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

#player,
.jwplayer {
  width: 100% !important;
  height: 100% !important;
}

.watch-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.video-stats,
.rate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.video-stats span,
.rate a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.rate svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rate a:hover {
  border-color: rgba(167, 44, 255, 0.55);
  background: rgba(167, 44, 255, 0.18);
}

.video-tags {
  margin-top: 16px;
}

.video-description,
.video-outgoing-links,
.content-text,
.seo_description {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #cdcdda;
  font-size: 15px;
}

.video-description p,
.content-text p,
.seo_description p {
  margin: 0 0 14px;
}

.related-section {
  margin-top: 42px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #0a0a0e;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 34px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.footer-link:hover {
  border-color: rgba(167, 44, 255, 0.55);
  color: #fff;
}

.copyright,
.counter {
  color: var(--muted-2);
  font-size: 13px;
}

.mobile-menu-holder {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding-top: 18px;
  background: rgba(8, 8, 11, 0.96);
  backdrop-filter: blur(18px);
}

body.mobile-menu-open .mobile-menu-holder {
  display: block;
}

.mobile-menu-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.mobile-menu-close {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-menu-scrollable {
  max-height: calc(100vh - 90px);
  overflow: auto;
}

.mobile-menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-secondary {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 900;
}

.mobile-menu-item.active .mobile-menu-link,
.mobile-menu-link.active,
.mobile-menu-link:hover {
  border-color: rgba(167, 44, 255, 0.55);
  background: rgba(167, 44, 255, 0.18);
}

.cats,
.tags,
.content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}

.cats a,
.tags a,
.content > div a,
.short {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 850;
}

.cats a:hover,
.tags a:hover,
.content > div a:hover,
.short:hover {
  border-color: rgba(167, 44, 255, 0.55);
  background: rgba(167, 44, 255, 0.16);
}

.central,
.error-hero {
  max-width: 760px;
  margin: 40px auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.error-hero__code {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 950;
}

.error-hero__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 58px);
}

.error-hero__text {
  color: var(--muted);
}

.dmca-abuse-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.76);
}

.dmca-abuse-modal.open {
  display: flex;
}

.dmca-abuse-modal > * {
  max-width: 760px;
  width: 100%;
  border-radius: 18px;
  background: #fff;
  color: #111;
}

.lazy-hidden {
  opacity: 0.25;
}

.lazy-loaded {
  opacity: 1;
}

@media (max-width: 1280px) {
  .thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    min-height: 66px;
  }

  .logo {
    font-size: 24px;
  }

  .search-holder {
    position: fixed;
    inset: 12px;
    z-index: 130;
    display: none;
    width: auto;
  }

  body.search-open .search-holder {
    display: block;
  }

  .search-close {
    position: relative;
    display: inline-flex;
    order: -1;
    align-items: center;
    justify-content: center;
  }

  .search-submit {
    padding: 0 14px;
  }

  .search-drop {
    display: block;
    top: 58px;
    max-height: calc(100vh - 84px);
  }

  .nav {
    top: 67px;
  }

  .thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .watch-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header-row {
    grid-template-columns: 1fr auto;
  }

  .logo {
    max-width: calc(100vw - 128px);
    overflow: hidden;
    font-size: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher {
    display: none;
  }

  .nav-link.bold {
    padding: 10px 13px;
  }

  .main {
    padding-top: 20px;
  }

  .headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .heading {
    font-size: 25px;
  }

  .thumbs {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .th-info {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .th-ava {
    width: 38px;
    height: 38px;
  }

  .scrollable {
    padding: 16px;
  }

  .trending-section,
  .video-description,
  .content-text,
  .seo_description,
  .watch-panel {
    border-radius: 16px;
    padding: 16px;
  }

  .pagination a,
  .pagination span {
    min-width: 38px;
    height: 38px;
  }
}
