/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Manrope', sans-serif;
}

body{
    background:#000;
    color:#fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  
}


.h-title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.para {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.list {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================
   PAGE LAYOUT
========================= */

.page-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  width: 100%;          
  margin: 0;
  box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

.main-content {
  width: 100%;
  min-width: 0; /* Prevents children from breaking the layout */
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between components inside the sidebar */
  width: 100%;
}

/* Optional: Make the sidebar sticky on desktop */
@media (min-width: 901px) {
  .page-sidebar {
    position: sticky;
    top: 20px; 
    align-self: start; 
  }
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {

  .page-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    display: none;
  }
}



/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#0b0b0b;
    padding:7px 0px;
    border-bottom:1px solid #111;
}

.top-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    overflow:auto;
    white-space:nowrap;
    font-size:clamp(12px, 1.5vw, 14px);
}

.top-links a{
    color:#FFFFF0;
    text-decoration:none;
}

/* =========================
   MAIN HEADER
========================= */

.main-header{
    background:#000;
    padding:5px 15px;
}

/* TOP ROW */

.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap; /* IMPORTANT */
}

@media (max-width: 991px) {
    .header-top {
        flex-wrap: nowrap;
    }
  
    .logo img{
        height: 40px;
        width: auto;
    }
}


/* LOGO */

.logo{
    font-size:clamp(36px,4vw,42px);
    font-weight:900;
    color:#ff9b1f;
    white-space:nowrap;
}

.logo span{
    color:#ff2670;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* SEARCH AREA */

.search-area{
    display:flex;
    margin-left:auto;
}


/* INPUT */
.search-area input{
    width:340px;
    height:44px;

    padding:0 16px;

    border:none;
    outline:none;

    background:#1a1a1a;
    color:#fff;

    font-size:clamp(13px,1vw,16px);

    border-radius:2px 0 0 2px;
}

/* PLACEHOLDER */
.search-area input::placeholder{
    color:#9a9a9a;
}

/* SEARCH BUTTON */
.search-btn{
    width:52px;
    height:44px;

    border:none;

    background:#f4c542;
    color:#fff;

    font-size:clamp(16px,1.5vw,22px);
    cursor:pointer;

    border-radius:0 2px 2px 0;

    display:flex;
    align-items:center;
    justify-content:center;
}

.search-icon{
    width:20px;
    height:20px;
    display:block;
}


.desktop-search{
    display:flex;
}

.mobile-search-btn{
    display:none;
}

@media(min-width:992px){
    .search-area{
        margin-left:auto;
        display:flex;
    }
  
 .menu-btn{
        display:none;
    }


}

@media(max-width:991px){

.desktop-search{
    display:none;
}

.mobile-search-btn{
    display:flex;
    width:40px;
    height:40px;
}

.mobile-search-header{
    display:flex;
    align-items:center;
    width:100%;
}



.mobile-search{
    display:flex;
    flex:1;
}

.mobile-search input{
    width:100%;
    max-width:none;
}

}


/* MOBILE MENU */

.mobile-menu{

    width:40px;
    height:40px;

    object-fit:contain;
    opacity:0.9;
    flex-shrink:0;
    filter: brightness(0) invert(1);

}



/* DARK OVERLAY */
.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    display:none;
    justify-content:flex-start;
    align-items:flex-start;
    padding:70px 16px;
    z-index:9999;
}

/* MENU BOX */
.menu-box{
    width:285px;
    background:#1d1d1d;
    border-radius:18px;
    overflow:visible; /* IMPORTANT */
    position:relative;
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;

    top:-14px;
    right:-14px;

    width:36px;
    height:36px;

    border:none;
    border-radius:50%;

    background:#fff;
    color:#2a2a2a;

    font-size:18px;
    cursor:pointer;

    z-index:10;

    box-shadow:0 0 10px rgba(0,0,0,0.5);
}



/* MENU ITEM */
.menu-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 20px;
    text-decoration:none;
    color:#fff;
    transition:0.2s ease;
}

/* HOVER */
.menu-item:hover{
    background:#2a2a2a;
}

