/**
 * YesPorn VIP Clone Theme - theme.css
 */

html {
  /* Default Light Mode Colors - Premium White & Black Aesthetic */
  --black-bg: #fff;
  --white-bg: #050508;
  --black-color: #fff;
  --white-color: #050508;
  --color-inverse: #000;

  --main-background: #f8fafc; /* premium clean soft slate-light gray */
  --header-background: rgba(255, 255, 255, 0.85);
  --header-background2: rgba(255, 255, 255, 0.95);
  --thumb-box-bg: #ffffff; /* pure white cards */
  --thumb-placeholder-bg: #e2e8f0;
  --footer-bg: #0f172a; /* classic dark footer for grounding the design */
  --footer-box-bg: #1e293b;
  --pagination-bg: #ffffff;
  --sort-bg: #ffffff;
  --tags-link-bg: #e2e8f0;
  --tags-link-bg-hover: #f43f5e;
  --input-bg: #f1f5f9;
  --btn-bg: #ffffff;
  --member-menu-bg: #ffffff;
  --img-placeholder-bg: #cbd5e1;
  --profile-bg: #ffffff;
  
  --general-color: #1e293b;
  --main-grey-color: #64748b;
  --member-menu-color: #64748b;
  --thumb-text-color: #0f172a;
  --nav-link-color: #64748b;
  --nav-link-active-color: #0f172a;
  --pagination-color: #475569;
  --sort-color: #64748b;
  --tags-link-color: #0f172a;
  --input-color: #0f172a;
  --btn-color: #0f172a;
  --heading-title-color: #0f172a;
  --desc-color: #334155;
  --theme-color: #64748b;
  --theme-hover-color: #f43f5e;
  --btn-gold: #f43f5e;
  --footer-color: #94a3b8;
  --header-border: 1px solid #e2e8f0;
  --sort-box-bg: #ffffff;
  --comment-item-bg: #f1f5f9;
  --comment-item-color: #1e293b;
}

html.dark {
  /* Dark Mode Colors - Sleek Premium Theme */
  --black-bg: #050508;
  --white-bg: #fff;
  --black-color: #050508;
  --white-color: #fff;
  --color-inverse: #fff;

  --main-background: #07070b;
  --header-background: rgba(14, 14, 20, 0.85);
  --header-background2: rgba(9, 9, 14, 0.9);
  --thumb-box-bg: #0e0e14;
  --thumb-placeholder-bg: #0e0e14;
  --footer-bg: #050508;
  --footer-box-bg: #0c0c12;
  --pagination-bg: #0e0e14;
  --sort-bg: #0e0e14;
  --tags-link-bg: #0e0e14;
  --tags-link-bg-hover: #1e1b4b;
  --input-bg: #11111a;
  --btn-bg: #0e0e14;
  --member-menu-bg: #0e0e14;
  --img-placeholder-bg: #050508;
  --profile-bg: #0e0e14;
  
  --general-color: #f1f5f9;
  --main-grey-color: #94a3b8;
  --member-menu-color: #94a3b8;
  --thumb-text-color: #f1f5f9;
  --nav-link-color: #94a3b8;
  --nav-link-active-color: #ffffff;
  --pagination-color: #94a3b8;
  --sort-color: #94a3b8;
  --tags-link-color: #f43f5e;
  --input-color: #f1f5f9;
  --btn-color: #f1f5f9;
  --heading-title-color: #ffffff;
  --desc-color: #e2e8f0;
  --theme-color: #94a3b8;
  --theme-hover-color: #ec4899;
  --btn-gold: #f43f5e;
  --footer-color: #94a3b8;
  --header-border: 1px solid #1e1e2d;
  --sort-box-bg: #0d0d15;
  --comment-item-bg: #0b0b10;
  --comment-item-color: #f1f5f9;
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: var(--general-color);
  background: var(--main-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

input, select, textarea {
  font-family: inherit;
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--general-color);
  border-radius: 10px;
  padding: 8px 12px;
}

/* Layout Wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.container {
  max-width: 1460px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.main {
  flex-grow: 1;
  padding: 20px 0;
}

/* Header Utilities */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 25px;
  background: var(--header-background) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  border-bottom: var(--header-border) !important;
  transition: all 0.3s ease;
}

