/* ===== BASE ===== */
html, body { height:100%; }
body{
  margin:0;
  background:#000;
  color:#eee;
  font-family: 'Oswald', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.content{
    width:100%;
    max-width:1920px;
    margin-top:60px;
}
/* FlexImages core */
.flex-images{
    width:100%;
    max-width:1920px;
    margin:0 auto;
   overflow:hidden; }

.flex-images .item{
  float:left;
  box-sizing:content-box;
  overflow:hidden;
  position:relative;
  border:1px solid #d4d4d4;
  margin:3px;
  background:#000;
}

/* Media */
.flex-images .item img{
  display:block;
  width:100%;
}

.flex-images .item video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

/* Keep if you still have container-fluid px-2 */
.container-fluid.px-2{
  padding-left:0 !important;
  padding-right:0 !important;
}

/* Optional: keep your .video wrapper */
.video{
  position:relative;
  background:#000;
  width:100%;
  height:100%;
}

/* Modal */
#JPO .popup_content{
  width:100vw;
  height:100vh;
  margin:0;
  border-radius:0;
  overflow:hidden;
  background:#000;
  position:fixed;
  inset:0;
}
#iframe_div {
  width:100%;
  height:100%;
}
#JPO .popup_background{
  background:rgba(0,0,0,.95) !important;
}
.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,0));
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity .2s ease;
}

.flex-images .item:hover .bottom {
  opacity: 1;
}

.meta-right {
  display: flex;
  gap: 12px;
}

.sub {
  font-weight: 600;
  color: #aaa;
  transition: color 0.15s ease;
}
.sub:hover {
  color: #fff;
}

.hover-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;

  color: #fff;
  background: rgba(0,0,0,0.55);

  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.video:hover .hover-title {
  opacity: 1;
}

.video,
.video video,
.openVideo {
  cursor: pointer;
}
.video:hover video {
  filter: brightness(0.85);
}

#videoTooltip {
  position: fixed;

  background: rgba(0, 0, 0, 0.88);
  color: #fff;

  padding: 3px 7px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;

  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 4px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.35);

  white-space: nowrap;   
  width: auto;              
  max-width: none;           

  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;

  z-index: 30000;
}

/* NAVBAR */
#mainNavbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10000;
}

/* LEFT SIDE */
.nav-left{
  display:flex;
  align-items:center;
  gap:20px;
}

/* CENTER LOGO */
.nav-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

/* RIGHT SIDE */
.nav-right{
  display:flex;
  align-items:center;
}

/* SEARCH BAR */
.search-wrap {
    display: flex;
    align-items: center;
    height: 36px;
}

.search-wrap input {
    background: #0d0d0d;
    border: 1px solid #333;
    border-right: none;
    border-radius: 3px 0 0 3px;
    outline: none;
    color: #aaa;
    padding: 0 12px;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    width: 220px;
    height: 100%;
}

.search-wrap input::placeholder {
    color: #9aa0a6;
}

.search-wrap input:focus {
    border-color: #555;
    color: #eee;
}

.search-wrap button {
    background: #cc0000;
    border: 1px solid #cc0000;
    border-radius: 0 3px 3px 0;
    color: #fff;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
    font-size: 14px;
    transition: background .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-wrap button:hover {
    background: #ee0000;
    border-color: #ee0000;
}

/* DESKTOP MENU */
.desktop-menu{
  display:flex;
  gap:20px;
}

.desktop-menu a{
  color:#ccc;
  text-decoration:none;
  font-size:14px;
}

.desktop-menu a:hover{
  color:#fff;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:35px;
  background:#1a1a1a;
  padding:10px;
  flex-direction:column;
}

.dropdown:hover .dropdown-menu{
  display:flex;
}

.logo {
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
}

/* Keep the logo identical in every state — no blue/underline on hover */
.logo:link,
.logo:visited,
.logo:hover,
.logo:active,
.logo:focus {
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #f80000;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
}

/* PAGE OFFSET */
#page {
    padding-top: 70px;
    overflow-x: hidden;
}

/* OVERLAY */
#panelOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 15000;
}

#panelOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDE PANELS */
.sidePanel {
    position: fixed;
    top: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #0d0d0d;
    z-index: 20000;
    overflow-y: auto;
    transition: 0.3s ease;
}

.leftPanel {
    left: 0;
    transform: translateX(-100%);
}

.leftPanel.active {
    transform: translateX(0);
}

.rightPanel {
    right: 0;
    transform: translateX(100%);
}

.rightPanel.active {
    transform: translateX(0);
}
.panelHeader {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #222;
    font-weight: 600;
}

.panelContent a {
    display: block;
    padding: 12px 15px;
    color: #ccc;
    text-decoration: none;
}

.panelContent a:hover {
    color: #f80000;
}