/* LEFT SIDE */
.menu-left{
    display:flex;
    align-items:center;
    gap:14px;
}


/* TEXT */
.menu-item span{
    font-size:18px;
    font-weight:500;
    color:#f1f1f1;
}

/* DIVIDER */
.menu-divider{
    height:1px;
    background:rgba(255,255,255,0.08);
    margin:0 20px;
}



/* =========================
   HIDE DESKTOP
========================= */

@media(min-width:992px){

    
    .menu-overlay{
        display:none;
    }
}


/* =========================
   FLOATING DESKTOP SIDEBAR
========================= */

.desktop-sidebar{
    position:fixed;

    left:0;
    top:60%;
    transform:translateY(-50%);

    width:90px;

    background:#000;
    border:1px solid #111;

    border-left:none;

    border-top-right-radius:24px;
    border-bottom-right-radius:24px;

    z-index:9999;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:18px 8px 18px 0;
}

/* TITLE */
.sidebar-title{
    color:#fff;
    font-size:clamp(14px,1.2vw,20px);
    font-weight:700;
    margin-bottom:20px;
}

/* MENU ITEM */
.menu-icon{

    width:16px;
    height:16px;

    object-fit:contain;
    opacity:0.9;
    flex-shrink:0;
    filter: brightness(0) invert(1);

}

/* MENU ITEM */
.side-item{
    width:68px;
    min-height:68px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:6px;

    color:#fff;
    text-decoration:none;

    border-radius:18px;
    border: 2px solid transparent;

    margin-bottom:12px;

    transition:0.3s;

     transition:
        background 0.3s,
        border 0.3s,
        box-shadow 0.3s,
        transform 0.2s;
}



.side-item span{
    font-size:22px;
}

.side-item small{
    font-size:11px;
    text-align:center;
    line-height:1.2;
}


/* HOVER */
.side-item:hover {
    background: #2a2410; /* dark yellow background */
    border: 2px solid #f4c542;
    box-shadow: 0 0 18px rgba(244, 197, 66, 0.35);
}

/* ACTIVE */
.side-item.active {
    border: 2px solid #f4c542;
    background: #1a1a1a;
}

/* CONTENT SPACE */

@media(min-width:1200px){

    .page-layout-wrapper{
        padding-left:110px;
    }
 
   .taxonomy-section{
        padding-left:110px;
    }

}


/* HIDE ON MOBILE/TABLET */
@media(max-width:1199px){

    .desktop-sidebar{
        display:none;
    }

    body{
        padding-left:0;
    }
}




/* =========================
   SECTION BAR
========================= */


.section-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#161616;
    border-left:4px solid #f4c542;

    padding:6px 12px;
    margin-bottom: clamp(12px, 1.5vw, 20px);

    min-height:unset;
}

/* TITLE */

.section-bar h2{
    font-size:18px;
    margin:0;
    line-height:1;
}


/* =========================
   SORT DROPDOWN
========================= */

.sort-dropdown{
    position:relative;
}

/* BUTTON */
.sort-btn{

    width:clamp(120px,16vw,220px);

    height:34px;

    background:#f4c542;

    border:none;

    color:#050505;

    padding:0 12px;

    border-radius:8px 8px 0 0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:10px;

    font-size:13px;
    font-weight:500;

    cursor:pointer;

    transition:0.25s;
}

/* ARROW */
.sort-btn span{
    font-size:clamp(11px,0.8vw,15px);

    flex-shrink:0;
}

.drop-icon{
    width:16px;
    height:16px;

    object-fit:contain;
    opacity:0.9;
    flex-shrink:0;
}

/* DROPDOWN */
.sort-menu{
    position:absolute;

    top:100%;
    right:0;

    width:100%;

    background:#050505;

    border-radius:0 0
                  clamp(12px,1vw,18px)
                  clamp(12px,1vw,18px);

    overflow:hidden;

    opacity:0;
    visibility:hidden;

    transform:translateY(-6px);

    transition:0.25s;

    z-index:999;
}

