:root {
  --fk-paper: #fffdf8;
  --fk-surface: #ffffff;
  --fk-soft: #f6f1e8;
  --fk-ink: #111827;
  --fk-muted: #626a78;
  --fk-line: #e7e0d5;
  --fk-navy: #17213a;
  --fk-navy-2: #202d4d;
  --fk-red: #d92d3a;
  --fk-red-dark: #a91827;
  --fk-gold: #f3b63a;
  --fk-purple: #5b3fd1;
  --fk-green: #14806d;
  --fk-orange: #d8651a;
  --fk-radius-sm: 12px;
  --fk-radius: 20px;
  --fk-radius-lg: 30px;
  --fk-shadow: 0 18px 55px rgba(23, 33, 58, 0.10);
  --fk-shadow-soft: 0 10px 30px rgba(23, 33, 58, 0.07);
  --fk-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--fk-paper);
  color: var(--fk-ink);
  font-family: "Noto Sans Devanagari", "Mukta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.search-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button,
input,
textarea,
select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  color: #111;
  border-radius: 8px;
}
.fk-container { width: min(calc(100% - 40px), var(--fk-container)); margin-inline: auto; }
.site-main { min-height: 60vh; }

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--fk-line);
}
.fk-brandbar { background: var(--fk-paper); }
.fk-brandbar__inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.site-branding .custom-logo-link { display: inline-flex; align-items: center; }
.site-branding .custom-logo { max-height: 66px; width: auto; }
.fk-wordmark { display: inline-flex; align-items: center; gap: 12px; color: var(--fk-navy); }
.fk-wordmark__mark {
  width: 50px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 10px 8px 8px;
  border-radius: 14px;
  background: var(--fk-red);
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(217, 45, 58, 0.2);
}
.fk-wordmark__mark i { display: block; background: #fff; border-radius: 2px 2px 7px 7px; transform: skew(-8deg); }
.fk-wordmark > span:last-child { display: flex; flex-wrap: wrap; align-items: baseline; font-size: 32px; font-weight: 800; letter-spacing: -1.2px; line-height: 1; }
.fk-wordmark strong { color: var(--fk-red); }
.fk-wordmark small { width: 100%; margin-top: 7px; color: var(--fk-muted); font-size: 11px; font-weight: 700; letter-spacing: 0; }
.fk-header-promise { margin: 0; max-width: 620px; justify-self: center; color: var(--fk-muted); text-align: center; font-size: 14px; font-weight: 650; }
.fk-header-actions { display: flex; gap: 10px; }
.fk-icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--fk-line);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--fk-navy);
}
.fk-icon-button:hover { border-color: var(--fk-red); color: var(--fk-red); }
.fk-icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.fk-menu-toggle { display: none; align-content: center; gap: 4px; }
.fk-menu-toggle span:not(.screen-reader-text) { width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.main-navigation { background: var(--fk-navy); color: #fff; }
.fk-nav-inner { min-height: 58px; display: flex; justify-content: center; align-items: center; }
.fk-primary-menu,
.main-navigation .menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; justify-content: center; gap: 2px; }
.fk-primary-menu > li,
.main-navigation .menu > li { display: flex; }
.fk-primary-menu a,
.main-navigation .menu a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  min-height: 58px;
  font-size: 15px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.fk-primary-menu a::after,
.main-navigation .menu a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--fk-gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.fk-primary-menu a:hover::after,
.fk-primary-menu .current-menu-item a::after,
.main-navigation .menu a:hover::after { transform: scaleX(1); }
.fk-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: var(--fk-shadow);
  border-top: 1px solid var(--fk-line);
}
.fk-search-panel__inner { display: grid; grid-template-columns: 1fr minmax(420px, 1.3fr) auto; gap: 30px; align-items: center; padding-block: 26px; }
.fk-search-panel__inner strong { display: block; font-size: 18px; }
.fk-search-panel__inner p { margin: 2px 0 0; color: var(--fk-muted); font-size: 14px; }
.fk-search-close { border: 0; background: transparent; color: var(--fk-red); font-weight: 750; }
.fk-search-form { display: flex; gap: 10px; width: 100%; }
.fk-search-form input {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 18px;
  color: var(--fk-ink);
  background: #fff;
  border: 1px solid #d9d3ca;
  border-radius: 12px;
  outline: 0;
}
.fk-search-form input:focus { border-color: var(--fk-red); box-shadow: 0 0 0 4px rgba(217, 45, 58, 0.10); }
.fk-search-form button {
  min-width: 94px;
  height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--fk-red);
  font-weight: 800;
}
.fk-search-form button:hover { background: var(--fk-red-dark); }