html.dark .header {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Main Brand Header Block */
.header-holder {
  background: transparent !important;
  border-bottom: var(--header-border) !important;
  padding: 12px 0;
}

.header-holder .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.text-logo-link {
  display: flex;
  align-items: center;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.text-logo-link:hover {
  transform: scale(1.02);
}

.logo-text-gradient {
  background: linear-gradient(135deg, #a78bfa, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 0 30px rgba(244, 63, 94, 0.25);
}

.logo-text-accent {
  color: #f43f5e;
  font-weight: 800;
  font-style: italic;
  text-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
  margin-left: 1px;
}

.search {
  flex-grow: 1;
  max-width: 630px;
}

.search form {
  width: 100%;
}

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

.search input {
  width: 100%;
  height: 42px;
  border-radius: 22px;
  background: var(--input-bg) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 10px 45px 10px 20px;
  color: var(--input-color) !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

html.dark .search input {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.search input:focus {
  background: var(--sort-box-bg) !important;
  border-color: rgba(244, 63, 94, 0.6) !important;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.03);
  color: var(--input-color) !important;
}

html.dark .search input:focus {
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-search {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.btn-search svg {
  width: 18px;
  height: 18px;
  fill: #94a3b8;
  transition: fill 0.3s;
}

.btn-search:hover svg {
  fill: #f43f5e;
  filter: drop-shadow(0 0 5px rgba(244, 63, 94, 0.5));
}

.buttons-col {
  display: flex;
  align-items: center;
  gap: 15px;
}

.upload-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--general-color) !important;
  background: rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

html.dark .upload-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #f1f5f9 !important;
}

.upload-btn:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px);
}

html.dark .upload-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.upload-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.upload-btn.upgrades {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6) !important; /* Premium Violet gradient for upgrade */
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.upload-btn.upgrades:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
  filter: brightness(1.05);
}

.toggleTheme {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  transition: color 0.3s;
}

.toggleTheme.mobile {
  display: none;
}

@media (max-width: 1024px) {
  .toggleTheme.mobile {
    display: flex;
  }
}

.toggleTheme:hover {
  color: #ea1853;
}

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

.html.light .icon-sun,
html:not(.light) .icon-sun {
  display: none;
}

html.light .icon-moon {
  display: none;
}

html.light .icon-sun {
  display: block;
}

/* Language selector */
.leng-holder {
  position: relative;
  cursor: pointer;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.lang-item img {
  width: 16px;
  height: 11px;
}

.lang-item svg {
  width: 8px;
  height: 8px;
  fill: currentColor;
}

.leng-holder .drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--sort-bg);
  border-radius: 8px;
  padding: 5px 0;
  display: none;
  z-index: 100;
  min-width: 120px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.leng-holder.lang-open .drop {
  display: block;
}

.leng-holder .drop a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
}

.leng-holder .drop a:hover {
  background: #ea1853;
  color: #000;
}

.leng-holder .drop a img {
  width: 16px;
  height: 11px;
}

.mebers-block {
  display: flex;
  gap: 8px;
}

.mebers-block a {
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Log in Button */
#login {
  background: rgba(0, 0, 0, 0.03) !important;
  color: var(--general-color) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

html.dark #login {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#login:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px);
}

html.dark #login:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Sign up Button */
#signup {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}

#signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(244, 63, 94, 0.35);
  filter: brightness(1.05);
}

.btn-mobile {
  display: none;
}

.menu-icon {
  display: none;
}

/* Navigation Bar — full screen width, items spread evenly */
.header-nav {
  background: transparent !important;
  border-bottom: none !important;
  padding: 0;
  width: 100%;
}

.nav-full-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-full-inner::-webkit-scrollbar { display: none; }

/* Keep legacy .header-inner inside nav working on mobile */
.header-nav .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.header-nav .header-inner::-webkit-scrollbar { display: none; }

/* Nav link — never clip text, more generous padding */
.nav-link {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 18px;
}

.nav-link {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nav-link-color) !important;
  padding: 12px 10px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f43f5e, #ec4899) !important;
  border-radius: 3px 3px 0 0;
  transition: width 0.3s ease;
  box-shadow: 0 -1px 8px rgba(244, 63, 94, 0.6);
}

.nav-link:hover, .nav-link.active {
  color: var(--nav-link-active-color) !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.nav-link:hover::before, .nav-link.active::before {
  width: 100%;
}

.nav-link .green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00ff00;
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: 0 0 5px #00ff00;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

/* Sections & Grid Layouts */
.section-row {
  margin-bottom: 35px;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border-left: 4px solid #ea1853;
  padding-left: 10px;
}

.heading .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-title-color);
}

.heading .more-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.22);
  border-radius: 20px;
  padding: 6px 14px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.heading .more-title:hover {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
  transform: translateY(-1px);
}

