/* Members Videos Page Styles - clean, professional, mobile-optimized */

:root {
  --mv-primary: #141a20;
  --mv-primary-600: #171a1d;
  --mv-bg: #0b0f14;
  --mv-surface: #131a22;
  --mv-text: #e6eef7;
  --mv-muted: #9fb3c8;
  --mv-border: #1f2a36;
  --mv-accent: #12d18e;
  --mv-danger: #ff5d5d;
  --mv-shadow: 0 6px 20px rgba(0,0,0,.35);
}

/* Page container spacing */
.videos-page .page-title.fluid-title {
  border-bottom: 1px solid var(--mv-border);
  background: linear-gradient(180deg, rgba(19,26,34,.6), rgba(19,26,34,0));
  padding-top: 12px;
}
/* Override on model page to remove dark gradient */
.model-page .page-title.fluid-title { background: none !important; border-bottom: 0 !important; }
/* Remove gradient/shadow for tags page */
.tags-page .page-title.fluid-title { background: none !important; box-shadow: none !important; border-bottom: 0 !important; }
/* Remove gradient/shadow and border for site pages */
.site-page .page-title.fluid-title { background: none !important; box-shadow: none !important; border-bottom: 0 !important; }
/* Remove gradient/shadow and border for model pages */
.model-page .page-title.fluid-title { background: none !important; box-shadow: none !important; border-bottom: 0 !important; }

