/* Fix episode slider arrow positioning */
.single_page_slick {
    position: relative;
}

/* Center arrows vertically to episode cards */
.single_page_slick .slick-arrow {
    top: 50% !important;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Left arrow positioning */
.single_page_slick .slick-prev {
    left: -20px;
}

/* Right arrow positioning */
.single_page_slick .slick-next {
    right: -20px;
}

/* Improve arrow visibility */
.single_page_slick .slick-arrow::before {
    font-size: 18px;
    color: #fff;
    opacity: 1;
}

@media (max-width: 768px) {
    .single_page_slick .slick-arrow {
        display: none !important;
    }
}

/* Ensure no runtime badge ever appears */
.episode-time-duration,
.iq-duration {
    display: none !important;
}


/* ========================================================================
   Console Chronicle — UI polish (Subtle) — added 2026-06-10
   Scope: purely visual. No functional / content / plugin / theme changes.
   Reversible: delete this block (between the two banner lines) and Publish.
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --cc-accent: #e50914;
  --cc-accent-hover: #ff1a25;
  --cc-radius: 12px;
  --cc-radius-sm: 8px;
  --cc-transition: 220ms cubic-bezier(.2,.7,.2,1);
  --cc-shadow-card-hover: 0 14px 36px rgba(229, 9, 20, .18), 0 8px 28px rgba(0, 0, 0, .65);
}

/* 1. Typography polish */
body {
  font-family: 'Poppins', Roboto, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 2. Section headings: accent bar */
.streamit-genres-slider-title .title-tag,
.streamit-card-title .title-tag,
.title .title-tag,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  letter-spacing: .2px;
}
.streamit-genres-slider-title .title-tag::before,
.streamit-card-title .title-tag::before,
.title .title-tag::before,
.elementor-widget-heading h2::before,
.elementor-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px;
  height: 70%;
  background: var(--cc-accent);
  border-radius: 2px;
  transform: translateY(-50%);
}
.streamit-genres-slider-title .title,
.streamit-card-title .title {
  margin-bottom: 18px;
}

/* 3. Cards: rounded + hover lift */
.swiper-slide figure,
.swiper-slide .iq-thumb,
.swiper-slide .iq-rmt-thumb,
.swiper-slide img:not(.emoji):not([class*="download"]) {
  border-radius: var(--cc-radius);
  overflow: hidden;
  transition: transform var(--cc-transition),
              box-shadow var(--cc-transition),
              filter var(--cc-transition);
  will-change: transform;
}
.swiper-slide:hover figure,
.swiper-slide:hover .iq-thumb,
.swiper-slide:hover .iq-rmt-thumb,
.swiper-slide:hover img:not(.emoji):not([class*="download"]) {
  transform: translateY(-4px) scale(1.025);
  box-shadow: var(--cc-shadow-card-hover);
  filter: brightness(1.05);
}

/* 4. Play Now button */
.btn.btn-primary {
  background: var(--cc-accent);
  border-color: var(--cc-accent);
  font-weight: 600;
  letter-spacing: .3px;
  border-radius: 8px;
  transition: background var(--cc-transition),
              transform var(--cc-transition),
              box-shadow var(--cc-transition);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: var(--cc-accent-hover);
  border-color: var(--cc-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(229, 9, 20, .35);
}

/* 5. Carousel arrows (low specificity, existing fix wins on episode page) */
.PreArrow-two,
.NextArrow-two,
.slick-arrow,
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(20, 20, 20, .65);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--cc-transition), transform var(--cc-transition);
}
.PreArrow-two:hover,
.NextArrow-two:hover,
.slick-arrow:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--cc-accent);
  transform: scale(1.08);
}

/* 6. Navbar hover + active */
header .menu-item > a {
  position: relative;
  transition: color var(--cc-transition);
}
header .menu-item > a:hover,
header .menu-item.current-menu-item > a,
header .current-menu-item > a {
  color: var(--cc-accent) !important;
}

/* 7. Accessible focus rings */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
.swiper-slide a:focus-visible {
  outline: 2px solid var(--cc-accent-hover);
  outline-offset: 3px;
  border-radius: 6px;
}

/* 8. Smooth scroll + reduced motion */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== End Console Chronicle UI polish ===== */