.heading .more-title svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.22s ease;
}

.heading .more-title:hover svg {
  transform: translateX(3px);
  transform: rotate(-90deg);
}

/* Responsive Video Thumbs Grid */
.thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.thumb {
  width: 25%;
  padding: 10px;
}

.thumb a {
  display: block;
  background: var(--thumb-box-bg);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumb a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 0 15px rgba(244, 63, 94, 0.05);
  border-color: rgba(244, 63, 94, 0.3);
  background: var(--sort-box-bg);
}

html.dark .thumb a {
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

html.dark .thumb a:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
}

.thumb .img-holder {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: var(--thumb-placeholder-bg);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.thumb .img-holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb .item-bottom {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.thumb .qualtiy {
  background: #ea1853;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 3px;
}

.thumb .time {
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 4px;
}

.thumb .item-top {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.thumb:hover .item-top {
  opacity: 1;
}

.thumb .item-heart, .thumb .item-time {
  background: rgba(0,0,0,0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}

.thumb .item-heart:hover, .thumb .item-time:hover {
  background: #ea1853;
  color: #000;
}

.thumb .item-heart svg, .thumb .item-time svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.thumb .title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--thumb-text-color);
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 36px;
  transition: color 0.3s;
}

.thumb:hover .title {
  color: #ea1853;
}

.thumb-bottom {
  display: flex;
  font-size: 11px;
  color: var(--main-grey-color);
  gap: 10px;
}

.thumb-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.thumb-item svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* Hover video styles */
.thumb .img-holder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

/* Channels & Models Thumb grids */
.channels-thumbs .thumb .img-holder {
  padding-bottom: 100%; /* Square aspect ratio for channels */
}

.models-thumbs .thumb .img-holder {
  padding-bottom: 120%; /* Portrait aspect ratio for model profiles */
}

.models-thumbs .title {
  display: flex;
  align-items: center;
  gap: 5px;
  height: auto;
}

.flag-holder img {
  width: 16px;
  height: 11px;
  vertical-align: middle;
}

/* Premium Pagination Design */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0 20px;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  padding: 0 16px;
  background: var(--thumb-box-bg);
  border: 1px solid var(--header-border);
  color: var(--general-color);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Page numbers should be perfect circles */
.pagination a.page-numbers:not(.prev):not(.next),
.pagination span.page-numbers:not(.current):not(.prev):not(.next) {
  padding: 0;
  width: 40px;
}

.pagination span.current {
  background: linear-gradient(135deg, #ff4757, #8e44ad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.pagination a:hover {
  background: linear-gradient(135deg, #ff4757, #8e44ad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(244, 63, 94, 0.35);
}

.pagination .prev, .pagination .next {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
  gap: 6px;
}

.pagination svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Responsive Small Cards for Models */
.models-thumbs .thumb {
  width: 16.66% !important; /* 6 per row on desktop */
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .models-thumbs .thumb {
    width: 20% !important; /* 5 per row */
  }
}

@media (max-width: 992px) {
  .models-thumbs .thumb {
    width: 25% !important; /* 4 per row */
  }
}

@media (max-width: 768px) {
  .models-thumbs .thumb {
    width: 33.33% !important; /* 3 per row */
  }
}

@media (max-width: 480px) {
  .models-thumbs .thumb {
    width: 50% !important; /* 2 per row */
  }
}

/* Single Video Layout */
.video-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.title-holder {
  margin-bottom: 15px;
}

.title-holder h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.count-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--main-grey-color);
  margin-right: 15px;
}

.count-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.top-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.sub-btn {
  display: inline-flex;
  border-radius: 10px;
  background: #2e2f35;
  overflow: hidden;
  font-size: 13px;
}

.sub-btn .text {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sub-btn .count {
  background: #1d1d1d;
  padding: 8px 12px;
  font-weight: 700;
}

.sub-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.btn.gold {
  background: #ea1853;
  color: #000;
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn.gold svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Video Player */
.player-holder {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.player-wrap {
  width: 100%;
  position: relative;
}

.player-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Custom Video Controls Bar */
.video-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--thumb-box-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

html.dark .video-controls {
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.rate-holder {
  display: flex;
  gap: 8px;
}

.rate-like, .rate-dislike {
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--general-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

html.dark .rate-like, html.dark .rate-dislike {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rate-like svg, .rate-dislike svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rate-like:hover {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.rate-dislike:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.btn-favourites {
  display: flex;
  gap: 5px;
}

.btn-favourites .btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--general-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

html.dark .btn-favourites .btn {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-favourites .btn:hover {
  background: #f43f5e;
  color: #fff;
  border-color: #f43f5e;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.btn-favourites svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sort-control {
  display: flex;
  gap: 8px;
}

.tab-btn {
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--general-color);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

html.dark .tab-btn {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

.tab-btn:hover:not(.active) {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}

html.dark .tab-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.tab-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Tabs Content */
.block-tabs {
  background: var(--thumb-box-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 25px;
}

html.dark .block-tabs {
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tab-content {
  display: none;
}

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

.description {
  font-size: 15px;
  line-height: 1.5;
  color: var(--desc-color);
  margin-bottom: 15px;
}

/* Tags Lists */
.tags-row-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  height: 40px;
  overflow: hidden;
}

.tags-row.expanded {
  height: auto;
}

.tags-row a {
  background: var(--input-bg) !important;
  color: var(--general-color) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.tags-row a:hover {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.25);
}

#toggle-btn {
  background: var(--input-bg) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--general-color) !important;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

#toggle-btn:hover {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #fff !important;
  border: none !important;
}

/* Screenshots Gallery */
.block-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.screen-img {
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.screen-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.screen-img:hover img {
  transform: scale(1.05);
}

/* Share block */
.block-share form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.block-share .row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.block-share label {
  font-weight: 500;
  font-size: 13px;
  color: var(--main-grey-color);
}

.block-share input {
  width: 100%;
  background: var(--input-bg) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--general-color) !important;
  border-radius: 8px;
  height: 42px;
  padding: 10px 14px;
  transition: all 0.2s ease;
}

.block-share input:focus {
  background: var(--sort-box-bg) !important;
  border-color: rgba(244, 63, 94, 0.5) !important;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.15);
}

/* Comments block */
.comment-holder {
  padding-top: 10px;
}

.block-new-comment .row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.block-new-comment label {
  font-weight: 500;
  color: var(--main-grey-color);
}

.block-new-comment input[type="text"], .block-new-comment textarea {
  width: 100%;
  background: var(--input-bg) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: var(--general-color) !important;
  border-radius: 8px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.block-new-comment input[type="text"]:focus, .block-new-comment textarea:focus {
  background: var(--sort-box-bg) !important;
  border-color: rgba(244, 63, 94, 0.5) !important;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.15);
}

.smileys-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.smileys-bar img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.captcha-control .image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-control img {
  border-radius: 8px;
  height: 38px;
}

.captcha-control input {
  width: 100px;
  height: 38px;
  text-align: center;
}

.submit {
  background: #ea1853;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  height: 38px;
  transition: opacity 0.3s;
}

.submit:hover {
  opacity: 0.9;
}

/* Related Videos Header */
.ralated-holder {
  margin-top: 30px;
}

.sort-holder {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  border-left: 4px solid #ea1853;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sort-holder a {
  font-size: 12px;
  color: var(--main-grey-color);
  font-weight: 400;
}

.sort-holder a:hover {
  color: #ea1853;
}

/* Footer Section */
/* Simplified footer — brand + description + copyright only */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--header-border);
  padding: 40px 0 28px;
  color: var(--footer-color);
  font-size: 13.5px;
  margin-top: 50px;
}

.footer-simple-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
}

.footer-desc {
  line-height: 1.65;
  color: var(--main-grey-color);
  font-size: 13px;
  max-width: 520px;
  margin: 0;
}

.footer-copy {
  font-size: 12px;
  color: var(--main-grey-color);
  margin: 0;
}

.footer-copy a {
  color: #f43f5e;
  font-weight: 600;
}

/* Custom Ad-Blocker crash message layout */
.player-crash-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin: 15px 0;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.crash-icon {
  font-size: 40px;
  color: #ff4757;
  margin-bottom: 10px;
}

.crash-title {
  font-size: 24px;
  font-weight: 700;
  color: #ff4757;
  margin-bottom: 10px;
}

.crash-message {
  font-size: 14px;
  color: #ccc;
  max-width: 500px;
  margin-bottom: 20px;
}

.retry-button {
  background: #ff4757;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.retry-button:hover {
  background: #ff3742;
}

/* Responsive queries */
@media (max-width: 1024px) {
  .header-holder .header-inner {
    flex-wrap: wrap;
  }
  
  .logo {
    order: 1;
    margin-right: auto;
  }

  .buttons-col {
    display: flex;
    order: 2;
    margin-left: 0;
    margin-right: 15px;
    align-items: center;
  }
  
  .buttons-col .upload-btn.upgrades {
    display: none;
  }

  .btn-mobile {
    display: flex;
    order: 3;
    margin-right: 15px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .btn-mobile svg {
    width: 22px;
    height: 22px;
    fill: var(--general-color);
  }
  
  .btn-mobile .svg-icon {
    display: none;
  }
  
  .menu-icon {
    display: block;
    order: 4;
    width: 24px;
    height: 18px;
    position: relative;
  }
  
  .menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--general-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .menu-icon span:nth-child(1) { top: 0px; }
  .menu-icon span:nth-child(2) { top: 7px; }
  .menu-icon span:nth-child(3) { top: 14px; }
  
  /* Mobile menu open animation state */
  body.nav-open .menu-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(135deg);
    background: #ea1853;
  }
  body.nav-open .menu-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  body.nav-open .menu-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-135deg);
    background: #ea1853;
  }

  .search {
    display: none;
    width: 100%;
    max-width: 100%;
    order: 5;
    padding-top: 10px;
  }
  
  body.search-open .search {
    display: block;
  }
  
  .sort-control {
    flex-wrap: wrap;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-background2) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--header-border);
    z-index: 99;
    padding: 20px 0;
  }
  
  body.nav-open .header-nav {
    display: block;
  }
  
  .header-nav .header-inner {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    white-space: normal;
  }
  
  .nav-link {
    text-align: center;
    padding: 15px;
    border-bottom: var(--header-border);
  }
  
  .toggleTheme.mobile {
    padding: 15px;
    border-bottom: var(--header-border);
    justify-content: center;
  }
  
  .buttons-col.mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 15px;
  }
  
  .thumb {
    width: 33.33%;
  }
}

@media (max-width: 800px) {
  .thumb {
    width: 50%;
  }
}

@media (max-width: 435px) {
  .thumb {
    width: 100%;
  }
  
  .pagination {
    flex-wrap: wrap;
  }
}

/* Premium UI Design Enhancements */
/* Card and Headings Styling Enhancements */
.thumb .title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  margin-top: 8px;
  color: var(--thumb-text-color) !important;
  transition: color 0.3s ease;
}
.time {
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.qualtiy {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.4);
}
.heading {
  border-left: 4px solid #f43f5e !important;
  margin-top: 25px;
}
.heading .title {
  font-family: 'Outfit', 'Roboto', sans-serif;
  font-style: italic;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a 40%, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html.dark .heading .title {
  background: linear-gradient(135deg, #fff 40%, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn.gold, .sub-btn {
  background: linear-gradient(135deg, #f43f5e, #ec4899) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border: none;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
  transition: all 0.3s ease !important;
}
.btn.gold:hover, .sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.5);
}
.player.video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.description-holder {
  background: rgba(20, 20, 28, 0.6) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
/* Modern sleek scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f43f5e;
}
html.dark ::-webkit-scrollbar-thumb {
  background: #1e1e2d;
}
html.dark ::-webkit-scrollbar-thumb:hover {
  background: #f43f5e;
}

/* Premium Video Details Sidebar Grid Layout */
@media (min-width: 1024px) {
  .video-cols {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start;
  }
}

/* Enhancements for Premium Look */
.player-holder {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

html.dark .player-holder {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-controls {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

html.dark .video-controls {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.block-tabs {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

html.dark .block-tabs {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* WordPress Comments List Styling */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.comment-body {
  background: var(--comment-item-bg);
  color: var(--comment-item-color);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  position: relative;
  transition: all 0.2s ease;
}

html.dark .comment-body {
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comment-body:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 63, 94, 0.2);
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--main-grey-color);
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--general-color);
}

.comment-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-metadata a {
  color: var(--main-grey-color);
}

.comment-metadata a:hover {
  color: #f43f5e;
}

.comment-content {
  font-size: 14px;
  line-height: 1.5;
  color: var(--general-color);
}

.comment-body .reply {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.comment-body .reply a {
  font-size: 12px;
  font-weight: 700;
  color: #f43f5e;
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(244, 63, 94, 0.06);
  transition: all 0.2s ease;
}

.comment-body .reply a:hover {
  background: #f43f5e;
  color: #fff;
  box-shadow: 0 4px 10px rgba(244, 63, 94, 0.25);
}

.comment-list .children {
  list-style: none;
  padding-left: 40px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Autocomplete Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--thumb-box-bg);
  border: 1px solid var(--header-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: 8px;
  z-index: 1000;
  max-height: 450px;
  overflow-y: auto;
  display: none;
}

html.dark .search-suggestions {
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.search-suggestions .suggestion-group {
  padding: 12px 16px;
  border-bottom: var(--header-border);
}

.search-suggestions .suggestion-group:last-child {
  border-bottom: none;
}

.search-suggestions .group-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--main-grey-color);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.search-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--general-color);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.search-suggestions .suggestion-item:hover {
  color: var(--theme-hover-color);
  padding-left: 4px;
}

.search-suggestions .suggestion-item img {
  width: 48px;
  height: 27px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--img-placeholder-bg);
}

.search-suggestions .suggestion-item .item-meta {
  font-size: 11px;
  color: var(--main-grey-color);
  margin-left: auto;
  font-weight: 500;
  background: var(--input-bg);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--header-border);
}

.search-suggestions .no-results {
  padding: 20px;
  text-align: center;
  color: var(--main-grey-color);
  font-size: 13px;
}

/* Model avatar in search suggestions */
.suggestion-model .model-suggestion-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,63,94,0.3);
  flex-shrink: 0;
}
.model-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--input-bg);
  border: 2px solid rgba(244,63,94,0.2);
  font-size: 18px;
  flex-shrink: 0;
}