/* Toolbar (Sort By) */
.videos-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.videos-toolbar label {
  margin: 0 8px 0 0;
  color: var(--mv-muted);
  font-weight: 600;
}
.videos-toolbar .btn.btn-sort {
  padding: 10px 18px;
  background: transparent;
  border: none;
  color: #8a95a3;
  line-height: 1.2;
  border-radius: 0;
  transition: all .2s ease;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.videos-toolbar .btn.btn-sort:hover {
  background: transparent;
  border: none;
  color: #fff;
  transform: none;
}
.videos-toolbar .btn.btn-sort.active {
  background: transparent;
  border: none;
  color: #1e90ff;
  box-shadow: none;
  font-weight: 700;
  font-size: 16px;
}

/* Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 576px) {
  .videos-grid { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (min-width: 992px) {
  .videos-grid { gap: 22px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
/* Neutralize bootstrap col padding inside custom grid */
.videos-grid > .video-card-div {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* Card base */
.videos-grid .card.card-video, .video-card-div .card.card-video {
  background: var(--mv-surface);
  overflow: hidden;
  box-shadow: var(--mv-shadow);
  transition: none !important; /* Remove all transitions */
}
.videos-grid .card.card-video:hover {
  transform: none !important; /* Remove hover scale/lift effect */
  box-shadow: var(--mv-shadow); /* Keep original shadow */
  border-color: var(--mv-border); /* Keep original border */
}

/* WOW variant with site-accent gradient border */
.videos-grid .wow-card, .video-card-div .wow-card {
  background: linear-gradient(#131a22, #131a22) padding-box,
              linear-gradient(135deg, var(--site-accent), var(--site-accent-2)) border-box;
}
.videos-grid .wow-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

/* Header styling for video cards */
.videos-grid .card.card-video .card-header,
.video-card-div .card.card-video .card-header {
  border-bottom: 0;
  padding: 12px 14px;
}

/* Models cards: remove dark border for a clean look */
.model-card-div .card.card-video { border: 0 !important; background: var(--mv-surface); }
.model-card-div .wow-card { background: var(--mv-surface) !important; border: 0 !important; box-shadow: var(--mv-shadow); }
.videos-grid .card.card-video .card-header h3,
.video-card-div .card.card-video .card-header h3 {
  font-size: 15px;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}
.videos-grid .card.card-video .card-header p,
.video-card-div .card.card-video .card-header p {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  margin: 2px 0 0 0;
}

/* Media (thumbnail) */
.videos-grid .card-preview, .video-card-div .card-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d131a;
}
.videos-grid .card-preview img,
.videos-grid .card-preview .img-fluid,
.video-card-div .card-preview img,
.video-card-div .card-preview .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badges: duration, quality, locked */
.videos-grid .card-preview .length,
.videos-grid .card-preview .quality,
.videos-grid .card-preview .locked,
.video-card-div .card-preview .length,
.video-card-div .card-preview .quality,
.video-card-div .card-preview .locked {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  padding: 4px 8px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.06);
}
/* top-right duration, top-left quality, bottom-right locked */
.videos-grid .card-preview .length,
.video-card-div .card-preview .length { left: auto; right: 10px; top: 10px; bottom: auto; }
.videos-grid .card-preview .quality,
.video-card-div .card-preview .quality { left: 10px; right: auto; top: 10px; bottom: auto;  border: 0; }
.videos-grid .card-preview .locked,
.video-card-div .card-preview .locked { left: auto; right: 10px; bottom: 10px; top: auto; background: linear-gradient(135deg, #ff5d5d, #ff8a76); border: 0; }

/* Ensure preview touches header and fills width */
.videos-grid .card.card-video .card-preview,
.videos-grid .card.card-video .card-preview .v-thumb,
.video-card-div .card.card-video .card-preview .v-thumb { display: block; width: 100%; height: 100%; }

/* Models: taller preview */
.model-card-div .card-preview { aspect-ratio: 3 / 4; }
.model-card-div .card-preview img { object-fit: cover; }

/* Site logo overlay */
.videos-grid .card-preview .video-logo, .video-card-div .card-preview .video-logo {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.06);
}
.videos-grid .card-preview .video-logo img, .video-card-div .card-preview .video-logo img {
  height: 22px;
  width: auto;
  display: block;
}

/* Hover indicator */
.videos-grid .card-preview::after, .video-card-div .card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
  opacity: .25;
  transition: opacity .2s ease;
}
.videos-grid .card.card-video:hover .card-preview::after, .video-card-div .card.card-video:hover .card-preview::after { opacity: .25; }

/* Remove all hover scale/transform effects on video cards in video page */
.video-page .videos-grid .card.card-video:hover,
.video-page .video-card-div .card.card-video:hover,
.video-page .more-scenes-row:hover {
  transform: none !important;
  scale: none !important;
}

.video-page .videos-grid .card.card-video .card-preview img:hover,
.video-page .video-card-div .card.card-video .card-preview img:hover,
.video-page .more-scenes-row .preview-col img:hover {
  transform: none !important;
  scale: none !important;
}

/* Hover play overlay */
.videos-grid .card-preview .video-overlay,
.video-card-div .card-preview .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.0) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.65) 100%);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
.videos-grid .wow-card:hover .card-preview .video-overlay,
.video-card-div .wow-card:hover .card-preview .video-overlay { opacity: 0; }
.videos-grid .card-preview .play-button,
.video-card-div .card-preview .play-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--site-accent), var(--site-accent-2));
  box-shadow: 0 10px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
  color: #fff;
}
.videos-grid .card-preview .play-button i,
.video-card-div .card-preview .play-button i {
  font-size: 14px; margin-left: 2px;
}

/* Center red lock for Add-On */
.videos-grid .card-preview .locked-center,
.video-card-div .card-preview .locked-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
  box-shadow: 0 12px 24px rgba(255, 59, 48, 0.45), inset 0 1px 0 rgba(255,255,255,.15);
  z-index: 4;
}
.videos-grid .card-preview .locked-center i,
.video-card-div .card-preview .locked-center i { font-size: 18px; }

/* Hover video element */
.videos-grid .card-preview video.preview-video, .video-card-div .card-preview video.preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Body and description */
.videos-grid .card.card-video .card-body,
.video-card-div .card.card-video .card-body { padding: 0; }
.videos-grid .card.card-video .card-description,
.video-card-div .card.card-video .card-description { padding: 12px 14px 14px; }
.videos-grid .card.card-video .card-description p,
.video-card-div .card.card-video .card-description p { color: var(--mv-muted); font-size: 13px; }

/* Bottom spacing for cards */
.video-card-div, .performerCard { margin-bottom: 10px; }
.video-card-div .card.card-video, .performerCard .card.card-video { margin-bottom: 0; }

