/* ============================================================
   NepaliMovie Theme — Main CSS
   assets/css/main.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Ink scale */
  --nm-ink:        #111111;
  --nm-ink2:       #2d2d2d;
  --nm-ink3:       #555555;
  --nm-ink4:       #888888;
  --nm-ink5:       #bbbbbb;

  /* Paper scale */
  --nm-paper:      #ffffff;
  --nm-paper2:     #faf9f7;
  --nm-paper3:     #f4f3f0;

  /* Rules */
  --nm-rule:       #e2e0db;
  --nm-rule2:      #d0cdc7;

  /* Amber — the single accent */
  --nm-amber:      #D4820A;
  --nm-amber-lt:   #F5A623;
  --nm-amber-dk:   #A86208;
  --nm-amber-pale: #FEF5E7;

  /* Typography */
  --nm-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --nm-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nm-max:    1200px;
  --nm-pad:    24px;
  --nm-r:      4px;
  --nm-r-lg:   10px;

  /* Shadows */
  --nm-s-sm: 0 1px 4px rgba(0,0,0,.07);
  --nm-s-md: 0 4px 16px rgba(0,0,0,.10);
  --nm-s-lg: 0 8px 32px rgba(0,0,0,.14);

  /* Transitions */
  --nm-t: .2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--nm-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--nm-ink2);
  background: var(--nm-paper3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--nm-amber-dk); text-decoration: none; transition: color var(--nm-t); }
a:hover { color: var(--nm-amber); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nm-serif);
  line-height: 1.2;
  color: var(--nm-ink);
  margin-top: 0;
  margin-bottom: .75em;
}

p { margin-top: 0; margin-bottom: 1.25em; }
ul, ol { padding-left: 1.5em; margin-bottom: 1em; }

input, textarea, select, button {
  font-family: var(--nm-sans);
  font-size: inherit;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.nm-container {
  max-width: var(--nm-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--nm-pad);
  padding-right: var(--nm-pad);
}

.nm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nm-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.nm-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.nm-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

/* ============================================================
   AD SLOTS
   ============================================================ */
.nm-ad-top {
  background: var(--nm-paper3);
  border-bottom: 1px solid var(--nm-rule);
  padding: 8px 0;
  text-align: center;
}

.nm-ad-728, .nm-ad-300 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nm-paper);
  border: 1px dashed var(--nm-rule2);
  font-size: 10px;
  color: var(--nm-ink5);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.nm-ad-728 { width: 728px; max-width: 100%; height: 90px; margin: 0 auto; }
.nm-ad-300 { width: 100%; min-height: 250px; flex-direction: column; gap: 4px; }

.nm-ad-strip {
  background: var(--nm-paper3);
  border-top: 1px solid var(--nm-rule);
  border-bottom: 1px solid var(--nm-rule);
  padding: 12px var(--nm-pad);
  text-align: center;
}

/* ============================================================
   HEADER
   ============================================================ */
.nm-header {
  background: var(--nm-ink);
  border-bottom: 3px solid var(--nm-amber);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nm-header-inner {
  display: flex;
  align-items: center;
  height: 62px;
  gap: 20px;
}

/* Logo */
.nm-logo { display: flex; flex-direction: column; flex-shrink: 0; text-decoration: none; }
.nm-logo-name {
  font-family: var(--nm-serif);
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1;
}
.nm-logo-name span { color: var(--nm-amber-lt); font-weight: 400; font-style: italic; }
.nm-logo-sub {
  font-size: 9px;
  color: rgba(255,255,255,.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Primary nav */
.nm-primary-nav { display: flex; flex: 1; gap: 0; margin-left: 12px; }
.nm-primary-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 8px 13px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--nm-t);
}
.nm-primary-nav a:hover,
.nm-primary-nav a.current-menu-item { color: #fff; border-bottom-color: var(--nm-amber); }

/* Header right */
.nm-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nm-search {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--nm-r);
  padding: 7px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  outline: none;
  width: 160px;
  transition: var(--nm-t);
}
.nm-search::placeholder { color: rgba(255,255,255,.35); }
.nm-search:focus { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.35); color: #fff; }

.nm-lang { display: flex; gap: 3px; }
.nm-lang-btn {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--nm-t);
}
.nm-lang-btn.active, .nm-lang-btn:hover {
  background: var(--nm-amber);
  border-color: var(--nm-amber);
  color: #fff;
}