/* SHOW */
.sort-dropdown:hover .sort-menu{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* ITEMS */
.sort-menu a{
    display:block;

    padding:
        clamp(11px,0.9vw,15px)
        clamp(12px,1vw,18px);

    color:#b8b8b8;

    text-decoration:none;

    font-size:clamp(11px,0.85vw,16px);

    font-weight:400;

    transition:0.2s;

    white-space:nowrap;
}

/* HOVER */
.sort-menu a:hover{
    background:#f4c542;
    color:#fff;
}

/* MOBILE */
@media(max-width:768px){

    .sort-btn{

        width:clamp(110px,38vw,170px);

        height:38px;

        font-size:13px;
    }

    .sort-menu a{

        font-size:12px;

        padding:12px 14px;
    }
}

/* ==========================================================================
   DETAILS SECTION
   ========================================================================== */

.about-container {
        margin-bottom: clamp(12px, 1.5vw, 20px);
    }

.heading-container {
  display: flex;
  justify-content: space-between; /* Pushes items to opposite ends */
  align-items: center;
  margin-bottom: 5px; /* Adjust as needed */
}

.view-all-button {
  background-color: #f4c542;
  color: #000;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.2s;
}

.view-all-button:hover {
  opacity: 0.8;
}

.details-heading {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.details-line {
  width: 25px;
  height: 3px;
  background-color: #f4c542;
  border-radius: 3px;
}

.details-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #f44336 60px, #444 60px);
  margin-bottom: 20px;
  border-radius: 2px;
}


.description {
  line-height: 1.6;
  font-size: clamp(13px, 1vw, 16px);
  color: #b0b0b0;
  text-align: left;
  white-space: pre-line; /* Preserves clean paragraph breaks if the text contains line breaks */
  margin: 0;
}


.post-details p {
  background: transparent;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

/* 🔸 Taxonomy blocks: always yellow */
.highlight-tax a,
.highlight-tax {
  color: #f9d442 !important;
  text-decoration: none !important;
}

/* 🔸 Taxonomy hover: same yellow */
.highlight-tax a:hover {
  color: #f9d442 !important;
  text-decoration: none !important;
}

/* =========================
   VIDEO CONTAINER
========================= */

.video-container{
    padding:0 15px 30px;
    display:grid;
    gap:12px;
}

/* Mobile (default) */
.home-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .home-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.video-card{
   display:block;
    width:100%;
}

/* THUMB */

.thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    aspect-ratio: 16 / 9; 
    width: 100%;
}

/* ⚡ Optimized global layout setup */
.thumb img,
.thumb video {
    width: 100%;
    height: auto; /* Lets aspect-ratio scale dynamically without causing layout shifts */
    object-fit: cover;
    display: block;
}

.thumb img {
    opacity: 1;
    transition: opacity 0.2s ease;
    will-change: opacity; /* ⚡ Signals the browser to prepare GPU layering early */
}

/* ⚡ Hides image completely without dynamic inline evaluation delay */
.thumb img.video-active {
    opacity: 0;
}
/* SMALL HINT ICON */
/* CIRCLE BACKGROUND */
.hover-hint {
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;   /* circle */
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.85;
}

.hover-hint img {
    width: 18px;
    height: 18px;
    animation: swipeHint 1.5s ease-in-out infinite;
}

@keyframes swipeHint {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(10px);
        opacity: 0.6;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.preview-video{
    position:absolute;
    inset:0;
    opacity:0;
    object-fit:cover;
    transition:0.2s;
    pointer-events:none;
}


/* SLIGHT ZOOM */
.video-card:hover .thumb img{
    transform:scale(1.03);
}

/* BADGES */
/* ==========================================================================
   UPDATED RESPONSIVE BADGES 
   ========================================================================== */

.badge, 
.video-date-badge, 
.video-info-badge {
    /* Uses clamp to scale down smoothly from 10px to 6px on small screens */
    padding: clamp(4px, 0.8vw, 6px) clamp(6px, 1.2vw, 10px);
    /* Softens the radius matching the smaller scale */
    border-radius: 6px; 
    /* Ensures typography behaves fluidly across devices */
    font-size: clamp(10px, 1.1vw, 14px); 
    font-weight: 700;
    background: rgba(0, 0, 0, 0.85); /* Slightly darker for readability at small sizes */
    
    /* Prevents text from breaking into awkward lines on narrow screens */
    white-space: nowrap; 
}

/* ADJUST POSITIONS & GAPS FOR SMALL SCREENS */
.video-badge {
    position: absolute;
    right: 8px;   /* Pulled slightly closer to the edge */
    bottom: 8px;
    display: flex;
    gap: 4px;     /* Tighter gap so multiple badges don't overflow horizontally */
}

.video-date-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.video-info-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

/* Icon scaling alongside the typography */
.video-date-badge .meta-icon {
    width: clamp(11px, 1.2vw, 14px);
    height: clamp(11px, 1.2vw, 14px);
}

/* Optional: Shrink the hover hint circle slightly on small screens */
.hover-hint {
    top: 8px;
    left: 8px;
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
}
.hover-hint img {
    width: clamp(12px, 1.5vw, 18px);
    height: clamp(12px, 1.5vw, 18px);
}

/* TITLE */
.video-title{
    margin-top:14px;
    font-weight:600;

    font-size:clamp(14px,1.7vw,18px);

    line-height:1.4;

    color:#eaeaea;

    transition:0.3s;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* VIDEO LINK */

.video-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}



/* =========================
   DIRECTORY GRID
========================= */

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
}

/* Tablet */
@media (min-width: 768px) {
  .directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .directory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.directory-pill {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 10px 16px;

  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 9999px;

  color: #ffffff;
  text-decoration: none;
  text-align: center;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;

  transition: all 0.2s ease;
}

.directory-pill:hover {
  background: #27272a;
  border-color: #52525b;
}

.directory-pill:visited,
.directory-pill:link,
.directory-pill:active {
  color: #ffffff;
}

.directory-empty {
  text-align: center;
  padding: 40px 20px;
  color: #a1a1aa;
}



/* =========================
   PAGINATION
========================= */

.pagination-wrap{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    margin:50px 0;

    flex-wrap:nowrap;
}

/* PAGINATION CENTER */
.pagination{
    display:flex;
    align-items:center;

    gap:10px;

    overflow-x:auto;
    scrollbar-width:none;

    white-space:nowrap;
}

.pagination::-webkit-scrollbar{
    display:none;
}

/* PAGE ITEMS */
.pagination a,
.page-btn,
.dots{
    min-width:44px;
    height:44px;

    padding:0 16px;

    border-radius:14px;

    background:#080808;

    color:#fff;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:600;

    transition:0.3s;
}

/* ACTIVE PAGE */
.pagination a.active{
    background:#f4c542;
}

/* HOVER */
.pagination a:hover,
.page-btn:hover{
    background:#151515;
}

/* PREV/NEXT */
.page-btn{
    gap:8px;
}


.hide-on-mobile {
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block;
}

/* MOBILE + TABLET */

@media(max-width:991px){

    /* 1. HIDE THE TEXT LABELS INSTANTLY */
    .hide-on-mobile {
        display: none !important;
    }

    .pagination-wrap {
        gap: 6px; 
        overflow-x: auto;
        justify-content: center; 
        padding-bottom: 6px;
        scrollbar-width: none;
        flex-wrap: nowrap; 
    }

    .pagination-wrap::-webkit-scrollbar {
        display: none;
    }

    .pagination {
        gap: 6px;
    }

    /* 2. FORCE NAVIGATION LINKS INTO SQUARES */
    .pagination a,
    .page-btn,
    .dots {
        width: 40px; 
        min-width: 40px;
        height: 40px;
        padding: 0;
        font-size: 15px;
        border-radius: 12px;
    }
}



/* =========================
   player page
========================= */

.watch-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6px 12px;
    box-sizing: border-box;
    overflow-x: hidden;
    margin-bottom: clamp(12px, 1.5vw, 20px);
    display: flex;
    flex-direction: column;
}


/* TITLE */

.watch-title{
    font-size:clamp(18px,2vw,38px);
    line-height:1.35;
    color:#eaeaea;
    font-weight:700;
    margin-bottom: clamp(12px, 1.5vw, 20px);

}

/* TAG AREA */
.tags-wrap{

    display:flex;
    align-items:flex-end;
    margin-bottom: clamp(12px, 1.5vw, 20px);
   
}

.tag-title {
  
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  
  color: #ffffff;
  margin-bottom: clamp(14px, 1.5vw, 22px);
  letter-spacing: -0.02em; 

  display: flex;
  align-items: center;
  padding-left: 12px;
  border-left: 4px solid #f4c542; 
}

@media (max-width: 768px) {
  .tag-title {
    padding-left: 10px;
    border-left-width: 3px; 
  }
}

.tag-icon {
    width: clamp(14px, 1.2vw, 18px);
    height: clamp(14px, 1.2vw, 18px);
    object-fit:contain;
    opacity:0.9;
    flex-shrink:0;
    display: block;
    margin: 0;
    filter: invert(87%) sepia(26%) saturate(2206%) hue-rotate(341deg) brightness(101%) contrast(92%);
}

/* TAGS */

.watch-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: clamp(12px, 1.5vw, 20px);
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.watch-tags a,
.watch-tags span {
    background: #1a1a1a;
    color: #d7d7d7;
    padding: clamp(7px, 0.8vw, 10px) clamp(10px, 1vw, 14px);
    border-radius: 8px;
    font-size: clamp(11px, 0.9vw, 14px);
    text-decoration: none;
    
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    gap: 6px; 
    
    line-height: 1; 
    white-space: nowrap;
}


.watch-strip {
    display: flex;
    align-items: center;
    /* This centers the buttons horizontally */
    justify-content: center; 
    
    gap: clamp(8px, 1vw, 12px);
    padding-top: clamp(10px, 1.2vw, 10px);
    margin-bottom: clamp(5px, 1.5vw, 5px);
}

.watch-more {
    background: #f4c542;
    color: #000;
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 700;
    padding: clamp(5px, 0.6vw, 6px) clamp(8px, 0.8vw, 10px);
    border-radius: 4px;
    
    /* Adds the "hand" icon on hover */
    cursor: pointer; 
    
    /* Optional: Improves the look of the button */
    border: none;
    transition: background 0.2s ease;
}

.watch-more:hover {
    background: #d4a737; /* Slightly darker yellow on hover */
}

/* =========================
   Video Player
========================= */

/* --- 1. PARENT PAGE STYLES (Used in WatchPage) --- */
.watch-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.watch-video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --- 2. EMBEDDED PLAYER STYLES (Used in VideoPlayer) --- */
.embed-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.embed-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.embed-video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER PLAY */
.center-play{
    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%, -50%);
    z-index: 2;

    width:clamp(60px,6vw,90px);
    height:clamp(60px,6vw,90px);

    border-radius:50%;

    background:#e50914;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:clamp(26px,2.5vw,40px);
}