hr {
    border-color: #222;
}
.sidePanel {
    -webkit-overflow-scrolling: touch;
}
.no-scroll {
    overflow: hidden;
}
#openCategories i{
    transform: rotate(180deg);
}

/* SUBREDDIT ROWS */
.subredditList a{
    display:flex;
    align-items:center;
    padding:8px 14px;
    border-bottom:1px solid #111;
    text-decoration:none;

    font-size:15px;
    color:#858585;
}

/* subreddit name */
.subName{
    font-weight:400;
}

/* total videos */
.subScore{
    color:#a6a6a6;
    font-size:13px;     /* bigger */
    margin-left:12px;
}

/* videos today */
.subChange{
    color:#28a745;
    font-size:13px;     /* bigger */
    margin-left:4px;
}

/* trending icon */
.subHot{
    font-size:12px;
    margin-left:3px;
}

/* spacing between rows */
.subredditElement{
    margin-top:20px;
    margin-bottom:20px;
}

/* FIX hover turning red */
.subredditList a:hover{
    color:#f1f1f1;
}

.subredditList a:hover .subScore{
    color:#a6a6a6;
}

.subredditList a:hover .subChange{
    color:#28a745;
}
/* VIDEO PREVIEW SYSTEM */

.video-wrapper{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.thumb{
  width:100%;
  height:auto;
  display:block;
}

.pcVideo{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
/* ===== NAVBAR LINKS ===== */

.desktop-menu{
    display:flex;
    align-items:center;
    gap:25px;
}

.desktop-menu > a{
    color:#9aa0a6;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:6px;
    font-weight:600;
}

.desktop-menu > a i{
    color:#7d848a;
}

/* active menu item */
.desktop-menu > a.active{
    color:#fff;
}

.desktop-menu > a.active i{
    color:#ff2a2a;
}


/* ===== DROPDOWN ===== */

.dropdown{
    position:relative;
    display:flex;
    align-items:center;
}

/* make trigger match other menu links */
.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
    color:#9aa0a6;
    text-decoration:none;
    font-weight:600;
}

/* dropdown panel */

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    display:none;

    min-width:160px;
    padding:0;

    background:#ffffff;
    border-radius:3px;
    overflow:hidden;

    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

/* invisible hover bridge */
.dropdown-menu::before{
    content:"";
    position:absolute;
    top:-10px;
    left:0;
    width:100%;
    height:10px;
}

/* show dropdown */
.dropdown:hover .dropdown-menu{
    display:block;
}

/* dropdown items */

.dropdown-menu a{
    display:block;
    padding:11px 18px;

    color:#2f2f2f;
    text-decoration:none;

    font-weight:600;
    font-size:14px;
}

/* separators */

.dropdown-menu a + a{
    border-top:1px solid #d0d0d0;
}

/* hover */

.dropdown-menu a:hover{
    background:#bfbfbf;
    color:#2f2f2f;
}
.live-cam{
    position: relative;
    overflow: hidden;
}

.live-cam .video{
    position: relative;
    width: 100%;
    height: 100%;
}

.live-cam iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:0;
}
@media (max-width:768px){

  .desktop-menu{
    display:none;
  }

  .nav-right{
    display:none;
  }

}

/* CATEGORY GRID */
.categoryGrid {
    display: flex;
    flex-direction: column;
    padding: 6px 0;
}

.categoryGrid .cat-link {
    display: block;
    padding: 11px 15px;
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid #111;
    font-size: 15px;
    transition: color 0.15s;
}

.categoryGrid .cat-link:hover {
    color: #f80000;
}

.categoryGrid .cat-link.active-cat {
    color: #f80000;
    font-weight: 600;
}

/* PANEL SEARCH */
.panelSearch {
    display: block;
    width: calc(100% - 28px);
    margin: 10px 14px;
    padding: 7px 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: #ccc;
    font-size: 14px;
}

.panelSearch:focus {
    outline: none;
    border-color: #555;
}
/* ===== WITH SOURCE BUTTON ===== */
.with-source-btn {
    color: #9aa0a6 !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.with-source-btn i {
    color: #7d848a;
}
.with-source-btn.active {
    color: #fff !important;
}
.with-source-btn.active i {
    color: #28a745;
}

/* ===== SOURCE CHECKMARK OVERLAY ===== */
.source-check {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 22px;
    height: 22px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 11px;
    color: #fff;
}
/* ===== STICKY MINI CAM PLAYER ===== */
#miniCamPlayer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    z-index: 50000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

#miniCamHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #111;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.mini-red-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    margin-right: 7px;
    animation: miniCamBlink 1s infinite;
    flex-shrink: 0;
}

@keyframes miniCamBlink {
    0%   { opacity: 1; }
    50%  { opacity: .3; }
    100% { opacity: 1; }
}