/* Mobile menu toggle */
.nm-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* Subnav */
.nm-subnav { background: #1d1c1a; border-bottom: 1px solid #2a2927; }
.nm-subnav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.nm-subnav-inner::-webkit-scrollbar { display: none; }
.nm-subnav-inner a {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  padding: 9px 13px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
  transition: var(--nm-t);
}
.nm-subnav-inner a:hover,
.nm-subnav-inner a.active { color: #fff; border-bottom-color: var(--nm-amber); }

/* Ticker */
.nm-ticker {
  background: var(--nm-amber);
  display: flex;
  height: 28px;
  align-items: center;
  overflow: hidden;
}
.nm-ticker-label {
  background: rgba(0,0,0,.22);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.nm-ticker-track {
  display: flex;
  align-items: center;
  animation: nm-ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 24px;
}
.nm-ticker-track:hover { animation-play-state: paused; }
.nm-ticker-item { font-size: 11px; color: #fff; font-weight: 500; padding-right: 48px; }
.nm-ticker-item a { color: #fff; text-decoration: none; }
.nm-ticker-sep { color: rgba(255,255,255,.45); padding-right: 48px; }
@keyframes nm-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.nm-section { padding: 32px 0; }
.nm-section-alt {
  background: var(--nm-paper2);
  border-top: 1px solid var(--nm-rule);
  border-bottom: 1px solid var(--nm-rule);
}

.nm-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nm-rule);
}
.nm-section-accent {
  width: 4px;
  height: 20px;
  background: var(--nm-amber);
  border-radius: 2px;
  flex-shrink: 0;
}
.nm-section-title {
  font-family: var(--nm-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nm-ink);
  flex: 1;
  margin: 0;
}
.nm-section-more {
  font-size: 11px;
  color: var(--nm-amber);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .3px;
  transition: color var(--nm-t);
}
.nm-section-more:hover { color: var(--nm-amber-dk); }

/* ============================================================
   HERO
   ============================================================ */
.nm-hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  background: var(--nm-ink);
  min-height: 400px;
}

.nm-hero-main {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1a0e02, #0d0a05);
}

.nm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: .38;
  transition: opacity .4s;
}
.nm-hero-main:hover .nm-hero-bg { opacity: .48; }

.nm-hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,13,2,.98) 0%,
    rgba(17,13,2,.58) 45%,
    rgba(17,13,2,.08) 100%
  );
}

.nm-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 36px 38px;
}

.nm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nm-amber);
  color: #fff;
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
  border-radius: 2px;
}
.nm-hero-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: nm-pulse 1.5s infinite;
}
@keyframes nm-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.8); }
}

.nm-hero-title {
  font-family: var(--nm-serif);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.nm-hero-title em { font-weight: 400; color: rgba(255,255,255,.8); }

.nm-hero-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.nm-chip {
  font-family: var(--nm-sans);
  font-size: 10px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.18);
  padding: 3px 10px;
  border-radius: 2px;
}
.nm-chip-amber {
  background: var(--nm-amber);
  color: #fff;
  border-color: var(--nm-amber);
  font-weight: 700;
}

.nm-hero-desc {
  font-family: var(--nm-serif);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.58);
  margin-bottom: 22px;
  max-width: 500px;
  font-style: italic;
}