/* ========================================
   MODERN UI ENHANCEMENTS v2.0
   ======================================== */

/* Hero banner strip on homepage */
.site-hero-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255,255,255,0.03);
}
.site-hero-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244,63,94,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.site-hero-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero-text h1 span {
  background: linear-gradient(135deg, #f43f5e, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.hero-badge {
  background: linear-gradient(135deg, #f43f5e, #8b5cf6);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(244,63,94,0.3);
  flex-shrink: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Scroll-to-top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f43f5e, #8b5cf6);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(244,63,94,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 500;
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(244,63,94,0.5);
}
.scroll-top-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* Improved card image hover overlay */
.thumb .img-holder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.thumb:hover .img-holder::after {
  opacity: 1;
}
.thumb .item-bottom {
  z-index: 5;
}
.thumb .item-top {
  z-index: 5;
}

/* Skeleton loading shimmer for images */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.thumb .img-holder {
  background: linear-gradient(90deg, var(--thumb-placeholder-bg) 25%, var(--sort-box-bg) 37%, var(--thumb-placeholder-bg) 63%);
  background-size: 800px 100%;
  animation: shimmer 1.8s infinite;
}
.thumb .img-holder img {
  animation: none;
  background: none;
}

/* Section count badge */
.section-video-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--main-grey-color);
  background: var(--input-bg);
  border: 1px solid var(--header-border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
}

/* Better heading margin reset */
.section-row:first-child .heading {
  margin-top: 0;
}

/* Light mode: improve thumb card borders */
html:not(.dark) .thumb a {
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
html:not(.dark) .thumb a:hover {
  box-shadow: 0 8px 24px rgba(244,63,94,0.10);
  border-color: rgba(244,63,94,0.25);
}

/* Enhanced footer separator */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
html:not(.dark) .footer {
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

/* Tags pill hover glow */
.tags-row a:hover {
  transform: translateY(-1px);
}

/* Search-inner relative position (for dropdown) */
.search-inner {
  position: relative;
}

/* Better nav link spacing */
.header-nav .header-inner {
  padding: 2px 0;
}

/* Video player aspect ratio fix */
.player-wrap {
  aspect-ratio: 16/9;
  height: 0;
  padding-bottom: 56.25%;
}

/* Admin link in nav */
.nav-link.admin-link {
  background: linear-gradient(135deg, rgba(244,63,94,0.08), rgba(139,92,246,0.08));
  border: 1px solid rgba(244,63,94,0.2);
  border-radius: 8px;
  padding: 8px 14px;
}
.nav-link.admin-link:hover {
  background: linear-gradient(135deg, #f43f5e, #8b5cf6);
  color: #fff !important;
  border-color: transparent;
}

/* Responsive: hero banner stacks on mobile */
@media (max-width: 600px) {
  .site-hero-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }
  .hero-badge {
    align-self: flex-start;
  }
}

/* Section heading animation on scroll (CSS-only) */
.heading {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Input focus ring for accessibility */
input:focus-visible,
button:focus-visible {
  outline: 2px solid #f43f5e;
  outline-offset: 2px;
}

/* Related videos grid title */
.ralated-holder .heading h2 {
  font-size: 20px;
}