#miniCamClose {
    background: #cc0000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
}

#miniCamClose:hover {
    background: #ff0000;
}

#miniCamPlayer iframe {
    width: 100%;
    height: 280px;
    display: block;
    border: 0;
}

/* ===== LIVE SEX STREAMS NAV LINK & NAV-CENTER LAYOUT ===== */

/* nav-center now only holds the logo — center it cleanly */
#mainNavbar .nav-center {
    left: 50%;
    transform: translateX(-50%);
}

/* live streams button — now lives inside .desktop-menu, inherits its styles
   but keep dot styling scoped to nav */
#mainNavbar .live-streams-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* nav red dot — static, scoped so it doesn't blink like the cam-card .red-dot */
#mainNavbar .live-streams-btn .red-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff2e2e;
    flex-shrink: 0;
    animation: none !important;
}

/* nav-right: WITH SOURCE sits before the search bar, vertically centered */
#mainNavbar .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* hide on mobile, just like .nav-right and .desktop-menu */
@media (max-width: 768px) {
    #mainNavbar .live-streams-btn { display: none; }
    #mainNavbar .nav-right .with-source-btn { display: none; }
}

/* ===== CATEGORY PANEL — pinned legal section at bottom ===== */

/* Override the default sidePanel scrolling for #categoryPanel.
   The panel itself doesn't scroll — its inner .panelScroll does.
   This keeps .panelLegal pinned at the visible bottom. */
#categoryPanel {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#categoryPanel .panelHeader {
    flex-shrink: 0;
}

/* The panel itself becomes a flex container so we can pin legal at bottom */
#categoryPanel .panelContent {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

/* Top area scrolls independently */
#categoryPanel .panelScroll {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

/* Pinned bottom legal section */
.panelLegal {
    flex-shrink: 0;
    border-top: 1px solid #222;
    padding: 12px 15px 14px;
    background: #0d0d0d;
    font-size: 12px;
    line-height: 1.8;
}

.panelLegal a {
    display: inline;
    padding: 0;
    color: #888;
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}

.panelLegal a:hover {
    color: #fff;
}

/* Separator travels with the link it precedes — wraps together, never orphaned */
.panelLegal a + a::before {
    content: "·";
    color: #fff;
    font-size: 16px;
    margin: 0 8px;
}

/* ===== AGE VERIFICATION MODAL ===== */

/* Lock the page when the gate is up — no scroll, no interaction with content */
html.ageGate-locked,
html.ageGate-locked body {
    overflow: hidden !important;
    height: 100% !important;
}

#ageGate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: 'Oswald', sans-serif;
}

.ageGate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ageGate-card {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 32px 28px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.ageGate-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.ageGate-warn {
    font-size: 22px;
    color: #ff8c00;
}

.ageGate-card h2 {
    margin: 0;
    color: #ff2e2e;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ageGate-lead {
    text-align: center;
    color: #ccc;
    font-size: 15px;
    margin: 0 0 14px;
}

.ageGate-rule {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin: 0 0 22px;
    padding: 12px;
    background: #1a1a1a;
    border-radius: 4px;
}

.ageGate-fineprint {
    color: #aaa;
    font-size: 13px;
    margin: 0 0 8px;
}

.ageGate-list {
    color: #aaa;
    font-size: 13px;
    margin: 0 0 22px;
    padding-left: 22px;
    line-height: 1.5;
}

.ageGate-list li {
    margin-bottom: 4px;
}

.ageGate-list a {
    color: #ff5252;
    text-decoration: none;
}

.ageGate-list a:hover {
    text-decoration: underline;
}

.ageGate-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.ageGate-btn {
    width: 100%;
    padding: 13px 16px;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .15s, transform .1s;
}

.ageGate-btn:active {
    transform: translateY(1px);
}

.ageGate-btn-enter {
    background: #cc0000;
    color: #fff;
}

.ageGate-btn-enter:hover {
    background: #ee0000;
}

.ageGate-btn-exit {
    background: #1a1a1a;
    color: #888;
    border: 1px solid #333;
}

.ageGate-btn-exit:hover {
    background: #222;
    color: #ccc;
}

.ageGate-footer {
    text-align: center;
    font-size: 11px;
    color: #555;
    padding-top: 14px;
    border-top: 1px solid #1a1a1a;
}

.ageGate-footer a {
    color: #888;
    text-decoration: none;
}

.ageGate-footer a:hover {
    color: #fff;
}

.ageGate-footer span {
    color: #fff;
    font-size: 14px;
    margin: 0 4px;
}

@media (max-width: 480px) {
    .ageGate-card { padding: 24px 18px 18px; }
    .ageGate-card h2 { font-size: 18px; }
    .ageGate-rule { font-size: 14px; }
}