/* Video Info Section */
.video-card-div .video-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
}

.video-card-div .video-title {
    font-size: 14px;
    font-weight: 700;
    color: #c7dbf7;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-card-div .video-models {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    line-height: 1.3;
}

.video-card-div .video-models a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.video-card-div .video-models a:hover { text-decoration: underline; }

.video-card-div .video-models a:not(:first-child)::before {
    content: ', ';
}

.video-card-div .video-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 14px;
    row-gap: 0;
    font-size: 10px;
    color: #ADD1FF;
    flex-wrap: wrap;
    margin-top: 2px;
}

.video-card-div .video-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-card-div .video-stat-date {
    flex-basis: 100%;
    font-size: 9px;
    color: #9aa4b2;
    margin-top: 2px;
}

.video-card-div .video-stat i {
    font-size: 9px;
    color: #ADD1FF;
}

.video-card-div .video-stat-date i {
    font-size: 8px;
}

.video-card-div .video-stat:not(.video-stat-date) span {
    color: #ADD1FF;
}

.video-card-div .video-stat-date span {
    color: #9aa4b2;
}

.video-card-div .video-views {
    color: #ADD1FF;
    font-weight: 600;
}

.video-card-div .video-rating {
    color: #ADD1FF;
    font-weight: 600;
}

/* Make cards larger by removing side gutters */
.row.gutter-25 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex-wrap: wrap;
}
.row.gutter-25 > [class^="col-"],
.row.gutter-25 > [class*=" col-"] { padding-left: 2px !important; padding-right: 2px !important; }
.video-card-div { padding-left: 2px !important; padding-right: 2px !important; }