/* PLAYER BOTTOM */
.player-bottom{
    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:clamp(10px,1vw,16px);

    color:#fff;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.75)
    );
}


/* =========================
   REARRANGED ACTIONS ROW
========================= */

.watch-actions-row {
    width: 100%;
    display: flex;
    align-items: center;
    
    /* THE MAGIC: Distributes our 3 main wrapper containers completely evenly 
       (Left corner, exact center, right corner) */
    justify-content: space-between; 
    
    padding: clamp(5px, 1.5vw, 10px) 0;
    border-bottom: 1px solid #1a1a1a; /* Optional structural break line */
}

/* Individual alignment wrappers */
.action-group-left {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.5vw, 10px); /* Space between Like and Dislike */
}

.action-group-center {
    display: flex;
    justify-content: center;
}

.action-group-right {
    display: flex;
    justify-content: flex-end;
}

/* Modern Inline Action Buttons */
.action-item-inline {
    display: flex;
    flex-direction: row; /* Icon and text sit next to each other */
    align-items: center;
    gap: 8px;
    
    color: #d8d8d8;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.action-item-inline:hover {
    color: #ff2670;
    background: rgba(255, 38, 112, 0.05); /* Subtle glowing hover oval background */
}

/* Standard SVG Dimensions inherited from earlier setup */
/* 1. Base Icon Style (Your existing code) */
.action-icon {
    width: clamp(18px, 1.8vw, 24px);
    height: clamp(18px, 1.8vw, 24px);
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
    filter: brightness(0) invert(1); /* Forces white by default */
    transition: filter 0.2s ease, opacity 0.2s ease; /* Smooth color transition transitions */
}