.nm-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sidebar of hero */
.nm-hero-sidebar {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.07);
}
.nm-hero-mini {
  flex: 1;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  background: rgba(255,255,255,.02);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background var(--nm-t);
}
.nm-hero-mini:last-child { border-bottom: none; }
.nm-hero-mini:hover { background: rgba(255,255,255,.06); }
.nm-mini-cat {
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nm-amber-lt);
  margin-bottom: 6px;
}
.nm-mini-title {
  font-family: var(--nm-serif);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  line-height: 1.35;
  margin-bottom: 4px;
}
.nm-mini-meta {
  font-family: var(--nm-sans);
  font-size: 10px;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nm-btn,
.nm-btn-amber,
.nm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nm-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border: none;
  border-radius: var(--nm-r);
  cursor: pointer;
  text-decoration: none;
  transition: var(--nm-t);
  letter-spacing: .3px;
}
.nm-btn-amber { background: var(--nm-amber); color: #fff; }
.nm-btn-amber:hover { background: var(--nm-amber-dk); color: #fff; }
.nm-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
}
.nm-btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ============================================================
   MOVIE CARDS
   ============================================================ */
.nm-movie-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

.nm-movie-card { cursor: pointer; }
.nm-movie-card:hover .nm-movie-card-title { color: var(--nm-amber); }

.nm-poster {
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  border-radius: var(--nm-r);
  background: #1a1510;
  box-shadow: var(--nm-s-sm);
  transition: box-shadow var(--nm-t), transform var(--nm-t);
}
.nm-movie-card:hover .nm-poster {
  box-shadow: var(--nm-s-lg);
  transform: translateY(-3px);
}
.nm-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nm-poster-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nm-serif);
  font-size: 14px;
  color: rgba(255,255,255,.18);
  text-align: center;
  padding: 16px;
  background: linear-gradient(160deg,#2d1a08,#100a03);
}
.nm-poster-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.nm-poster-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  z-index: 2;
}
.nm-poster-name {
  font-family: var(--nm-serif);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1px;
}
.nm-poster-genre { font-size: 9px; color: rgba(255,255,255,.5); font-family: var(--nm-sans); }

.nm-poster-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--nm-amber);
  color: #fff;
  font-family: var(--nm-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 3;
  border-radius: 2px;
}
.nm-poster-score {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,.82);
  color: var(--nm-amber-lt);
  font-family: var(--nm-sans);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  z-index: 3;
  border: 1px solid rgba(212,130,10,.3);
  border-radius: 2px;
}

.nm-movie-card-title {
  font-family: var(--nm-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--nm-ink);
  margin: 10px 0 2px;
  line-height: 1.3;
  transition: color var(--nm-t);
}
.nm-movie-card-meta { font-size: 10px; color: var(--nm-ink4); }

/* ============================================================
   NEWS LAYOUT
   ============================================================ */
.nm-news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

.nm-news-main-img {
  aspect-ratio: 16/9;
  background: var(--nm-paper3);
  border: 1px solid var(--nm-rule);
  border-radius: var(--nm-r-lg);
  overflow: hidden;
  margin-bottom: 14px;
}
.nm-news-main-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.nm-news-main-img:hover img { transform: scale(1.03); }
.nm-news-main-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--nm-paper3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--nm-ink5);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.nm-cat-label {
  display: inline-block;
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--nm-amber);
  margin-bottom: 6px;
  border-bottom: 2px solid var(--nm-amber);
  padding-bottom: 1px;
}

.nm-news-title-lg {
  font-family: var(--nm-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--nm-ink);
  margin-bottom: 8px;
}
.nm-news-title-lg a { color: inherit; }
.nm-news-title-lg a:hover { color: var(--nm-amber); }

.nm-news-dek {
  font-family: var(--nm-serif);
  font-size: 13px;
  line-height: 1.7;
  color: var(--nm-ink3);
  font-style: italic;
  margin-bottom: 10px;
}
.nm-byline { font-family: var(--nm-sans); font-size: 10px; color: var(--nm-ink4); }

/* News list */
.nm-news-list { display: flex; flex-direction: column; }
.nm-news-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--nm-rule); }
.nm-news-item:first-child { padding-top: 0; }
.nm-news-item:last-child { border-bottom: none; }
.nm-news-thumb {
  width: 78px; height: 58px;
  border-radius: var(--nm-r);
  background: var(--nm-paper3);
  border: 1px solid var(--nm-rule);
  flex-shrink: 0;
  overflow: hidden;
}
.nm-news-thumb img { width:100%; height:100%; object-fit:cover; }
.nm-news-item-title {
  font-family: var(--nm-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--nm-ink);
  line-height: 1.38;
  margin-bottom: 3px;
  transition: color var(--nm-t);
}
.nm-news-item-title a { color: inherit; }
.nm-news-item-title a:hover { color: var(--nm-amber); }
.nm-news-item-meta { font-size: 10px; color: var(--nm-ink4); }

/* ============================================================
   SIDEBAR & WIDGETS
   ============================================================ */