/* Tag buttons (models, site) */
.videos-grid .tag-btn, .video-card-div .tag-btn {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 4px 10px;
  font-size: 12px;
  background: #000000;
  color: var(--mv-text) !important;
  text-decoration: none !important;
  transition: all .2s ease;
}
.videos-grid .tag-btn:hover { background: #152131; border-color: #2b3d53; }

/* Pagination - Minimalist Design (only numbers, no borders) */
.pagination-wrapper { display: flex; justify-content: center; margin: 0; }
.pagination-wrapper .pagination {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  max-width: 100%;
  overflow-x: auto;
}
.pagination-wrapper .page-item { list-style: none; }
.pagination-wrapper .page-link {
  border: none;
  background: transparent;
  color: var(--mv-muted);
  padding: 6px 10px;
  border-radius: 0;
  font-weight: 600;
  font-size: 18px;
  min-width: auto;
  text-align: center;
  transition: color 0.2s ease;
}
.pagination-wrapper .page-link:hover { 
  color: #fff; 
  background: transparent; 
  text-decoration: none; 
}
.pagination-wrapper .page-item.active .page-link {
  color: #1a1a1a;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  font-size: 21px;
}
.pagination-wrapper .page-item.disabled .page-link { 
  display: none; /* Hide prev/next arrows */
}
.pagination-wrapper .page-link:focus { outline: none; box-shadow: none; }

/* Models toolbar quickjump */
.models-toolbar { gap: 12px; }
/* Turn sort buttons into simple links */
.models-toolbar .sort-links { display:flex; gap:12px; flex-wrap:wrap; }
.models-toolbar .sort-links a { background:transparent; border:0; padding:0; color: var(--mv-muted); text-decoration:none; font-weight:700; display:inline-flex; align-items:center; gap:6px; }
.models-toolbar .sort-links a:hover { color: var(--mv-text); text-decoration: underline; }
.models-toolbar .sort-links a.active { color:#fff; border-bottom:2px solid var(--mv-primary); }
.models-quickjump { margin-left: 8px; }
.models-quickjump .models-select {
  min-width: 220px;
  background: var(--mv-surface);
  border: 1px solid var(--mv-border);
  color: var(--mv-text);
  padding: 6px 10px;
  border-radius: 10px;
}

/* Model hero */
.model-hero { overflow: hidden; box-shadow: none !important; border: 1px solid var(--mv-border); }
.model-hero .model-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.model-hero .model-name { font-weight: 900; letter-spacing: .2px; margin: 0; font-size: 28px; }
@media (min-width: 768px) { .model-hero .model-name { font-size: 34px; } }
.model-hero .model-char { color: var(--mv-muted); }
.model-hero .social-btn { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; background: rgba(255,255,255,.06); color:#fff; margin-right:8px; border:1px solid rgba(255,255,255,.08); }
.model-hero .social-btn:hover { background: rgba(255,255,255,.1); }
.model-hero #rating-container { margin: 6px 0 0 0; }
.model-hero .unit-rating { margin: 0; }

/* Tags toolbar spacing */
.tags-toolbar { width: 100%; }
.tags-toolbar .sort-group { gap: 8px; padding: 6px; max-width: 100%; }
.tags-toolbar .tags-az { display: flex; flex-wrap: wrap; justify-content: center; width: 100%; }
.tags-toolbar .sort-group .btn.btn-sort { 
  margin: 0 2px; 
  padding: 8px 14px; 
  font-size: 14px;
  background: transparent;
  border: none;
  color: #8a95a3;
  font-weight: 600;
}
.tags-toolbar .sort-group .btn.btn-sort:hover {
  color: #fff;
  background: transparent;
}
.tags-toolbar .sort-group .btn.btn-sort.active {
  color: #1e90ff;
  background: transparent;
  font-weight: 700;
}

/* Tag page title color and no shadow */
.tags-page .title-wrapper h1 { color: var(--mv-primary); }
.tags-page .page-title.fluid-title { background: none !important; box-shadow: none !important; border-bottom: 0 !important; }

#episodes .title-wrapper h1 { color: var(--mv-primary); }

/* Tag directory */
.tag-dir .tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.tag-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--mv-surface);
  border: 1px solid var(--mv-border);
  border-radius: 12px;
  color: var(--mv-text);
  text-decoration: none !important;
  transition: all .2s ease;
}
.tag-tile:hover { background: #152131; border-color: #2b3d53; transform: translateY(-1px); }
.tag-tile .tag-name { font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.tag-tile .tag-count { background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.06); border-radius: 999px; padding: 4px 8px; font-weight: 800; color: #fff; }

/* Segmented sort control */
.videos-toolbar { gap: 12px; }
.videos-toolbar .sort-group {
  display: flex;
  align-items: center;
  padding: 4px;
  backdrop-filter: blur(6px);
}

/* Performer (live) cards */
.performerCard .live-card {
  background: linear-gradient(#131a22, #131a22) padding-box,
              linear-gradient(135deg, #12d18e, #31e6b8) border-box;
  border: 1px solid transparent;
}
.performerCard .card-preview {
  border-radius: 12px;
}

/* Special Offer hero */
.special-offer-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 100% at 0% 0%, rgba(30,144,255,.25) 0%, rgba(30,144,255,0) 60%),
              radial-gradient(120% 100% at 100% 100%, rgba(18,209,142,.25) 0%, rgba(18,209,142,0) 60%),
              #0b0f14;
  border: 1px solid var(--mv-border);
}
.special-offer-hero .special-offer-glow { position:absolute; inset: -30%; background: radial-gradient(circle at 50% 50%, rgba(30,144,255,.25), rgba(30,144,255,0) 60%); filter: blur(20px); }
.special-offer-hero .special-offer-shine { position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)); pointer-events:none; }
.special-offer-hero .special-offer-content { position:relative; z-index:1; width:100%; display:grid; place-items:center; padding: 16px; }

/* Model overlay button */
.model-card-div .model-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background: radial-gradient(ellipse at center, rgba(0,0,0,.0) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.65) 100%); opacity:0; transition:opacity .2s ease; z-index:2; }
.model-card-div .wow-card:hover .model-overlay { opacity: 1; }
.model-card-div .view-profile-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; background:  #1f2124; color:#fff; font-weight:800; box-shadow: 0 10px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12); }
.model-card-div .view-profile-btn i { font-size:14px; }