/* 2. When Like Button is pressed: Turn Icon Yellow (#FFD700) */
.action-item-inline.liked .action-icon {
    opacity: 1;
    /* ⚡ This exact combination maps a white icon perfectly to #f4c542 */
    filter: invert(81%) sepia(26%) saturate(1461%) hue-rotate(338deg) brightness(101%) contrast(92%);
}

/* 3. When Dislike Button is pressed: Alternate styling option */
.action-item-inline.disliked .action-icon {
    opacity: 1;
    /* ⚡ Turns the white icon into a red/orange accent alert color */
    filter: invert(40%) sepia(90%) saturate(2000%) hue-rotate(340deg) brightness(95%) contrast(100%);
}

.action-item-inline span {
    font-size: clamp(12px, 1vw, 15px);
    font-weight: 600;
}

/* Right-aligned plain text views styling */
.views-display {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #777777;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
}

.floating-indicator {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 14px;
  animation: floatUp 0.8s ease-out forwards;
  pointer-events: none;
}

.floating-indicator.plus {
  color: #22c55e; /* Green */
}

.floating-indicator.minus {
  color: #ef4444; /* Red */
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translate(-50__, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50__, -25px);
  }
}

/* DIVIDER */
.watch-divider{
    height:3px;
    background:#f4c542;
    width:100%;
    margin-bottom: clamp(12px, 1.5vw, 20px);
}


