/**
 * FilmyBazaar Desktop OTT Shell — min-width 768px only
 * PageShell: sidebar + top nav + main content
 */

@media (min-width: 768px) {
  html.fb-desktop-ott {
    scroll-behavior: auto;
    scroll-padding-top: calc(var(--fb-topnav-height) + 12px);
  }

  html.fb-desktop-ott.fb-sidebar-collapsed {
    --fb-sidebar-width: var(--fb-sidebar-collapsed);
  }

  /* ─── Sidebar ─── */
  html.fb-desktop-ott .fb-desktop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 950;
    width: var(--fb-sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: var(--fb-border-subtle);
    transition: width var(--fb-dur-moderate) var(--fb-ease-standard);
    overflow: hidden;
  }

  html.fb-desktop-ott .fb-sidebar-brand {
    display: flex;
    align-items: center;
    gap: var(--fb-space-3);
    padding: var(--fb-space-5) var(--fb-space-4);
    min-height: var(--fb-topnav-height);
    border-bottom: var(--fb-border-subtle);
    flex-shrink: 0;
  }

  html.fb-desktop-ott .fb-sidebar-brand i {
    color: var(--fb-brand-red);
    font-size: 1.35rem;
    flex-shrink: 0;
  }

  html.fb-desktop-ott .fb-sidebar-brand-text {
    font-family: var(--fb-font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    opacity: 1;
    transition: opacity var(--fb-dur-normal) ease;
  }

  html.fb-desktop-ott.fb-sidebar-collapsed .fb-sidebar-brand-text,
  html.fb-desktop-ott.fb-sidebar-collapsed .fb-sidebar-label,
  html.fb-desktop-ott.fb-sidebar-collapsed .fb-sidebar-link span:not(.fb-sidebar-icon) {
    opacity: 0;
    width: 0;
    overflow: hidden;
  }

  html.fb-desktop-ott .fb-sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--fb-space-3) 0;
    scrollbar-width: thin;
  }

  html.fb-desktop-ott .fb-sidebar-label {
    padding: var(--fb-space-4) var(--fb-space-5) var(--fb-space-2);
    font-family: var(--fb-font-label);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-text-muted);
  }

  html.fb-desktop-ott .fb-sidebar-link {
    display: flex;
    align-items: center;
    gap: var(--fb-space-3);
    padding: 0.65rem var(--fb-space-4);
    margin: 2px var(--fb-space-2);
    color: var(--fb-text-secondary);
    text-decoration: none;
    border-radius: var(--fb-radius-sm);
    border-left: 3px solid transparent;
    font-family: var(--fb-font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background var(--fb-dur-fast) ease, color var(--fb-dur-fast) ease, border-color var(--fb-dur-fast) ease, box-shadow var(--fb-dur-fast) ease;
  }

  html.fb-desktop-ott .fb-sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-text-primary);
  }

  html.fb-desktop-ott .fb-sidebar-link.fb-sidebar-active {
    background: rgba(229, 9, 20, 0.1);
    border-left-color: var(--fb-brand-red);
    color: var(--fb-text-primary);
    box-shadow: inset 0 0 24px var(--fb-brand-red-glow);
  }

  html.fb-desktop-ott .fb-sidebar-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--fb-text-tertiary);
    transition: color var(--fb-dur-fast) ease;
  }

  html.fb-desktop-ott .fb-sidebar-link:hover .fb-sidebar-icon,
  html.fb-desktop-ott .fb-sidebar-link.fb-sidebar-active .fb-sidebar-icon {
    color: var(--fb-brand-red);
  }

  html.fb-desktop-ott .fb-sidebar-divider {
    height: 1px;
    margin: var(--fb-space-3) var(--fb-space-4);
    background: rgba(255, 255, 255, 0.06);
  }

  html.fb-desktop-ott .fb-sidebar-footer {
    padding: var(--fb-space-3);
    border-top: var(--fb-border-subtle);
  }

  html.fb-desktop-ott .fb-sidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--fb-space-2);
    padding: var(--fb-space-3);
    border: var(--fb-border-soft);
    border-radius: var(--fb-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--fb-text-secondary);
    cursor: pointer;
    font-family: var(--fb-font-heading);
    font-size: 0.8rem;
    transition: background var(--fb-dur-fast) ease, transform var(--fb-dur-fast) var(--fb-ease-spring);
  }

  html.fb-desktop-ott .fb-sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--fb-text-primary);
  }

  html.fb-desktop-ott .fb-sidebar-toggle i {
    transition: transform var(--fb-dur-moderate) var(--fb-ease-standard);
  }

  html.fb-desktop-ott.fb-sidebar-collapsed .fb-sidebar-toggle i {
    transform: rotate(180deg);
  }

  /* ─── Page shell offset ─── */
  html.fb-desktop-ott .fb-page-shell {
    margin-left: var(--fb-sidebar-width);
    width: calc(100% - var(--fb-sidebar-width));
    max-width: none;
    box-sizing: border-box;
    min-height: 100vh;
    transition: margin-left var(--fb-dur-moderate) var(--fb-ease-standard), width var(--fb-dur-moderate) var(--fb-ease-standard);
  }

  html.fb-desktop-ott .fb-site-chrome .header {
    position: fixed !important;
    top: 0;
    left: var(--fb-sidebar-width);
    right: 0;
    z-index: 1000 !important;
    height: var(--fb-topnav-height);
    background: rgba(5, 5, 5, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: left var(--fb-dur-moderate) var(--fb-ease-standard), height var(--fb-dur-normal) ease, background var(--fb-dur-moderate) ease;
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 0 !important;
  }

  html.fb-desktop-ott.fb-nav-compact .fb-site-chrome .header {
    height: var(--fb-topnav-height-compact);
  }

  html.fb-desktop-ott .fb-site-chrome .header.fb-nav-transparent {
    background: transparent !important;
    border-bottom-color: transparent;
  }

  html.fb-desktop-ott .fb-site-chrome .header.fb-nav-scrolled,
  html.fb-desktop-ott .fb-site-chrome .header.fb-header-scrolled {
    background: rgba(5, 5, 5, 0.95) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  }

  html.fb-desktop-ott .fb-site-chrome .header-container {
    max-width: var(--fb-content-max);
    height: 100%;
    padding: 0 clamp(1rem, 2vw, 2rem) !important;
  }

  html.fb-desktop-ott .fb-site-chrome .nav-menu {
    display: none !important;
  }

  html.fb-desktop-ott .fb-site-chrome.fb-header-search-only .fb-header-search-zone,
  html.fb-desktop-ott .fb-header-search-only .fb-header-search-zone {
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(880px, calc(100vw - 380px));
  }

  html.fb-desktop-ott .fb-site-chrome .nav-link {
    font-family: var(--fb-font-heading) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: var(--fb-text-tertiary) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0.5rem 0.85rem !important;
    position: relative;
  }

  html.fb-desktop-ott .fb-site-chrome .nav-link:hover {
    color: var(--fb-text-primary) !important;
    background: transparent !important;
  }

  html.fb-desktop-ott .fb-site-chrome .nav-link.active {
    color: var(--fb-text-primary) !important;
    background: transparent !important;
  }

  html.fb-desktop-ott .fb-site-chrome .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--fb-brand-red);
    box-shadow: var(--fb-shadow-red-glow);
    border-radius: 2px;
  }

  html.fb-desktop-ott .fb-site-chrome .nav-link i {
    display: none;
  }

  html.fb-desktop-ott .fb-header-actions {
    display: flex;
    align-items: center;
    gap: var(--fb-space-3);
    margin-left: var(--fb-space-2);
  }

  html.fb-desktop-ott .fb-header-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: var(--fb-border-soft);
    background: rgba(255, 255, 255, 0.05);
    color: var(--fb-text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--fb-dur-fast) ease, color var(--fb-dur-fast) ease, transform var(--fb-dur-fast) var(--fb-ease-spring);
  }

  html.fb-desktop-ott .fb-header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--fb-text-primary);
    transform: scale(1.05);
  }

  html.fb-desktop-ott .fb-notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: var(--fb-radius-pill);
    background: var(--fb-brand-red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  html.fb-desktop-ott .fb-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(229, 9, 20, 0.45);
    object-fit: cover;
    cursor: pointer;
    background: linear-gradient(135deg, #2a2a2a, #111);
  }

  html.fb-desktop-ott .fb-site-chrome .hamburger-menu {
    display: none !important;
  }

  html.fb-desktop-ott main.main {
    padding-top: calc(var(--fb-topnav-height) + var(--fb-space-4));
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  html.fb-desktop-ott.fb-nav-compact main.main {
    padding-top: calc(var(--fb-topnav-height-compact) + var(--fb-space-4));
  }

  /* ─── Cinematic hero (desktop) ─── */
  html.fb-desktop-ott body.fb-premium .hero.fb-hero-pro {
    width: calc(100% - clamp(1.5rem, 4vw, 3rem));
    max-width: none;
    min-height: clamp(420px, 72vh, 780px);
    margin: 0 auto var(--fb-space-8);
    border-radius: var(--fb-radius-lg);
    overflow: hidden;
  }

  html.fb-desktop-ott body.fb-premium .hero.fb-hero-pro .hero-title {
    font-family: var(--fb-font-display) !important;
    font-size: clamp(3rem, 5.5vw, 5.5rem) !important;
    letter-spacing: 0.02em;
    line-height: 1.08 !important;
    padding-top: 0.06em;
    overflow: visible !important;
    text-shadow: var(--fb-shadow-text);
  }

  html.fb-desktop-ott .fb-hero-controls {
    position: absolute;
    bottom: var(--fb-space-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: var(--fb-space-4);
  }

  html.fb-desktop-ott .fb-hero-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: var(--fb-border-soft);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--fb-dur-fast) ease, transform var(--fb-dur-fast) var(--fb-ease-spring);
  }

  html.fb-desktop-ott .fb-hero-nav:hover {
    background: rgba(229, 9, 20, 0.35);
    transform: scale(1.06);
  }

  html.fb-desktop-ott .fb-hero-dots {
    display: flex;
    gap: var(--fb-space-2);
  }

  html.fb-desktop-ott .fb-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform var(--fb-dur-fast) ease, background var(--fb-dur-fast) ease;
  }

  html.fb-desktop-ott .fb-hero-dot.active {
    background: var(--fb-brand-red);
    transform: scale(1.25);
    box-shadow: 0 0 12px var(--fb-brand-red-glow);
  }

  html.fb-desktop-ott .fb-hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 6;
  }

  html.fb-desktop-ott .fb-hero-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--fb-brand-red);
    box-shadow: 0 0 12px var(--fb-brand-red-glow);
    transition: width 0.1s linear;
  }

  /* ─── Content rows ─── */
  html.fb-desktop-ott body.fb-premium .section {
    padding-left: clamp(1.25rem, 3vw, 2.5rem);
    padding-right: clamp(1.25rem, 3vw, 2.5rem);
    margin-bottom: var(--fb-space-8);
  }

  html.fb-desktop-ott body.fb-premium .section-title {
    font-family: var(--fb-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
  }

  html.fb-desktop-ott body.fb-premium .section-link {
    color: var(--fb-brand-red) !important;
    font-weight: 600;
    font-size: 0.875rem;
  }

  html.fb-desktop-ott body.fb-premium .section-link:hover {
    text-decoration: underline;
  }

  html.fb-desktop-ott body.fb-premium .slider {
    grid-auto-columns: 180px;
    gap: var(--fb-space-4);
    scroll-snap-type: x mandatory;
  }

  html.fb-desktop-ott body.fb-premium .slider > .movie-card {
    scroll-snap-align: start;
  }

  html.fb-desktop-ott body.fb-premium .movie-card {
    border-radius: var(--fb-radius-md);
    box-shadow: var(--fb-shadow-card);
    transition: transform var(--fb-dur-normal) var(--fb-ease-spring), box-shadow var(--fb-dur-normal) ease;
  }

  html.fb-desktop-ott body.fb-premium .movie-card:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: var(--fb-shadow-card-hover);
  }

  /* Backdrop / continue-watching cards */
  html.fb-desktop-ott .fb-backdrop-rail {
    grid-auto-columns: min(320px, 28vw) !important;
  }

  html.fb-desktop-ott .fb-backdrop-card {
    aspect-ratio: 16 / 9;
    border-radius: var(--fb-radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--fb-shadow-card);
    transition: transform var(--fb-dur-normal) var(--fb-ease-spring), box-shadow var(--fb-dur-normal) ease;
  }

  html.fb-desktop-ott .fb-backdrop-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--fb-shadow-card-hover);
  }

  html.fb-desktop-ott .fb-backdrop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  html.fb-desktop-ott .fb-backdrop-card .fb-cw-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity var(--fb-dur-normal) ease;
  }

  html.fb-desktop-ott .fb-backdrop-card:hover .fb-cw-play {
    opacity: 1;
  }

  html.fb-desktop-ott .fb-backdrop-card .fb-cw-play i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--fb-brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--fb-shadow-red-glow);
  }

  html.fb-desktop-ott .fb-backdrop-meta {
    padding: var(--fb-space-3) 0 0;
  }

  html.fb-desktop-ott .fb-backdrop-meta h3 {
    font-family: var(--fb-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
  }

  html.fb-desktop-ott .fb-backdrop-meta p {
    font-size: 0.78rem;
    color: var(--fb-text-tertiary);
    margin: 0;
  }

  html.fb-desktop-ott .fb-continue-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
  }

  html.fb-desktop-ott .fb-continue-bar span {
    display: block;
    height: 100%;
    background: var(--fb-brand-red);
  }

  html.fb-desktop-ott .fb-top10-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
    padding: 0.2rem 0.45rem;
    font-family: var(--fb-font-label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: var(--fb-brand-red);
    color: #fff;
    border-radius: var(--fb-radius-xs);
  }

  html.fb-desktop-ott .fb-daily-discovery {
    opacity: 1;
    transform: none;
  }

  html.fb-desktop-ott .fb-ft-reviews-section,
  html.fb-desktop-ott #siteFooter {
    opacity: 1;
    transform: none;
  }

  /* Scroll reveal */
  html.fb-desktop-ott .fb-scroll-section {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  html.fb-desktop-ott .fb-scroll-section.fb-scroll-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    html.fb-desktop-ott .fb-scroll-section {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* Ultra-wide */
  @media (min-width: 1440px) {
    html.fb-desktop-ott body.fb-premium .slider {
      grid-auto-columns: 200px;
    }
  }

  @media (min-width: 2560px) {
    html.fb-desktop-ott {
      --fb-content-max: 2400px;
    }

    html.fb-desktop-ott body.fb-premium .hero.fb-hero-pro {
      min-height: 85vh;
    }
  }

  /* ─── APK buttons (header + sidebar) ─── */
  html.fb-desktop-ott .fb-header-apk-btn,
  html.fb-desktop-ott .fb-header-apk-dl {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--fb-radius-pill);
    font-family: var(--fb-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--fb-dur-fast) var(--fb-ease-spring), box-shadow var(--fb-dur-fast) ease;
  }

  html.fb-desktop-ott .fb-header-apk-btn {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.55);
    background: linear-gradient(135deg, #ffe066, #ffc107 48%, #ffb300) !important;
    background-size: 200% 200% !important;
    color: #1a1400 !important;
    animation: fbApkBtnPulse 2s ease-in-out infinite, fbApkBtnGrad 3.5s ease infinite !important;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
  }

  html.fb-desktop-ott .fb-header-apk-btn i {
    color: #1a1400 !important;
  }

  html.fb-desktop-ott .fb-header-apk-dl {
    background: rgba(255, 255, 255, 0.08);
    border: var(--fb-border-soft);
    color: var(--fb-text-primary);
  }

  html.fb-desktop-ott .fb-header-apk-btn:hover,
  html.fb-desktop-ott .fb-header-apk-dl:hover {
    transform: translateY(-2px) scale(1.03);
  }

  html.fb-desktop-ott .fb-site-chrome .fb-nav-apk {
    display: none !important;
  }

  html.fb-desktop-ott .fb-sidebar-apk {
    background: rgba(0, 206, 201, 0.12) !important;
    border-left-color: #00cec9 !important;
  }

  html.fb-desktop-ott .fb-sidebar-apk .fb-sidebar-icon {
    color: #00cec9 !important;
  }

  html.fb-desktop-ott #fb-apk-popup {
    z-index: 99999;
  }

  /* ─── Quick rail ─── */
  html.fb-desktop-ott .fb-quick-rail {
    position: sticky;
    top: var(--fb-topnav-height);
    z-index: 800;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: var(--fb-border-subtle);
    padding: 0.5rem 0;
  }

  html.fb-desktop-ott.fb-nav-compact .fb-quick-rail {
    top: var(--fb-topnav-height-compact);
  }

  html.fb-desktop-ott .fb-quick-rail-inner {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 clamp(1rem, 2vw, 2rem);
    scrollbar-width: none;
  }

  html.fb-desktop-ott .fb-quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: var(--fb-radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: var(--fb-border-subtle);
    color: var(--fb-text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--fb-dur-fast) ease, color var(--fb-dur-fast) ease;
  }

  html.fb-desktop-ott .fb-quick-chip:hover,
  html.fb-desktop-ott .fb-quick-chip.fb-quick-active {
    background: rgba(229, 9, 20, 0.18);
    color: #fff;
    border-color: rgba(229, 9, 20, 0.35);
  }

  html.fb-desktop-ott .fb-quick-apk {
    background: rgba(0, 206, 201, 0.15);
    border-color: rgba(0, 206, 201, 0.35);
    color: #7eeadb;
  }

  /* ─── Daily discovery ─── */
  html.fb-desktop-ott .fb-daily-discovery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--fb-space-6);
    margin: 0 clamp(1.25rem, 3vw, 2.5rem) var(--fb-space-8);
    padding: var(--fb-space-6) clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--fb-radius-lg);
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.14), rgba(0, 212, 255, 0.08));
    border: var(--fb-border-soft);
  }

  html.fb-desktop-ott .fb-daily-discovery-kicker {
    font-family: var(--fb-font-label);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-brand-cyan);
    margin: 0 0 0.35rem;
  }

  html.fb-desktop-ott .fb-daily-discovery h2 {
    font-family: var(--fb-font-heading);
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
  }

  html.fb-desktop-ott .fb-daily-discovery p {
    margin: 0;
    color: var(--fb-text-secondary);
    font-size: 0.9rem;
  }

  html.fb-desktop-ott .fb-daily-discovery-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  html.fb-desktop-ott .fb-daily-discovery-tcmp {
    border-color: rgba(255, 184, 90, 0.45);
    color: #ffe4b8;
    background: rgba(255, 184, 90, 0.08);
  }

  html.fb-desktop-ott .fb-daily-discovery-tcmp:hover {
    background: rgba(255, 184, 90, 0.16);
    border-color: rgba(255, 184, 90, 0.65);
    color: #fff;
  }

  /* ─── Notifications ─── */
  html.fb-desktop-ott .fb-notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: rgba(22, 22, 22, 0.98);
    border: var(--fb-border-soft);
    border-radius: var(--fb-radius-md);
    box-shadow: var(--fb-shadow-card-hover);
    padding: var(--fb-space-4);
    z-index: 1100;
  }

  html.fb-desktop-ott .fb-notif-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--fb-space-3);
    padding-bottom: var(--fb-space-2);
    border-bottom: var(--fb-border-subtle);
  }

  html.fb-desktop-ott .fb-notif-count {
    font-size: 0.72rem;
    color: var(--fb-brand-red);
    font-weight: 700;
  }

  html.fb-desktop-ott .fb-notif-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  html.fb-desktop-ott .fb-notif-list li {
    display: flex;
    gap: 0.65rem;
    padding: 0.55rem 0;
    border-bottom: var(--fb-border-subtle);
    font-size: 0.82rem;
  }

  html.fb-desktop-ott .fb-notif-list li i {
    color: var(--fb-brand-red);
    margin-top: 0.15rem;
  }

  html.fb-desktop-ott .fb-notif-list strong {
    display: block;
    color: #fff;
  }

  html.fb-desktop-ott .fb-notif-list small {
    color: var(--fb-text-tertiary);
  }

  html.fb-desktop-ott .fb-notif-apk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: var(--fb-space-3);
    padding: 0.55rem;
    border-radius: var(--fb-radius-sm);
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
  }

  html.fb-desktop-ott .fb-header-actions {
    position: relative;
  }

  /* ─── Premium footer ─── */
  html.fb-desktop-ott .footer.fb-premium-footer {
    background: var(--fb-bg-secondary);
    border-top: var(--fb-border-soft);
    text-align: left;
    padding: 3rem clamp(1.25rem, 3vw, 2.5rem) 1.5rem;
  }

  html.fb-desktop-ott .fb-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fb-space-8);
    margin-top: var(--fb-space-8);
  }

  html.fb-desktop-ott .fb-footer-col h4 {
    font-family: var(--fb-font-label);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-text-muted);
    margin: 0 0 var(--fb-space-3);
  }

  html.fb-desktop-ott .fb-footer-col a {
    display: block;
    color: var(--fb-text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.25rem 0;
  }

  html.fb-desktop-ott .fb-footer-col a:hover {
    color: #fff;
  }

  /* ─── Gold / award accents ─── */
  html.fb-desktop-ott .fb-gold-section .section-title i {
    color: var(--fb-brand-gold);
  }

  html.fb-desktop-ott .fb-award-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--fb-brand-gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
  }

  html.fb-desktop-ott .fb-section-sub {
    font-size: 0.85em;
    color: var(--fb-brand-cyan);
    font-weight: 600;
  }

  html.fb-desktop-ott .fb-backdrop-card-wrap {
    scroll-snap-align: start;
  }

  html.fb-desktop-ott body.fb-premium .fb-btn-download {
    background: linear-gradient(135deg, #00b894, #00cec9) !important;
    border: none !important;
    color: #fff !important;
  }

  html.fb-desktop-ott .fb-filter-stack {
    display: block !important;
  }
}

/* ─── Never leak desktop shell onto mobile (≤768px) ─── */
@media (max-width: 768px) {
  .fb-desktop-sidebar,
  #fbDesktopSidebar,
  .fb-hub-shell,
  #fbHubShell,
  #fbPageScrollProgress,
  .fb-quick-rail,
  #fbQuickRail,
  .fb-dsearch-overlay,
  .fb-header-actions,
  #fbSearchOverlayBtn,
  #fbNotifBtn,
  #fbUserAvatar,
  .fb-hero-controls,
  .fb-hero-nav,
  .fb-hero-prev,
  .fb-hero-next,
  .fb-hero-dots,
  #heroDots,
  .fb-hero-dot,
  .fb-hero-progress,
  #heroProgressBar,
  .fb-hero-aurora,
  .fb-hero-grain,
  .fb-hero-edge-glow {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .fb-page-shell {
    margin-left: 0 !important;
  }

  html .fb-site-chrome .header {
    left: 0 !important;
    position: relative !important;
  }

  html .fb-site-chrome .header-right {
    gap: 0.5rem !important;
  }

  body.fb-premium::before {
    display: none !important;
  }
}