/* Hero */
.fk-home-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 15% 15%, rgba(243, 182, 58, .20), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(91, 63, 209, .12), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e9 100%);
}
.fk-home-hero::before {
  content: "";
  position: absolute;
  inset: auto -70px -150px auto;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(23, 33, 58, .04);
  border-radius: 50%;
}
.fk-home-hero__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 52px; align-items: center; }
.fk-eyebrow,
.fk-section-heading > div > span,
.fk-category-guide > div > span,
.fk-widget-kicker,
.fk-final-cta > div > span,
.fk-search-help > div > span,
.fk-empty-discovery > div > span,
.fk-poster-note > div > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fk-red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
}
.fk-eyebrow::before,
.fk-section-heading > div > span::before {
  content: "";
  width: 22px;
  height: 3px;
  background: currentColor;
  border-radius: 4px;
}
.fk-home-hero__intro h1 {
  max-width: 690px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.06;
  letter-spacing: -2.6px;
  color: var(--fk-navy);
}
.fk-home-hero__intro > p { max-width: 650px; margin: 0 0 28px; color: #4f5868; font-size: 20px; line-height: 1.75; }
.fk-home-hero__intro .fk-search-form { max-width: 620px; padding: 8px; background: rgba(255,255,255,.78); border: 1px solid rgba(23,33,58,.08); border-radius: 16px; box-shadow: var(--fk-shadow-soft); }
.fk-hero-quicklinks { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.fk-hero-quicklinks a { padding: 9px 13px; border: 1px solid #ddd4c7; border-radius: 999px; color: var(--fk-navy); background: rgba(255,255,255,.55); font-size: 13px; font-weight: 750; }
.fk-hero-quicklinks a:hover { color: #fff; background: var(--fk-navy); border-color: var(--fk-navy); }
.fk-home-hero__feature { min-width: 0; }
.fk-feature-label { display: inline-flex; margin-bottom: 12px; padding: 7px 12px; border-radius: 999px; background: var(--fk-navy); color: #fff; font-size: 12px; font-weight: 800; }
.fk-purpose-card { position: relative; overflow: hidden; padding: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--fk-radius-lg); color: #fff; background: linear-gradient(145deg, var(--fk-navy), #2d2449 72%, #4c1d2b); box-shadow: var(--fk-shadow); }
.fk-purpose-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -120px; top: -120px; border: 32px solid rgba(243,182,58,.18); border-radius: 50%; }
.fk-purpose-card h2 { position: relative; z-index: 1; margin: 4px 0 24px; max-width: 520px; font-size: clamp(27px, 3vw, 39px); line-height: 1.28; }
.fk-purpose-card ul { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fk-purpose-card li { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 15px; }
.fk-purpose-card li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: var(--fk-navy); background: var(--fk-gold); font-weight: 900; }
.fk-purpose-card li strong { display: block; font-size: 16px; }
.fk-purpose-card li small { display: block; margin-top: 2px; color: rgba(255,255,255,.68); font-size: 12px; }

/* Featured */
.fk-featured-story { min-width: 0; overflow: hidden; border-radius: var(--fk-radius-lg); background: #fff; box-shadow: var(--fk-shadow); }
.fk-featured-story__media { display: block; aspect-ratio: 16/9; background: var(--fk-navy); overflow: hidden; }
.fk-featured-story__media img,
.fk-featured-story__media .fk-image-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.fk-featured-story:hover .fk-featured-story__media img { transform: scale(1.025); }
.fk-featured-story__content { padding: 24px 26px 25px; }
.fk-featured-story__content h2 { margin: 13px 0 10px; font-size: clamp(25px, 3vw, 36px); line-height: 1.28; }
.fk-featured-story__content h2 a:hover { color: var(--fk-red); }
.fk-featured-story__content > p { margin: 0; color: var(--fk-muted); font-size: 15px; }
.fk-featured-story__footer { margin-top: 19px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.fk-featured-story__footer > strong { padding: 7px 11px; border-radius: 999px; background: #f7ecee; color: var(--fk-red-dark); font-size: 12px; }
.fk-featured-story__footer > a { margin-left: auto; color: var(--fk-red); font-size: 14px; font-weight: 800; }
.fk-card-topline { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.fk-badge { display: inline-flex; align-items: center; gap: 6px; width: fit-content; padding: 6px 10px; border-radius: 999px; color: var(--fk-navy); background: #eef1f6; font-size: 11px; font-weight: 850; line-height: 1; }
.fk-badge--review { color: #9c1825; background: #fae8ea; }
.fk-badge--ott { color: #4630a6; background: #eeeafd; }
.fk-badge--recommend { color: #8b5a07; background: #fff2cf; }
.fk-badge--news { color: #1f568f; background: #e8f2fc; }
.fk-badge--marathi { color: #a3470f; background: #fff0e5; }
.fk-badge--trailer { color: #0a6a5a; background: #e4f5f1; }
.fk-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--fk-navy); }
.fk-rating > span { color: var(--fk-gold); font-size: 20px; }
.fk-rating strong { font-size: 21px; }
.fk-rating small { color: var(--fk-muted); font-size: 11px; }
.fk-rating--compact { padding: 5px 8px; border-radius: 999px; background: var(--fk-navy); color: #fff; }
.fk-rating--compact > span { font-size: 13px; }
.fk-rating--compact strong { font-size: 12px; }
.fk-rating--compact small { color: rgba(255,255,255,.65); font-size: 9px; }
.fk-platform-label { position: absolute; left: 12px; bottom: 12px; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(17,24,39,.86); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; }
.fk-platform-label--plain { position: static; color: var(--fk-purple); background: #eeeafd; }

/* Highlight strip */
.fk-highlight-strip { background: var(--fk-red); color: #fff; }
.fk-highlight-strip .fk-container { display: grid; grid-template-columns: 150px 1fr; align-items: stretch; }
.fk-highlight-strip__label { display: flex; align-items: center; padding: 16px 20px 16px 0; font-size: 13px; font-weight: 850; border-right: 1px solid rgba(255,255,255,.25); }
.fk-highlight-strip__items { min-width: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.fk-highlight-strip__items > a { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-right: 1px solid rgba(255,255,255,.2); }
.fk-highlight-strip__items > a:last-child { border-right: 0; }
.fk-highlight-strip__items .fk-badge { flex: 0 0 auto; background: rgba(255,255,255,.18); color: #fff; }
.fk-highlight-strip__items strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }

/* Sections */
.fk-section { padding: 78px 0; }
.fk-section + .fk-section { border-top: 1px solid rgba(231,224,213,.75); }
.fk-section-heading { display: flex; justify-content: space-between; gap: 32px; align-items: flex-end; margin-bottom: 30px; }
.fk-section-heading h2 { margin: 7px 0 5px; color: var(--fk-navy); font-size: clamp(30px, 3.8vw, 46px); line-height: 1.22; letter-spacing: -1.3px; }
.fk-section-heading p { max-width: 720px; margin: 0; color: var(--fk-muted); font-size: 15px; }
.fk-section-heading > a { flex: 0 0 auto; padding-bottom: 5px; color: var(--fk-red); border-bottom: 2px solid rgba(217,45,58,.25); font-size: 13px; font-weight: 850; }
.fk-section-heading > a:hover { border-color: var(--fk-red); }
.fk-section-heading--center { justify-content: center; text-align: center; }
.fk-section-heading--center > div > span { justify-content: center; }
.fk-section-heading--center h2 { max-width: 780px; }
.fk-section-heading--center p { max-width: 780px; margin-inline: auto; }
.fk-section-heading--light h2,
.fk-section-heading--light p,
.fk-section-heading--light > a { color: #fff; }
.fk-section-heading--light > div > span { color: var(--fk-gold); }
.fk-section-heading--light > a { border-color: rgba(255,255,255,.28); }

/* Category map */
.fk-section--category-map { background: #fff; }
.fk-category-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fk-category-tile { position: relative; overflow: hidden; min-height: 270px; padding: 24px; border: 1px solid var(--fk-line); border-radius: var(--fk-radius); background: var(--fk-paper); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.fk-category-tile::after { content: ""; position: absolute; right: -38px; top: -42px; width: 120px; height: 120px; border-radius: 50%; border: 18px solid rgba(23,33,58,.045); }
.fk-category-tile:hover { transform: translateY(-4px); box-shadow: var(--fk-shadow-soft); border-color: transparent; }
.fk-category-tile__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--fk-navy); font-size: 21px; font-weight: 900; }
.fk-category-tile small { display: block; margin-top: 22px; color: var(--fk-red); font-size: 12px; font-weight: 800; }
.fk-category-tile h2 { margin: 5px 0 9px; color: var(--fk-navy); font-size: 25px; }
.fk-category-tile p { margin: 0 0 16px; color: var(--fk-muted); font-size: 14px; }
.fk-category-tile > strong { color: var(--fk-navy); font-size: 13px; }
.fk-category-tile--review .fk-category-tile__icon { background: var(--fk-red); }
.fk-category-tile--ott .fk-category-tile__icon { background: var(--fk-purple); }
.fk-category-tile--recommend .fk-category-tile__icon { background: #b6780d; }
.fk-category-tile--news .fk-category-tile__icon { background: #2a69a8; }
.fk-category-tile--marathi .fk-category-tile__icon { background: var(--fk-orange); }
.fk-category-tile--trailer .fk-category-tile__icon { background: var(--fk-green); }
.fk-category-map--compact .fk-category-tile { min-height: 180px; }
.fk-category-map--compact .fk-category-tile h2 { margin-top: 22px; }

/* Cards */
.fk-card-grid { display: grid; gap: 22px; }
.fk-card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fk-card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fk-post-card { min-width: 0; overflow: hidden; border: 1px solid var(--fk-line); border-radius: var(--fk-radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.fk-post-card:hover { transform: translateY(-3px); box-shadow: var(--fk-shadow-soft); }
.fk-post-card__media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--fk-navy); }
.fk-post-card__media img,
.fk-post-card__media .fk-image-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.fk-post-card:hover .fk-post-card__media img { transform: scale(1.03); }
.fk-post-card__body { padding: 18px 18px 20px; }
.fk-post-card h3 { margin: 12px 0 8px; color: var(--fk-navy); font-size: 20px; line-height: 1.4; }
.fk-post-card h3 a:hover { color: var(--fk-red); }
.fk-post-card__body > p { margin: 0; color: var(--fk-muted); font-size: 13px; }
.fk-verdict-line { display: inline-flex; margin-top: 13px; padding: 6px 9px; color: var(--fk-red-dark); background: #f9ecee; border-radius: 8px; font-size: 11px; font-weight: 800; }
.fk-post-card--compact { display: grid; grid-template-columns: 150px 1fr; border-radius: 16px; }
.fk-post-card--compact .fk-post-card__media { aspect-ratio: auto; min-height: 118px; }
.fk-post-card--compact .fk-post-card__body { padding: 14px 15px; }
.fk-post-card--compact h3 { margin: 8px 0 0; font-size: 16px; line-height: 1.45; }
.fk-post-card--compact .fk-rating { display: none; }
.fk-post-card--compact .fk-badge { padding: 5px 8px; font-size: 9px; }

/* Image fallback, not editorial copy */
.fk-image-fallback { display: grid; place-items: center; align-content: center; gap: 8px; color: #fff; background: linear-gradient(140deg, var(--fk-navy), #303b59); }
.fk-image-fallback span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 23px; font-weight: 900; }
.fk-image-fallback strong { font-size: 14px; }
.fk-image-fallback--review { background: linear-gradient(140deg, #7f1421, var(--fk-red)); }
.fk-image-fallback--ott { background: linear-gradient(140deg, #2e1c75, var(--fk-purple)); }
.fk-image-fallback--recommend { background: linear-gradient(140deg, #80520a, #c98a1b); }
.fk-image-fallback--news { background: linear-gradient(140deg, #17466f, #2a69a8); }
.fk-image-fallback--marathi { background: linear-gradient(140deg, #923b0d, var(--fk-orange)); }
.fk-image-fallback--trailer { background: linear-gradient(140deg, #075447, var(--fk-green)); }

/* Review cards */
.fk-section--reviews { background: var(--fk-soft); }
.fk-review-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.fk-review-card { min-width: 0; }
.fk-review-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 2/3; border-radius: 18px; background: var(--fk-navy); box-shadow: var(--fk-shadow-soft); }
.fk-review-card__media img,
.fk-review-card__media .fk-image-fallback { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.fk-review-card:hover .fk-review-card__media img { transform: scale(1.035); }
.fk-review-card__media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8,11,20,.75)); pointer-events: none; }
.fk-review-card__top { position: absolute; z-index: 2; left: 10px; right: 10px; top: 10px; display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.fk-review-card__top .fk-badge { color: var(--fk-navy); background: rgba(255,255,255,.92); }
.fk-review-card__verdict { position: absolute; z-index: 2; left: 10px; bottom: 10px; max-width: calc(100% - 20px); padding: 7px 10px; color: #fff; background: rgba(217,45,58,.92); border-radius: 9px; font-size: 10px; font-weight: 850; }
.fk-review-card__body { padding: 14px 3px 0; }
.fk-review-card__platform { display: block; color: var(--fk-purple); font-size: 10px; font-weight: 800; }
.fk-review-card h3 { margin: 5px 0 0; color: var(--fk-navy); font-size: 16px; line-height: 1.45; }
.fk-review-card h3 a:hover { color: var(--fk-red); }

/* OTT */
.fk-section--ott { color: #fff; background: radial-gradient(circle at 88% 20%, rgba(91,63,209,.38), transparent 28%), linear-gradient(145deg, #11182c, #1d2947); }
.fk-feature-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 24px; }
.fk-feature-layout__lead .fk-featured-story { height: 100%; color: var(--fk-ink); }
.fk-feature-layout__list { display: grid; gap: 12px; }
.fk-feature-layout__list .fk-post-card { color: var(--fk-ink); }

/* Recommendations */
.fk-section--recommend { background: #fffaf0; }
.fk-mood-row { display: flex; flex-wrap: wrap; gap: 9px; margin: -8px 0 28px; }
.fk-mood-row span { padding: 8px 12px; border: 1px solid #ead8ad; border-radius: 999px; color: #73510e; background: #fff8e8; font-size: 12px; font-weight: 750; }

/* Split */
.fk-section--split { background: #fff; }
.fk-home-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.fk-home-column { padding: 30px; border-radius: var(--fk-radius-lg); }
.fk-home-column--marathi { background: #fff2e7; border: 1px solid #f4d6bd; }
.fk-home-column--news { background: #edf5fd; border: 1px solid #d5e7f7; }
.fk-home-column .fk-section-heading { align-items: flex-start; margin-bottom: 22px; }
.fk-home-column .fk-section-heading h2 { font-size: 34px; }
.fk-home-column .fk-section-heading > a { margin-top: 8px; }
.fk-stack-list { display: grid; gap: 12px; }
.fk-home-column .fk-post-card--compact { background: rgba(255,255,255,.86); border-color: rgba(23,33,58,.08); }

/* Trailer */
.fk-section--trailers { color: #fff; background: linear-gradient(145deg, #063f37, #0b6557); }
.fk-trailer-grid .fk-post-card { color: var(--fk-ink); }
.fk-trailer-grid .fk-post-card__media::after { content: "▶"; position: absolute; left: 16px; top: 16px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--fk-navy); background: var(--fk-gold); box-shadow: 0 8px 22px rgba(0,0,0,.2); font-size: 15px; }

/* More and CTA */
.fk-section--more { background: var(--fk-paper); }
.fk-section--final-cta { padding: 56px 0; color: #fff; background: var(--fk-red); }
.fk-final-cta { display: grid; grid-template-columns: 1fr minmax(400px, .8fr); gap: 36px; align-items: center; }
.fk-final-cta > div > span { color: var(--fk-gold); }
.fk-final-cta h2 { margin: 5px 0 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.25; }
.fk-final-cta .fk-search-form { padding: 8px; border-radius: 16px; background: rgba(255,255,255,.14); }
.fk-final-cta .fk-search-form button { color: var(--fk-navy); background: var(--fk-gold); }

/* Category archive */
.fk-archive-hero { padding: 68px 0; color: #fff; background: linear-gradient(145deg, var(--fk-navy), #25365c); }
.fk-archive--review .fk-archive-hero { background: linear-gradient(145deg, #68131d, #c12635); }
.fk-archive--ott .fk-archive-hero { background: linear-gradient(145deg, #281a62, #5b3fd1); }
.fk-archive--recommend .fk-archive-hero { color: var(--fk-navy); background: linear-gradient(145deg, #ffefc5, #f5bd4d); }
.fk-archive--news .fk-archive-hero { background: linear-gradient(145deg, #153d65, #2b70b2); }
.fk-archive--marathi .fk-archive-hero { background: linear-gradient(145deg, #843309, #d8651a); }
.fk-archive--trailer .fk-archive-hero { background: linear-gradient(145deg, #06463b, #14806d); }
.fk-archive-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.fk-archive-hero .fk-eyebrow { color: var(--fk-gold); }
.fk-archive--recommend .fk-archive-hero .fk-eyebrow { color: #8b5a07; }
.fk-archive-hero h1 { margin: 10px 0 12px; font-size: clamp(44px, 6vw, 72px); line-height: 1.08; letter-spacing: -2px; }
.fk-archive-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); font-size: 18px; }
.fk-archive--recommend .fk-archive-hero p { color: rgba(23,33,58,.75); }
.fk-archive-questions { padding: 25px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(255,255,255,.08); }
.fk-archive--recommend .fk-archive-questions { border-color: rgba(23,33,58,.14); background: rgba(255,255,255,.30); }
.fk-archive-questions > span { display: block; margin-bottom: 13px; color: var(--fk-gold); font-size: 12px; font-weight: 850; }
.fk-archive--recommend .fk-archive-questions > span { color: #80520a; }
.fk-archive-questions ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fk-archive-questions li { display: flex; gap: 10px; font-weight: 750; }
.fk-archive-questions li::before { content: "✓"; color: var(--fk-gold); }
.fk-archive--recommend .fk-archive-questions li::before { color: #80520a; }
.fk-filter-bar { border-bottom: 1px solid var(--fk-line); background: #fff; }
.fk-filter-bar .fk-container { display: flex; align-items: center; gap: 20px; min-height: 70px; }
.fk-filter-bar strong { flex: 0 0 auto; color: var(--fk-navy); font-size: 13px; }
.fk-filter-bar .fk-container > div { display: flex; flex-wrap: wrap; gap: 8px; }
.fk-filter-bar a { padding: 7px 11px; border-radius: 999px; color: var(--fk-muted); background: var(--fk-soft); font-size: 11px; font-weight: 750; }
.fk-filter-bar a:hover { color: #fff; background: var(--fk-navy); }
.fk-archive-content { padding-block: 70px 90px; }
.fk-archive-featured { margin-bottom: 72px; }
.fk-archive-featured .fk-featured-story { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); }
.fk-archive-featured .fk-featured-story__media { aspect-ratio: auto; min-height: 430px; }
.fk-archive-featured .fk-featured-story__content { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.fk-archive-listing { margin-top: 40px; }
.navigation.pagination { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nav-links .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 13px; border: 1px solid var(--fk-line); border-radius: 10px; background: #fff; font-size: 13px; font-weight: 750; }
.nav-links .current,
.nav-links a:hover { color: #fff; background: var(--fk-red); border-color: var(--fk-red); }
.fk-category-guide { display: grid; grid-template-columns: 1fr .75fr; gap: 34px; align-items: center; padding: 38px; border: 1px solid var(--fk-line); border-radius: var(--fk-radius-lg); background: #fff; box-shadow: var(--fk-shadow-soft); }
.fk-category-guide h2 { margin: 7px 0 9px; font-size: 34px; line-height: 1.3; }
.fk-category-guide p { margin: 0; color: var(--fk-muted); }
.fk-category-guide ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fk-category-guide li { padding: 13px 15px; border-radius: 12px; background: var(--fk-soft); font-weight: 750; }
.fk-category-guide li::before { content: "✓"; margin-right: 9px; color: var(--fk-red); }
.fk-empty-discovery { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 34px; border-radius: var(--fk-radius); background: var(--fk-navy); color: #fff; }
.fk-empty-discovery h2 { margin: 6px 0 9px; font-size: 31px; line-height: 1.3; }
.fk-empty-discovery p { margin: 0; color: rgba(255,255,255,.7); }
.fk-empty-discovery__links { display: flex; flex-wrap: wrap; gap: 9px; }
.fk-empty-discovery__links a { padding: 10px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.08); font-size: 12px; font-weight: 750; }
.fk-empty-discovery__links a:hover { color: var(--fk-navy); background: var(--fk-gold); border-color: var(--fk-gold); }

/* Single post */
.fk-article-header { padding: 54px 0 68px; color: #fff; background: linear-gradient(145deg, var(--fk-navy), #26375d); }
.fk-single--review .fk-article-header { background: linear-gradient(145deg, #65121d, #b82231); }
.fk-single--ott .fk-article-header { background: linear-gradient(145deg, #27195e, #5136bb); }
.fk-single--recommend .fk-article-header { color: var(--fk-navy); background: linear-gradient(145deg, #ffefc7, #efb73b); }
.fk-single--news .fk-article-header { background: linear-gradient(145deg, #153d65, #286ba9); }
.fk-single--marathi .fk-article-header { background: linear-gradient(145deg, #813108, #cb5c17); }
.fk-single--trailer .fk-article-header { background: linear-gradient(145deg, #06483d, #11705f); }
.fk-article-header__inner { max-width: 960px; }
.fk-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.65); font-size: 12px; }
.fk-single--recommend .fk-breadcrumbs { color: rgba(23,33,58,.6); }
.fk-breadcrumbs a:hover { color: var(--fk-gold); }
.fk-article-header .fk-badge { margin-bottom: 18px; background: rgba(255,255,255,.15); color: #fff; }
.fk-single--recommend .fk-article-header .fk-badge { color: var(--fk-navy); background: rgba(255,255,255,.45); }
.fk-article-header h1 { margin: 0; font-size: clamp(39px, 6vw, 70px); line-height: 1.14; letter-spacing: -2.2px; }
.fk-article-deck { max-width: 850px; margin: 18px 0 0; color: rgba(255,255,255,.75); font-size: 20px; }
.fk-single--recommend .fk-article-deck { color: rgba(23,33,58,.72); }
.fk-article-author { display: flex; align-items: center; gap: 11px; margin-top: 25px; }
.fk-article-author img { width: 42px; height: 42px; border-radius: 50%; }
.fk-article-author small { display: block; color: rgba(255,255,255,.55); font-size: 10px; }
.fk-single--recommend .fk-article-author small { color: rgba(23,33,58,.55); }
.fk-article-author strong { display: block; font-size: 13px; }
.fk-article-media-wrap { margin-top: -32px; position: relative; z-index: 2; }
.fk-article-media { overflow: hidden; max-height: 670px; border: 8px solid var(--fk-paper); border-radius: var(--fk-radius-lg); background: var(--fk-navy); box-shadow: var(--fk-shadow); }
.fk-article-media img,
.fk-article-media .fk-image-fallback { width: 100%; min-height: 430px; max-height: 650px; object-fit: cover; }
.fk-article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 50px; padding-block: 58px 40px; }
.fk-article-sidebar { min-width: 0; }
.fk-toc,
.fk-share-box { position: sticky; top: 25px; padding: 18px; border: 1px solid var(--fk-line); border-radius: 16px; background: #fff; box-shadow: var(--fk-shadow-soft); }
.fk-share-box { position: static; margin-top: 14px; }
.fk-toc > strong,
.fk-share-box > strong { display: block; margin-bottom: 10px; color: var(--fk-navy); font-size: 13px; }
.fk-toc nav { display: grid; gap: 8px; }
.fk-toc a { color: var(--fk-muted); font-size: 12px; line-height: 1.45; }
.fk-toc a:hover { color: var(--fk-red); }
.fk-toc a[data-level="3"] { padding-left: 12px; }
.fk-share-box > div { display: flex; flex-wrap: wrap; gap: 7px; }
.fk-share-box a,
.fk-share-box button { padding: 7px 9px; border: 1px solid var(--fk-line); border-radius: 8px; color: var(--fk-muted); background: #fff; font-size: 10px; font-weight: 750; }
.fk-share-box a:hover,
.fk-share-box button:hover { color: #fff; background: var(--fk-navy); border-color: var(--fk-navy); }
.fk-review-summary { margin-bottom: 34px; overflow: hidden; border: 1px solid var(--fk-line); border-radius: var(--fk-radius); background: #fff; box-shadow: var(--fk-shadow-soft); }
.fk-review-summary__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 24px; color: #fff; background: var(--fk-navy); }
.fk-review-summary__head span { color: var(--fk-gold); font-size: 11px; font-weight: 800; }
.fk-review-summary__head h2 { margin: 3px 0 0; font-size: 28px; }
.fk-review-summary__head .fk-rating { color: #fff; }
.fk-quick-verdict { margin: 0; padding: 24px; color: var(--fk-navy); background: #fffaf0; border-bottom: 1px solid var(--fk-line); font-size: 18px; font-weight: 650; }
.fk-verdict-pill { margin: 0; padding: 13px 24px; color: var(--fk-red-dark); background: #faecee; font-size: 13px; }
.fk-facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.fk-facts-grid > div { padding: 16px 20px; border-right: 1px solid var(--fk-line); border-bottom: 1px solid var(--fk-line); }
.fk-facts-grid > div:nth-child(2n) { border-right: 0; }
.fk-facts-grid small { display: block; color: var(--fk-muted); font-size: 10px; }
.fk-facts-grid strong { display: block; margin-top: 2px; color: var(--fk-navy); font-size: 14px; }
.fk-article-content { color: #242b38; font-size: 18px; line-height: 1.9; }
.fk-article-content > *:first-child { margin-top: 0; }
.fk-article-content p { margin: 0 0 1.45em; }
.fk-article-content h2 { margin: 2em 0 .65em; color: var(--fk-navy); font-size: clamp(29px, 4vw, 39px); line-height: 1.32; letter-spacing: -.7px; }
.fk-article-content h3 { margin: 1.7em 0 .55em; color: var(--fk-navy); font-size: 25px; line-height: 1.4; }
.fk-article-content a { color: var(--fk-red-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.fk-article-content ul,
.fk-article-content ol { margin: 0 0 1.5em; padding-left: 1.25em; }
.fk-article-content li { margin-bottom: .45em; }
.fk-article-content blockquote { margin: 2em 0; padding: 24px 26px; border-left: 5px solid var(--fk-red); border-radius: 0 14px 14px 0; color: var(--fk-navy); background: #f8f1e8; font-size: 21px; font-weight: 650; }
.fk-article-content figure { margin: 2em 0; }
.fk-article-content figcaption { margin-top: 8px; color: var(--fk-muted); font-size: 12px; text-align: center; }
.fk-article-content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: 14px; }
.fk-article-content th,
.fk-article-content td { padding: 12px; border: 1px solid var(--fk-line); text-align: left; }
.fk-article-content th { color: #fff; background: var(--fk-navy); }
.fk-poster-note { display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: center; margin-top: 38px; padding: 22px; border-radius: var(--fk-radius); background: var(--fk-soft); }
.fk-poster-note img { width: 160px; aspect-ratio: 2/3; object-fit: cover; border-radius: 12px; }
.fk-poster-note h2 { margin: 4px 0 8px; font-size: 25px; line-height: 1.35; }
.fk-poster-note p { margin: 0; color: var(--fk-muted); font-size: 14px; }
.fk-post-navigation { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 45px; }
.fk-post-navigation a { padding: 18px; border: 1px solid var(--fk-line); border-radius: 14px; background: #fff; }
.fk-post-navigation a:last-child { text-align: right; }
.fk-post-navigation small { display: block; color: var(--fk-red); font-size: 10px; font-weight: 800; }
.fk-post-navigation strong { display: block; margin-top: 5px; font-size: 13px; line-height: 1.45; }
.fk-related-section { padding: 62px 0 76px; border-top: 1px solid var(--fk-line); }
.comments-area { max-width: 760px; margin: 0 auto 80px; padding-top: 50px; border-top: 1px solid var(--fk-line); }
.comments-area h2,
.comment-reply-title { font-size: 28px; }
.comment-list { list-style: none; margin: 0 0 35px; padding: 0; }
.comment-list li { margin: 0 0 18px; padding: 18px; border: 1px solid var(--fk-line); border-radius: 14px; background: #fff; }
.comment-form input,
.comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--fk-line); border-radius: 10px; }
.comment-form .submit { width: auto; color: #fff; background: var(--fk-red); border: 0; font-weight: 800; }

/* Generic pages */
.fk-simple-hero { padding: 64px 0; color: #fff; background: linear-gradient(145deg, var(--fk-navy), #26375c); }
.fk-simple-hero h1 { max-width: 900px; margin: 9px 0 10px; font-size: clamp(40px, 6vw, 66px); line-height: 1.15; }
.fk-simple-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); font-size: 18px; }
.fk-simple-hero .fk-search-form { max-width: 650px; margin-top: 25px; }
.fk-generic-listing { padding-block: 70px 90px; }
.fk-page-content { max-width: 820px; padding-block: 65px 90px; font-size: 18px; line-height: 1.9; }
.fk-page-content h2 { margin-top: 1.8em; font-size: 34px; }
.fk-search-help { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; align-items: center; padding: 40px; border-radius: var(--fk-radius-lg); color: #fff; background: var(--fk-navy); }
.fk-search-help h2 { margin: 7px 0 8px; font-size: 34px; line-height: 1.3; }
.fk-search-help p { margin: 0; color: rgba(255,255,255,.7); }
.fk-not-found__hero { padding: 80px 0; background: linear-gradient(135deg, #fff8ed, #f4eee6); }
.fk-not-found__grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: center; }
.fk-not-found h1 { margin: 10px 0; font-size: clamp(48px, 7vw, 80px); line-height: 1.05; color: var(--fk-navy); }
.fk-not-found p { max-width: 700px; color: var(--fk-muted); font-size: 19px; }
.fk-not-found .fk-search-form { max-width: 620px; margin-top: 25px; }
.fk-not-found__reel { width: 300px; height: 300px; position: relative; border: 34px solid var(--fk-navy); border-radius: 50%; background: var(--fk-gold); box-shadow: var(--fk-shadow); }
.fk-not-found__reel span { position: absolute; width: 65px; height: 65px; border-radius: 50%; background: var(--fk-paper); }
.fk-not-found__reel span:nth-child(1) { left: 84px; top: 15px; }
.fk-not-found__reel span:nth-child(2) { right: 15px; top: 84px; }
.fk-not-found__reel span:nth-child(3) { left: 84px; bottom: 15px; }
.fk-not-found__reel span:nth-child(4) { left: 15px; top: 84px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.78); background: #10182b; }
.fk-footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .7fr 1fr; gap: 42px; padding-block: 62px 52px; }
.fk-wordmark--footer { color: #fff; }
.fk-footer-brand > p { max-width: 420px; margin: 22px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.site-footer h2 { margin: 5px 0 17px; color: #fff; font-size: 15px; }
.fk-footer-links,
.fk-footer-promise { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.fk-footer-links a,
.fk-footer-promise li { color: rgba(255,255,255,.63); font-size: 13px; }
.fk-footer-links a:hover { color: var(--fk-gold); }
.fk-footer-promise li { display: flex; gap: 8px; }
.fk-footer-promise li::before { content: "✓"; color: var(--fk-gold); }
.fk-social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.fk-social-links a { padding: 7px 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; font-size: 10px; font-weight: 750; }
.fk-social-links a:hover { color: var(--fk-navy); background: var(--fk-gold); border-color: var(--fk-gold); }
.fk-footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.fk-footer-bottom .fk-container { min-height: 66px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.fk-footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: 11px; }

/* Editor pattern styling */
.fk-editor-callout { padding: 24px; border-left: 5px solid var(--fk-red); border-radius: 0 14px 14px 0; background: #fff7e9; }

@media (max-width: 1080px) {
  .fk-header-promise { display: none; }
  .fk-brandbar__inner { grid-template-columns: 1fr auto; }
  .fk-home-hero__grid { gap: 32px; }
  .fk-home-hero__intro h1 { font-size: 56px; }
  .fk-review-grid { grid-template-columns: repeat(4, 1fr); }
  .fk-review-grid > :last-child { display: none; }
  .fk-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fk-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .fk-footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .fk-container { width: min(calc(100% - 28px), var(--fk-container)); }
  .fk-brandbar__inner { min-height: 78px; }
  .fk-wordmark > span:last-child { font-size: 27px; }
  .fk-wordmark__mark { width: 44px; height: 41px; }
  .fk-menu-toggle { display: grid; }
  .main-navigation { position: fixed; inset: 78px 0 0; display: none; overflow: auto; background: rgba(16,24,43,.98); }
  .main-navigation.is-open { display: block; }
  .fk-nav-inner { display: block; padding: 22px 14px 40px; }
  .fk-primary-menu,
  .main-navigation .menu { display: grid; gap: 7px; }
  .fk-primary-menu a,
  .main-navigation .menu a { min-height: 54px; padding: 0 16px; border: 1px solid rgba(255,255,255,.10); border-radius: 12px; }
  .fk-primary-menu a::after,
  .main-navigation .menu a::after { display: none; }
  .fk-search-panel { position: fixed; inset: 78px 0 0; overflow: auto; }
  .fk-search-panel__inner { display: block; padding: 28px 14px; }
  .fk-search-panel .fk-search-form { margin: 20px 0; }
  .fk-home-hero { padding: 44px 0; }
  .fk-home-hero__grid,
  .fk-archive-hero__grid,
  .fk-home-split,
  .fk-final-cta,
  .fk-category-guide,
  .fk-empty-discovery,
  .fk-search-help,
  .fk-not-found__grid { grid-template-columns: 1fr; }
  .fk-home-hero__intro h1 { font-size: clamp(42px, 11vw, 62px); }
  .fk-home-hero__feature { margin-top: 4px; }
  .fk-highlight-strip .fk-container { grid-template-columns: 1fr; }
  .fk-highlight-strip__label { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .fk-highlight-strip__items { grid-template-columns: 1fr; }
  .fk-highlight-strip__items > a { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .fk-category-map { grid-template-columns: repeat(2, 1fr); }
  .fk-review-grid { grid-template-columns: repeat(3, 1fr); }
  .fk-review-grid > :last-child { display: block; }
  .fk-feature-layout { grid-template-columns: 1fr; }
  .fk-archive-featured .fk-featured-story { grid-template-columns: 1fr; }
  .fk-archive-featured .fk-featured-story__media { min-height: 320px; }
  .fk-article-layout { grid-template-columns: 1fr; gap: 25px; }
  .fk-article-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .fk-toc { position: static; }
  .fk-share-box { margin-top: 0; }
  .fk-not-found__reel { justify-self: center; }
  .fk-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .fk-footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .fk-container { width: min(calc(100% - 22px), var(--fk-container)); }
  .fk-brandbar__inner { min-height: 70px; }
  .site-branding .custom-logo { max-height: 48px; max-width: 210px; }
  .fk-wordmark { gap: 9px; }
  .fk-wordmark__mark { width: 38px; height: 36px; padding: 8px 6px 6px; border-radius: 10px; }
  .fk-wordmark > span:last-child { font-size: 23px; }
  .fk-wordmark small { font-size: 8px; margin-top: 5px; }
  .fk-icon-button { width: 42px; height: 42px; }
  .fk-home-hero__intro h1 { margin-top: 12px; font-size: 42px; letter-spacing: -1.5px; }
  .fk-home-hero__intro > p { font-size: 17px; }
  .fk-search-form { flex-direction: column; }
  .fk-search-form input,
  .fk-search-form button { width: 100%; }
  .fk-purpose-card { padding: 23px; border-radius: 22px; }
  .fk-purpose-card h2 { font-size: 28px; }
  .fk-section { padding: 56px 0; }
  .fk-section-heading { display: block; margin-bottom: 24px; }
  .fk-section-heading h2 { font-size: 32px; }
  .fk-section-heading > a { display: inline-flex; margin-top: 14px; }
  .fk-category-map,
  .fk-card-grid--4,
  .fk-card-grid--3,
  .fk-review-grid { grid-template-columns: 1fr; }
  .fk-category-tile { min-height: auto; }
  .fk-review-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-right: -11px; }
  .fk-review-card { min-width: 72vw; scroll-snap-align: start; }
  .fk-home-column { padding: 22px; }
  .fk-home-column .fk-section-heading h2 { font-size: 30px; }
  .fk-post-card--compact { grid-template-columns: 110px 1fr; }
  .fk-post-card--compact .fk-post-card__media { min-height: 105px; }
  .fk-post-card--compact h3 { font-size: 14px; }
  .fk-archive-hero { padding: 48px 0; }
  .fk-archive-hero h1 { font-size: 45px; }
  .fk-archive-hero p { font-size: 16px; }
  .fk-filter-bar .fk-container { display: block; padding-block: 16px; }
  .fk-filter-bar .fk-container > div { margin-top: 10px; }
  .fk-archive-content { padding-block: 50px 65px; }
  .fk-archive-featured { margin-bottom: 54px; }
  .fk-archive-featured .fk-featured-story__media { min-height: 230px; }
  .fk-archive-featured .fk-featured-story__content { padding: 24px; }
  .fk-category-guide { padding: 24px; }
  .fk-category-guide h2 { font-size: 29px; }
  .fk-article-header { padding: 42px 0 55px; }
  .fk-article-header h1 { font-size: 41px; letter-spacing: -1.4px; }
  .fk-article-deck { font-size: 17px; }
  .fk-article-media { border-width: 5px; border-radius: 20px; }
  .fk-article-media img,
  .fk-article-media .fk-image-fallback { min-height: 230px; }
  .fk-article-layout { padding-top: 38px; }
  .fk-article-sidebar { grid-template-columns: 1fr; }
  .fk-review-summary__head { align-items: flex-start; }
  .fk-review-summary__head h2 { font-size: 24px; }
  .fk-facts-grid { grid-template-columns: 1fr; }
  .fk-facts-grid > div { border-right: 0; }
  .fk-article-content { font-size: 17px; }
  .fk-article-content h2 { font-size: 29px; }
  .fk-article-content h3 { font-size: 23px; }
  .fk-poster-note { grid-template-columns: 105px 1fr; padding: 16px; }
  .fk-poster-note img { width: 105px; }
  .fk-poster-note h2 { font-size: 19px; }
  .fk-post-navigation { grid-template-columns: 1fr; }
  .fk-post-navigation a:last-child { text-align: left; }
  .fk-final-cta .fk-search-form { margin-top: 20px; }
  .fk-not-found__reel { width: 220px; height: 220px; border-width: 27px; }
  .fk-not-found__reel span { width: 45px; height: 45px; }
  .fk-not-found__reel span:nth-child(1) { left: 60px; top: 12px; }
  .fk-not-found__reel span:nth-child(2) { right: 12px; top: 60px; }
  .fk-not-found__reel span:nth-child(3) { left: 60px; bottom: 12px; }
  .fk-not-found__reel span:nth-child(4) { left: 12px; top: 60px; }
  .fk-footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 48px 38px; }
  .fk-footer-bottom .fk-container { display: block; padding-block: 18px; }
  .fk-footer-bottom p + p { margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* FilmyKatta V3 editorial refinements */
.fk-watch-paths {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(145deg, #151d34 0%, #202a46 62%, #3b1720 100%);
  box-shadow: var(--fk-shadow);
}
.fk-watch-paths::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -110px;
  top: -115px;
  border: 28px solid rgba(243,182,58,.16);
  border-radius: 50%;
}
.fk-watch-paths__kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fk-gold);
  font-size: 13px;
  font-weight: 850;
}
.fk-watch-paths h2 {
  position: relative;
  z-index: 1;
  margin: 7px 0 23px;
  max-width: 500px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}
.fk-watch-paths > a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.fk-watch-paths > a > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--fk-gold);
  font-size: 11px;
  font-weight: 850;
}
.fk-watch-paths > a strong { display: block; font-size: 16px; }
.fk-watch-paths > a small { display: block; margin-top: 2px; color: rgba(255,255,255,.62); font-size: 12px; }
.fk-watch-paths > a:hover strong { color: var(--fk-gold); }

.fk-category-tile {
  min-height: 250px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23,33,58,.035);
}
.fk-category-tile small { color: #8f2030; }
.fk-category-tile--trailer .fk-category-tile__icon { background: #263047; }

.fk-section--trailers {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(217,45,58,.22), transparent 28%),
    linear-gradient(145deg, #101728, #1d2842 72%, #30151c);
}
.fk-section--trailers::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 18px, transparent 18px 34px);
}
.fk-trailer-grid .fk-post-card { color: var(--fk-ink); border-color: rgba(255,255,255,.12); }
.fk-trailer-grid .fk-post-card__media::after { color: #fff; background: var(--fk-red); }
.fk-image-fallback--trailer { background: linear-gradient(140deg, #151d34, #7b1d2a); }

/* Category pages now use one calm editorial system instead of large colored blocks. */
.fk-archive-hero,
.fk-archive--review .fk-archive-hero,
.fk-archive--ott .fk-archive-hero,
.fk-archive--recommend .fk-archive-hero,
.fk-archive--news .fk-archive-hero,
.fk-archive--marathi .fk-archive-hero,
.fk-archive--trailer .fk-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 62px;
  color: var(--fk-navy);
  background:
    radial-gradient(circle at 88% 12%, rgba(217,45,58,.08), transparent 25%),
    linear-gradient(135deg, #fffdf8, #f4eee5);
  border-top: 5px solid var(--fk-red);
  border-bottom: 1px solid var(--fk-line);
}
.fk-archive--ott .fk-archive-hero { border-top-color: var(--fk-purple); }
.fk-archive--recommend .fk-archive-hero { border-top-color: var(--fk-gold); }
.fk-archive--news .fk-archive-hero { border-top-color: #2a69a8; }
.fk-archive--marathi .fk-archive-hero { border-top-color: var(--fk-orange); }
.fk-archive--trailer .fk-archive-hero { border-top-color: #263047; }
.fk-archive-hero::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 42px solid rgba(23,33,58,.045);
  border-radius: 50%;
}
.fk-archive-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.fk-archive-hero .fk-eyebrow,
.fk-archive--recommend .fk-archive-hero .fk-eyebrow { color: var(--fk-red); }
.fk-archive--ott .fk-archive-hero .fk-eyebrow { color: var(--fk-purple); }
.fk-archive--recommend .fk-archive-hero .fk-eyebrow { color: #9a680d; }
.fk-archive--news .fk-archive-hero .fk-eyebrow { color: #2a69a8; }
.fk-archive--marathi .fk-archive-hero .fk-eyebrow { color: var(--fk-orange); }
.fk-archive--trailer .fk-archive-hero .fk-eyebrow { color: #263047; }
.fk-archive-hero h1 { margin: 12px 0 14px; font-size: clamp(46px, 6vw, 76px); line-height: 1.06; letter-spacing: -2.2px; }
.fk-archive-hero p,
.fk-archive--recommend .fk-archive-hero p { max-width: 800px; margin: 0; color: #555e6c; font-size: 18px; line-height: 1.75; }
.fk-archive-intro-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
}
.fk-archive-intro-points li {
  padding: 9px 13px;
  border: 1px solid #ddd5ca;
  border-radius: 999px;
  color: #333d4d;
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 750;
}
.fk-archive-intro-points li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--fk-red); vertical-align: middle; }
.fk-archive--ott .fk-archive-intro-points li::before { background: var(--fk-purple); }
.fk-archive--recommend .fk-archive-intro-points li::before { background: #ad7611; }
.fk-archive--news .fk-archive-intro-points li::before { background: #2a69a8; }
.fk-archive--marathi .fk-archive-intro-points li::before { background: var(--fk-orange); }
.fk-archive--trailer .fk-archive-intro-points li::before { background: #263047; }

.fk-category-guide {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  padding: 34px;
  box-shadow: none;
  background: #fffdf9;
}
.fk-category-guide h2 { margin: 7px 0 10px; font-size: 36px; }
.fk-category-guide__topics { display: flex; flex-wrap: wrap; gap: 9px; }
.fk-category-guide__topics span { padding: 10px 13px; border: 1px solid var(--fk-line); border-radius: 999px; color: #384152; background: #fff; font-size: 12px; font-weight: 750; }
.fk-empty-discovery--clean { color: var(--fk-ink); background: #f5efe6; border: 1px solid var(--fk-line); }
.fk-empty-discovery--clean p { color: var(--fk-muted); }
.fk-empty-discovery--clean .fk-empty-discovery__links a { color: var(--fk-navy); background: #fff; border-color: var(--fk-line); }
.fk-empty-discovery--clean .fk-empty-discovery__links a:hover { color: #fff; background: var(--fk-navy); border-color: var(--fk-navy); }
.fk-archive-listing--fallback { margin-top: 0; }

.fk-single--trailer .fk-article-header { background: linear-gradient(145deg, #151d34, #2b3248 72%, #5a1824); }

@media (max-width: 900px) {
  .fk-archive-hero__inner { max-width: none; }
}

@media (max-width: 620px) {
  .fk-watch-paths { padding: 24px; border-radius: 22px; }
  .fk-watch-paths h2 { font-size: 29px; }
  .fk-archive-hero,
  .fk-archive--review .fk-archive-hero,
  .fk-archive--ott .fk-archive-hero,
  .fk-archive--recommend .fk-archive-hero,
  .fk-archive--news .fk-archive-hero,
  .fk-archive--marathi .fk-archive-hero,
  .fk-archive--trailer .fk-archive-hero { padding: 52px 0 46px; }
  .fk-archive-hero h1 { font-size: 46px; }
  .fk-archive-intro-points { display: grid; }
  .fk-archive-intro-points li { border-radius: 12px; }
}