/* MOBILE */
@media(max-width:768px){


      .watch-actions{
        display:flex;
        gap:12px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        padding-bottom:10px;
    }

    .action-item{
        flex:0 0 70px;
    }

    .watch-actions::-webkit-scrollbar{
        display:none;
    }
}

/* Color shift feedback when successfully copied to clipboard */
.action-item-inline.copied {
  color: #10b981; /* Soft green */
}

.action-item-inline.copied .action-icon {
  fill: #10b981;
}


/* ==========================================================================
   TAXANOMY GRIDS
   ========================================================================== */

.actress-wrapper {
    position: relative;
    overflow: hidden;
}

.actress-row {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  width: 100%; 
}

.actress-row::-webkit-scrollbar {
  display: none;
}

.actress-item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 70px;
  text-decoration: none;
}


.actress-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
  
}

@media (hover: hover) {
    .actress-item:hover .actress-circle {
        width: 60px;
        height: 80px;
        border-radius: 45px;
        object-fit: cover;
        z-index: 100;
    }
}

.actress-name {
    transition: opacity .2s ease;
}

@media (hover: hover) {
    .actress-item:hover .actress-name {
        opacity: 0;
    }
}


.placeholder-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333; /* Dark Grey background */
  color: #f4c542;       /* Yellow text for initials */
  font-weight: bold;
  font-size: 18px;
}