.nm-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
}
.nm-sidebar-sticky { position: sticky; top: 76px; display: flex; flex-direction: column; gap: 20px; }

.nm-widget {
  background: var(--nm-paper);
  border: 1px solid var(--nm-rule);
  border-radius: var(--nm-r-lg);
  overflow: hidden;
  box-shadow: var(--nm-s-sm);
}
.nm-widget-head {
  background: var(--nm-ink);
  color: #fff;
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nm-widget-head::before {
  content: '';
  display: inline-block;
  width: 3px; height: 13px;
  background: var(--nm-amber);
  border-radius: 1px;
  flex-shrink: 0;
}
.nm-widget-body { padding: 14px 16px; }

.nm-trend-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--nm-paper3);
}
.nm-trend-row:last-child { border-bottom: none; padding-bottom: 0; }
.nm-trend-num {
  font-family: var(--nm-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--nm-rule2);
  width: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.nm-trend-num.hi { color: var(--nm-amber); }
.nm-trend-title { font-size: 12px; font-weight: 600; color: var(--nm-ink); line-height: 1.3; margin-bottom: 2px; }
.nm-trend-title a { color: inherit; }
.nm-trend-title a:hover { color: var(--nm-amber); }
.nm-trend-sub { font-size: 10px; color: var(--nm-ink4); }

/* ============================================================
   BOX OFFICE TABLE
   ============================================================ */
.nm-bo-wrap {
  border: 1px solid var(--nm-rule);
  border-radius: var(--nm-r-lg);
  overflow: hidden;
  box-shadow: var(--nm-s-sm);
}
.nm-bo-table { width: 100%; border-collapse: collapse; }
.nm-bo-table thead tr { background: var(--nm-ink); }
.nm-bo-table thead th {
  padding: 11px 16px;
  text-align: left;
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.nm-bo-table tbody tr { border-bottom: 1px solid var(--nm-rule); transition: background var(--nm-t); }
.nm-bo-table tbody tr:last-child { border-bottom: none; }
.nm-bo-table tbody tr:hover { background: var(--nm-amber-pale); }
.nm-bo-table tbody td { padding: 12px 16px; vertical-align: middle; }
.nm-bo-rank { font-family: var(--nm-serif); font-size: 18px; font-weight: 700; color: var(--nm-rule2); }
.nm-bo-rank.hi { color: var(--nm-amber); }
.nm-bo-poster {
  width: 32px; height: 46px;
  border-radius: 3px;
  background: var(--nm-paper3);
  border: 1px solid var(--nm-rule);
  overflow: hidden;
  flex-shrink: 0;
}
.nm-bo-poster img { width:100%; height:100%; object-fit:cover; }
.nm-bo-film { display: flex; align-items: center; gap: 12px; }
.nm-bo-name { font-size: 14px; font-weight: 700; color: var(--nm-ink); margin-bottom: 2px; }
.nm-bo-name a { color: inherit; }
.nm-bo-name a:hover { color: var(--nm-amber); }
.nm-bo-sub { font-size: 10px; color: var(--nm-ink4); }
.nm-bo-gross { font-size: 14px; font-weight: 700; color: var(--nm-ink); }
.nm-bo-pill {
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}
.nm-bo-pill.showing { background: var(--nm-amber-pale); color: var(--nm-amber); }
.nm-bo-pill.ott     { background: var(--nm-paper3); color: var(--nm-ink3); }

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.nm-review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.nm-review-card {
  background: var(--nm-paper);
  border: 1px solid var(--nm-rule);
  border-top: 3px solid var(--nm-amber);
  border-radius: 0 0 var(--nm-r-lg) var(--nm-r-lg);
  padding: 18px;
  box-shadow: var(--nm-s-sm);
}
.nm-rv-top { display: flex; gap: 14px; margin-bottom: 14px; }
.nm-rv-poster {
  width: 52px; height: 74px;
  border-radius: 3px;
  background: var(--nm-paper3);
  border: 1px solid var(--nm-rule);
  flex-shrink: 0;
  overflow: hidden;
}
.nm-rv-poster img { width:100%; height:100%; object-fit:cover; }
.nm-rv-film { font-family: var(--nm-serif); font-size: 16px; font-weight: 700; color: var(--nm-ink); margin-bottom: 5px; }
.nm-rv-score-row { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.nm-rv-score { font-family: var(--nm-serif); font-size: 26px; font-weight: 700; color: var(--nm-amber); line-height: 1; }
.nm-rv-score-max { font-size: 11px; color: var(--nm-ink5); align-self: flex-end; margin-bottom: 3px; }
.nm-rv-bar { flex: 1; height: 3px; background: var(--nm-rule); border-radius: 2px; overflow: hidden; }
.nm-rv-fill { height: 100%; background: var(--nm-amber); border-radius: 2px; }
.nm-rv-stars { font-size: 12px; color: var(--nm-amber); letter-spacing: 2px; }
.nm-rv-pull {
  font-family: var(--nm-serif);
  font-size: 13px;
  line-height: 1.7;
  color: var(--nm-ink3);
  font-style: italic;
  border-left: 3px solid var(--nm-amber-pale);
  padding-left: 12px;
  margin-bottom: 10px;
}
.nm-rv-by { font-size: 10px; color: var(--nm-ink4); }
.nm-rv-by strong { color: var(--nm-ink3); }

/* ============================================================
   ARTICLE / SINGLE POST
   ============================================================ */
.nm-article-header {
  background: var(--nm-ink);
  padding: 52px 0 44px;
  border-bottom: 3px solid var(--nm-amber);
}
.nm-article-title {
  font-family: var(--nm-serif);
  font-size: 36px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 780px;
}
.nm-article-dek {
  font-family: var(--nm-serif);
  font-size: 16px;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  font-style: italic;
  max-width: 680px;
  margin-bottom: 18px;
}
.nm-article-meta {
  font-family: var(--nm-sans);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.nm-article-body { padding: 44px 0; }

.nm-article-content { font-size: 16px; line-height: 1.85; color: var(--nm-ink2); }
.nm-article-content h2 { font-family: var(--nm-serif); font-size: 26px; margin: 36px 0 14px; }
.nm-article-content h3 { font-family: var(--nm-serif); font-size: 21px; margin: 28px 0 12px; }
.nm-article-content p { margin-bottom: 22px; }
.nm-article-content img { border-radius: var(--nm-r-lg); margin: 28px 0; }
.nm-article-content a { color: var(--nm-amber); text-decoration: underline; }
.nm-article-content blockquote {
  border-left: 4px solid var(--nm-amber);
  padding: 18px 22px;
  margin: 28px 0;
  background: var(--nm-amber-pale);
  border-radius: 0 var(--nm-r) var(--nm-r) 0;
  font-family: var(--nm-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--nm-ink2);
}

.nm-featured-img { border-radius: var(--nm-r-lg); overflow: hidden; margin-bottom: 32px; }
.nm-featured-img img { width: 100%; height: auto; }

/* ============================================================
   MOVIE HERO (single movie page)
   ============================================================ */
.nm-movie-hero {
  background: var(--nm-ink);
  padding: 52px 0 0;
  border-bottom: 3px solid var(--nm-amber);
}
.nm-movie-hero-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 40px;
}
.nm-movie-poster-wrap {
  border-radius: var(--nm-r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  aspect-ratio: 2/3;
  background: #2a1a06;
}
.nm-movie-poster-wrap img { width:100%; height:100%; object-fit:cover; }
.nm-movie-info { color: #fff; }
.nm-movie-h1 { font-family: var(--nm-serif); font-size: 38px; color: #fff; margin-bottom: 10px; }
.nm-movie-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.nm-movie-desc {
  font-family: var(--nm-serif);
  font-size: 15px;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
  max-width: 560px;
}
.nm-movie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.nm-detail-table { width: 100%; border-collapse: collapse; }
.nm-detail-table td { padding: 10px 0; border-bottom: 1px solid var(--nm-rule); font-size: 14px; }
.nm-detail-table td:first-child { color: var(--nm-ink4); width: 140px; font-weight: 500; }

/* ============================================================
   ARCHIVE GRIDS
   ============================================================ */
.nm-archive-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.nm-archive-card {
  background: var(--nm-paper);
  border: 1px solid var(--nm-rule);
  border-radius: var(--nm-r-lg);
  overflow: hidden;
  box-shadow: var(--nm-s-sm);
  transition: transform var(--nm-t), box-shadow var(--nm-t);
}
.nm-archive-card:hover { transform: translateY(-3px); box-shadow: var(--nm-s-md); }
.nm-archive-thumb { aspect-ratio: 16/9; background: var(--nm-paper3); overflow: hidden; }
.nm-archive-thumb img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.nm-archive-card:hover .nm-archive-thumb img { transform: scale(1.04); }
.nm-archive-body { padding: 16px; }
.nm-archive-title {
  font-family: var(--nm-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--nm-ink);
  line-height: 1.35;
  margin-bottom: 5px;
  transition: color var(--nm-t);
}
.nm-archive-card:hover .nm-archive-title { color: var(--nm-amber); }
.nm-archive-title a { color: inherit; }
.nm-archive-meta { font-family: var(--nm-sans); font-size: 11px; color: var(--nm-ink4); }

/* Pagination */
.nm-pagination { display: flex; justify-content: center; gap: 6px; padding: 32px 0; flex-wrap: wrap; }
.nm-pagination .page-numbers {
  font-family: var(--nm-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--nm-rule);
  border-radius: var(--nm-r);
  color: var(--nm-ink3);
  background: var(--nm-paper);
  text-decoration: none;
  transition: var(--nm-t);
}
.nm-pagination .page-numbers:hover,
.nm-pagination .page-numbers.current { background: var(--nm-amber); border-color: var(--nm-amber); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.nm-footer { background: var(--nm-ink); border-top: 3px solid var(--nm-amber); }
.nm-footer-body { padding: 44px 0 0; }

.nm-footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-footer-logo { font-family: var(--nm-serif); font-size: 26px; font-weight: 700; color: #fff; }
.nm-footer-logo span { color: var(--nm-amber-lt); font-weight: 400; font-style: italic; }
.nm-footer-tagline { font-family: var(--nm-serif); font-size: 12px; color: rgba(255,255,255,.32); font-style: italic; }

.nm-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.nm-footer-desc { font-family: var(--nm-serif); font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.nm-footer-np   { font-size: 11px; color: rgba(255,255,255,.2); font-style: italic; margin-bottom: 14px; }

.nm-footer-socials { display: flex; gap: 6px; }
.nm-fsocial {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--nm-r);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--nm-t);
}
.nm-fsocial:hover { border-color: var(--nm-amber); color: var(--nm-amber); }

.nm-fcol-title {
  font-family: var(--nm-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-fcol ul { list-style: none; margin: 0; padding: 0; }
.nm-fcol ul li { margin-bottom: 9px; }
.nm-fcol ul a { font-size: 13px; color: rgba(255,255,255,.42); text-decoration: none; transition: color var(--nm-t); }
.nm-fcol ul a:hover { color: #fff; }

.nm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.nm-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--nm-sans);
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.nm-footer-links { display: flex; gap: 16px; }
.nm-footer-links a { font-size: 11px; color: rgba(255,255,255,.3); text-decoration: none; transition: color var(--nm-t); }
.nm-footer-links a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nm-movie-grid          { grid-template-columns: repeat(4,1fr); }
  .nm-hero                { grid-template-columns: 1fr; }
  .nm-hero-sidebar        { flex-direction: row; max-height: 150px; }
  .nm-footer-cols         { grid-template-columns: 1fr 1fr; }
  .nm-archive-news-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nm-pad: 16px; }
  .nm-primary-nav         { display: none; }
  .nm-menu-toggle         { display: block; }
  .nm-hero-sidebar        { display: none; }
  .nm-movie-grid          { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .nm-hero-title          { font-size: 26px; }
  .nm-news-layout,
  .nm-with-sidebar,
  .nm-article-grid,
  .nm-movie-hero-inner    { grid-template-columns: 1fr; }
  .nm-sidebar-sticky      { position: static; }
  .nm-review-grid         { grid-template-columns: 1fr; }
  .nm-footer-cols         { grid-template-columns: 1fr; }
  .nm-archive-news-grid   { grid-template-columns: 1fr; }
  .nm-article-title       { font-size: 26px; }
}

@media (max-width: 480px) {
  .nm-movie-grid          { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .nm-section             { padding: 22px 0; }
  .nm-hero-content        { padding: 20px 20px 28px; }
}