/* Deals grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* Sites cards */
.sites-grid .site-card-div { padding-left: 2px !important; padding-right: 2px !important; margin-bottom: 20px; }
.site-card .card-header {  border-bottom: 0; padding: 12px 14px; }
.site-card .card-header h3 { color: #fff; margin: 0; font-size: 16px; }
.site-card .card-header .site-status { color: rgba(255,255,255,.9); font-size: 12px; margin: 2px 0 0; }
.site-card .card-header .site-status.included { color: #e6eef7; opacity: .85; }
.site-card .site-preview { aspect-ratio: 16 / 9; }
.site-card .site-preview img { object-fit: cover; }
.site-card .site-overlay { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: flex-end; padding: 10px; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%); }
.site-card .site-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-card .site-logo { background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 6px 8px; }
.site-card .site-logo img { height: 20px; width: auto; display: block; }
.site-card .site-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.site-card .chip { background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.06); color: #fff; font-weight: 800; font-size: 12px; border-radius: 999px; padding: 6px 10px; display: inline-flex; align-items: center; gap: 6px; }
.site-card .site-price { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 0; padding: 0; border-radius: 12px; color: #fff; box-shadow: none; }
.site-card .site-price .old { color: #ff9aa2; text-decoration: line-through; font-weight: 800; padding: 0; border-radius: 0; }
.site-card .site-price .new { color: #ffffff; font-weight: 900; letter-spacing: .2px; }
.site-card .site-price .new::before { content: ""; margin-right: 0; }
.deal-card {
  background: linear-gradient(#131a22, #131a22) padding-box,
              linear-gradient(135deg, rgba(30,144,255,.5), rgba(106,168,255,.5)) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
}
.deal-embed { position: relative; padding: 14px; background: #0e141b; min-height: 120px; display: grid; place-items: center; }
.deal-embed .deal-glow { position:absolute; inset:-20%; background: radial-gradient(circle at 60% 40%, rgba(30,144,255,.20), rgba(30,144,255,0) 60%); filter: blur(18px); }
.deal-embed .deal-content { position:relative; z-index:1; width:100%; display:grid; place-items:center; }
.performerCard .performer-overlay {
  position: absolute !important;
  left: 10px !important;
  right: auto !important;
  bottom: 10px !important;
  top: auto !important;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 6px 10px !important;
}
.performerCard .performerName {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .2px;
}
.performerCard .performer-topleft-img,
.performerCard .live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: linear-gradient(135deg, #12d18e, #31e6b8);
  color: #0b0f14;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18, 209, 142, .35);
}
.performerCard a { color: #fff; text-decoration: none; }
.videos-toolbar .sort-group .btn.btn-sort {
  background: transparent;
  border: none;
  color: #8a95a3;
  padding: 10px 18px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all .2s ease;
}
.videos-toolbar .sort-group .btn.btn-sort:hover {
  color: #fff;
  background: transparent;
}
.videos-toolbar .sort-group .btn.btn-sort.active {
  color: #1e90ff;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  font-size: 16px;
}
.videos-toolbar .sort-group .btn.btn-sort i { font-size: 14px; }
.videos-toolbar label { color: var(--mv-muted); font-weight: 700; }

/* Mobile tweaks */
@media (max-width: 575.98px) {
  .videos-toolbar { overflow: visible; }
  .videos-toolbar .sort-group { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .videos-toolbar .btn { white-space: nowrap; }
  /* Allow tags toolbar to wrap rather than overflow */
  .tags-toolbar .sort-group { overflow-x: visible; }
  .tags-toolbar .btn { white-space: normal !important; }

  /* Remove card borders/lines on mobile for a clean look */
  .videos-grid .card.card-video,
  .video-card-div .card.card-video,
  .performerCard .card.card-video,
  .model-card-div .card.card-video { border: 0 !important; }
  .videos-grid .wow-card,
  .video-card-div .wow-card { background: var(--mv-surface) !important; border: 0 !important; }
  
  /* Optimize video titles on mobile */
  .video-card-div .video-title {
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.6em;
    word-break: break-word;
  }
  
  .video-card-div .video-models {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .video-card-div .video-info {
    padding: 8px;
  }
  
  /* Optimize grid gap for mobile */
  .videos-grid {
    gap: 8px;
  }
}