/* Name styling */
.actress-name {
  color: #f4c542;       /* Yellow name */
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Add underline on hover */
.actress-item:hover .actress-name {
  text-decoration: underline;
}


.studio-wrapper {
    position: relative;
    overflow: hidden;
}


.studio-row {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  flex-wrap: nowrap;     /* Crucial: prevents wrapping, forces scroll */
}

.studio-row::-webkit-scrollbar {
  display: none;        /* Hide scrollbar in Chrome/Safari/Edge */
}

.studio-pill {
  display: flex;
  align-items: center;
  height: 38px;
  gap: 8px;
  background: #1a1a1a;
  padding: 0 10px 0 0;
  border-radius: 50px;
  border: 1px solid #333;
  color: #fff;
  white-space: nowrap;
  text-decoration: none; /* Important for <a> tags */
  transition: border-color 0.2s;
}

.studio-pill:hover {
  background: #2a2a2a;
}

.studio-logo {
  height: 38px;
  width: auto;
  max-width: 38px;
  object-fit: contain;
}

.category-wrapper {
    position: relative;
    overflow: hidden;
}

.category-row {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; 
  flex-wrap: nowrap;     
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 6px;

    background: #1a1a1a;
    color: #fff;

    padding: 4px 12px; 
    border-radius: 999px;
    border: 1px solid #333;

    font-size: 13px;
    line-height: 1;
    min-height: 30px;

    white-space: nowrap;
    text-decoration: none;
    transition: border-color .2s;
}

.category-row::-webkit-scrollbar {
  display: none;        /* Hide scrollbar in Chrome/Safari/Edge */
}

.category-pill:hover {
  background: #2a2a2a;
}

.scroll-prev {
    position: absolute;
    left: 12px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    color: #fff;
    font-size: 12px;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.scroll-next {
    position: absolute;
    right: 12px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 12px;
    color: #fff;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 4px 16px rgba(0,0,0,.35),
        inset 0 1px 1px rgba(255,255,255,.35);

    transition: all .25s ease;
}

.scroll-prev:hover,
.scroll-next:hover {
    background: rgba(255,255,255,.2);
}

.scroll-next:active {
    transform: translateY(-50%) scale(.95);
}

/* Hidden on mobile */
.scroll-prev,
.scroll-next {
    display: none;
}

/* Show on tablets and desktops */
@media (min-width: 768px) {
    .scroll-prev,
    .scroll-next {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* ==========================================================================
     FAQ
   ========================================================================== */

details.faq-item {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

details summary {
    padding: 16px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: "+";
    float: right;
    font-size: 22px;
    color: #ffc107;
}

details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px 18px;
    color: #d5d5d5;
    line-height: 1.7;
}

details summary {
    outline: none;
}

details summary:hover {
    background: #252525;
}

details[open] {
    border-color: #ffc107;
}

/* ==========================================================================
     SEO-SAFE AGE GATE OVERLAY
   ========================================================================== */

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92); /* Dark blur backdrop masking content */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
    /* Forces it above everything else, including your header overlays */
    z-index: 999999; 
    backdrop-filter: blur(8px); /* Modern blur shield effect */
}

.age-gate-box {
    background: #111111;
    border: 1px solid #222222;
    width: 100%;
    max-width: 580px;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.age-gate-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.age-gate-title span {
    color: #ff2670; /* Distinct red highlighted alert phrase */
}

.age-gate-text {
    font-size: clamp(14px, 1.1vw, 16px);
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.age-gate-btn {
    width: 100%;
    background: #ff2670;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.age-gate-btn:hover {
    background: #e01b5f;
}

.age-gate-footer {
    margin-top: 24px;
    font-size: 12px;
}

.age-gate-footer a {
    color: #666;
    text-decoration: none;
}

/* ==========================================================================
   FINAL PRODUCTION AD SLOTS CSS
   ========================================================================== */

.ad-slot-global-wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: clamp(12px, 1.5vw, 20px);

}

/* ⚡ Fluid Layouts (Native Banner & Video Banner) */
.ad-slot-fluid-view {
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* 💻 DESKTOP VIEWPORTS (Screens wider than 768px) */
@media (min-width: 769px) {
    .ad-slot-mobile-view {
        display: none !important;
    }
    .ad-slot-desktop-view {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }
    .ad-slot-fluid-view {
        min-height: var(--min-height-desktop, 180px);
    }
}

/* 📱 MOBILE VIEWPORTS (Screens 768px and narrower) */
@media (max-width: 768px) {
    .ad-slot-desktop-view {
        display: none !important;
    }
    .ad-slot-mobile-view {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }
    .ad-slot-fluid-view {
        min-height: var(--min-height-mobile, 220px);
    }
    .hidden-zone {
        display: none !important;
    }
}

/* ==========================================================================
   VIDEO GRID INTEGRATED AD SLOTS
   ========================================================================== */

/* The outer ad slot container takes the place of a normal grid item */
.video-card-ad-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Force ExoClick's responsive player to perfectly mimic your video card dimensions */
.video-card-ad-wrapper .ad-slot-fluid-view {
    width: 100%;
    position: relative;
    /* Sets a strict 16:9 video container ratio */
    aspect-ratio: 16 / 9; 
    background-color: #000; /* Dark backdrop while ad renders */
    border-radius: var(--card-border-radius, 8px); /* Optional: matches your site layout */
    overflow: hidden;
}

/* Forces the ad player script to stretch fully across its grid cell */
.video-card-ad-wrapper .ad-slot-fluid-view ins,
.video-card-ad-wrapper .ad-slot-fluid-view iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Match the simulated title styling under the video block */
.video-card-ad-wrapper .ad-title-label {
    margin-top: 0.5rem;
    font-size: var(--title-font-size, 0.95rem);
    font-weight: 500;
    color: var(--title-text-color, #777); /* Slightly dimmed to denote sponsored placement */
    text-align: left;
}

/* ==========================================================================
   🛡️ ANTI-ADBLOCK GRID COLLAPSE SHIELD
   ========================================================================== */

/* 1. Collapse standard banners if they contain no active ad elements */
.ad-slot-global-wrapper:empty,
.ad-slot-desktop-view:empty,
.ad-slot-mobile-view:empty,
.ad-slot-fluid-view:empty {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Handle cases where Next.js mounts a hidden fallback wrapper structure, 
   but it contains zero active rendering nodes (ins/iframe) inside it. */
.ad-slot-fluid-view:not(:has(ins)):not(:has(iframe)) {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    aspect-ratio: auto !important;
    background-color: transparent !important;
}

/* 3. Collapse the entire integrated Video Grid Card Wrapper if its internal 
   fluid engine container has collapsed from being blocked. */
.video-card-ad-wrapper:has(.ad-slot-fluid-view:not(:has(ins)):not(:has(iframe))) {
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   NATIVE BANNER LAYOUT FIXES
   ========================================================================== */

/* Target the specific global wrapper for the native zone */
.zone-native_banner {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 1rem; /* Acts as a structural safety padding buffer on small devices */
    box-sizing: border-box;
    display: block;
    clear: both; /* Prevents floated layout wrappers from creeping into the ad territory */
}

/* Force the fluid element to stay fully contained */
.zone-native_banner .ad-slot-fluid-view {
    width: 100%;
    max-width: 1200px; /* Adjust this to perfectly match your site's main layout max-width */
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

/* 💥 THE CORE FIX: Force ExoClick's injected internal markup arrays 
   (divs, tables, links, images) to obey structural overflow containment.
*/
.zone-native_banner ins,
.zone-native_banner iframe,
.zone-native_banner div,
.zone-native_banner a {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Prevent ExoClick's image wrappers from stretching beyond their designated grid blocks */
.zone-native_banner img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* ==========================================================================
   UNIVERSAL LAYOUT FOR STATIC PAGES (Privacy, DMCA, Disclaimer, etc.)
   ========================================================================== */

.static-layout {
  max-width: 56rem; /* 4xl equivalent */
  margin: 3rem auto;
  padding: 0 1rem;
  color: #d4d4d8; /* text-zinc-300: default paragraph text */
}

/* Base Headings */
.static-layout h1 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.static-layout h2 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* Default Paragraph Blocks */
.static-layout p {
  line-height: 1.625; /* leading-relaxed */
  margin-bottom: 1.25rem;
}

/* Metadata Timestamps */
.static-layout .last-updated {
  font-size: 0.875rem; /* text-sm */
  color: #a1a1aa; /* text-zinc-400 */
  margin-bottom: 2rem;
}

/* ==========================================================================
   7. FOOTER STYLING
   ========================================================================== */
.site-footer {
  
 
  color: #ffffff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #333; /* Subtle line to separate it */
  margin-top: 40px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cccccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-text {
  font-size: 12px;
  color: #999999;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.copyright-line {
    text-align: center;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-dim);
}



