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

/* ── VARIABLES ── */
:root {
  --rv-bg:         #0B0E17;
  --rv-bg2:        #111520;
  --rv-bg3:        #181D2E;
  --rv-border:     rgba(255,255,255,0.07);
  --rv-border2:    rgba(255,255,255,0.13);
  --rv-text:       #EEF0F6;
  --rv-text2:      #8B90A7;
  --rv-text3:      #50566E;
  --rv-red:        #D94F3D;
  --rv-red2:       #F07060;
  --rv-gold2:      #E8B84B;
  --rv-green2:     #5ECE8A;
  --rv-display:    'Playfair Display', Georgia, serif;
  --rv-body:       'DM Sans', sans-serif;
}

/* ── GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Force dark background on every Astra wrapper */
body,
body.ast-page-builder-template,
.ast-plain-container,
.ast-container,
#page,
#content,
#primary,
.site-content,
.content-area,
.ast-article-post,
.ast-article-inner-ctent {
  background-color: var(--rv-bg) !important;
  color: var(--rv-text) !important;
  font-family: var(--rv-body) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* Remove Astra's default page padding/max-width on front page */
body.home .ast-container,
body.home .ast-plain-container,
body.home #primary,
body.home .site-content,
body.home .content-area,
body.home .entry-content,
body.home .ast-article-post {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.home .ast-article-inner-ctent {
  padding: 0 !important;
}

/* Remove default post title on front page */
body.home .entry-header,
body.home .entry-title,
body.home .ast-single-post-order {
  display: none !important;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rv-display) !important;
  color: var(--rv-text) !important;
}
p { color: var(--rv-text2); font-family: var(--rv-body) !important; }
a { color: var(--rv-red2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--rv-text); }

/* ── ASTRA HEADER ── */
#masthead,
.site-header,
.main-header-bar,
.ast-primary-header-bar {
  background: rgba(11,14,23,0.96) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--rv-border) !important;
  box-shadow: none !important;
}

.ast-site-identity a,
.site-title,
.site-title a {
  font-family: var(--rv-display) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  color: var(--rv-text) !important;
  text-decoration: none !important;
}

/* Nav links */
#ast-desktop-nav .menu-item a,
.main-navigation .menu > .menu-item > a,
.ast-main-navigation .menu-item > a {
  font-family: var(--rv-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: var(--rv-text2) !important;
}
#ast-desktop-nav .menu-item a:hover,
.main-navigation .menu > .menu-item > a:hover,
.current-menu-item > a {
  color: var(--rv-text) !important;
}
.current-menu-item > a {
  border-bottom: 1.5px solid var(--rv-red) !important;
  padding-bottom: 1px !important;
}

/* Mobile menu */
.ast-mobile-popup-drawer .ast-mobile-menu-header,
.ast-mobile-popup-drawer,
.ast-popup-content-wrap {
  background: var(--rv-bg2) !important;
}
.ast-mobile-popup-drawer .menu-item a {
  color: var(--rv-text2) !important;
  font-family: var(--rv-body) !important;
}

/* ── ADD REVIEW BUTTON (in nav) ── */
#rv-nav-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rv-red);
  color: #fff !important;
  font-family: var(--rv-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none !important;
  white-space: nowrap;
  margin-left: 12px;
}
#rv-nav-add-btn:hover { background: var(--rv-red2) !important; color: #fff !important; }

/* ── FOOTER ── */
.site-footer,
#colophon,
.footer-widget-area,
.ast-footer-bar {
  background: #070A12 !important;
  border-top: 1px solid var(--rv-border) !important;
  color: var(--rv-text3) !important;
}
.site-footer a,
.ast-footer-bar a { color: var(--rv-text3) !important; }
.site-footer a:hover { color: var(--rv-text2) !important; }

/* ══════════════════════════════════════════════════
   HOMEPAGE LAYOUT COMPONENTS
   All scoped inside .rv-page so they don't leak
══════════════════════════════════════════════════ */

/* ── TICKER ── */
.rv-ticker {
  background: var(--rv-red);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}
.rv-ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: rv-ticker 30s linear infinite;
}
.rv-ticker-inner span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-family: var(--rv-body);
}
.rv-ticker-inner span b { color: #fff; font-weight: 700; }
.rv-ticker-inner span::before {
  content: '◆';
  margin-right: 22px;
  opacity: 0.5;
  font-size: 7px;
  vertical-align: middle;
}
@keyframes rv-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.rv-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border-bottom: 1px solid var(--rv-border);
  width: 100%;
}
.rv-hero-left {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rv-border);
  background: var(--rv-bg);
}
.rv-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rv-red2);
  margin-bottom: 20px;
  font-family: var(--rv-body);
}
.rv-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rv-red2);
}
.rv-hero-title {
  font-family: var(--rv-display) !important;
  font-size: 54px !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -1px !important;
  color: var(--rv-text) !important;
  margin-bottom: 22px !important;
  margin-top: 0 !important;
}
.rv-hero-title em { font-style: italic; color: var(--rv-red2); }
.rv-hero-desc {
  font-size: 15px;
  color: var(--rv-text2);
  max-width: 400px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-family: var(--rv-body);
}
.rv-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.rv-hero-right {
  position: relative;
  overflow: hidden;
  background: var(--rv-bg2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}
.rv-hero-keyart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55) saturate(1.1);
  transition: filter 0.4s;
}
.rv-hero-right:hover .rv-hero-keyart { filter: brightness(0.65) saturate(1.2); }
.rv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(8,10,18,0.7) 60%, rgba(8,10,18,0.97) 100%);
}
.rv-hero-info {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
}
.rv-hero-film-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rv-text3);
  margin-bottom: 8px;
  font-family: var(--rv-body);
}
.rv-hero-film-title {
  font-family: var(--rv-display) !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: var(--rv-text) !important;
  margin-bottom: 10px !important;
  line-height: 1.1 !important;
}
.rv-hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.rv-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-family: var(--rv-body);
}
.rv-badge-red   { background: var(--rv-red); color: #fff; }
.rv-badge-gold  { background: rgba(201,150,42,0.2); color: var(--rv-gold2); border: 1px solid rgba(201,150,42,0.3); }
.rv-badge-muted { background: rgba(255,255,255,0.08); color: var(--rv-text2); }
.rv-verdict-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rv-verdict-num {
  font-family: var(--rv-display);
  font-size: 46px;
  font-weight: 900;
  color: var(--rv-gold2);
  line-height: 1;
}
.rv-verdict-stars { color: var(--rv-gold2); font-size: 13px; letter-spacing: 2px; }
.rv-verdict-lbl { font-size: 11px; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-verdict-blurb { font-size: 13px; color: var(--rv-text2); margin-top: 2px; line-height: 1.5; font-family: var(--rv-body); }

/* ── SHARED BUTTONS ── */
.rv-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
  background: var(--rv-red) !important;
  color: #fff !important;
  font-family: var(--rv-body) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 11px 22px !important;
  border-radius: 2px !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
}
.rv-btn:hover { background: var(--rv-red2) !important; color: #fff !important; }
.rv-btn-ghost {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rv-text2) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--rv-border2);
  padding-bottom: 2px;
  transition: color 0.2s;
  font-family: var(--rv-body);
}
.rv-btn-ghost:hover { color: var(--rv-text) !important; }

/* ── SECTION WRAPPER ── */
.rv-section {
  padding: 52px 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.rv-section-dark { background: var(--rv-bg2) !important; }
.rv-section + .rv-section { border-top: 1px solid var(--rv-border); }
.rv-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.rv-section-title {
  font-family: var(--rv-display) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--rv-text) !important;
  letter-spacing: -0.3px;
  margin: 0 !important;
}
.rv-section-sub {
  font-size: 13px;
  color: var(--rv-text3);
  margin-top: 3px;
  font-family: var(--rv-body);
}
.rv-section-link {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--rv-red2) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  white-space: nowrap;
  font-family: var(--rv-body) !important;
}
.rv-section-link:hover { color: var(--rv-text) !important; }
.rv-section-head-right { display: flex; align-items: center; gap: 14px; }

/* ── REVIEW CARDS GRID ── */
.rv-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.rv-card {
  background: var(--rv-bg2);
  border: 1px solid var(--rv-border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.rv-card:hover { border-color: var(--rv-border2); transform: translateY(-4px); }
.rv-card-poster { position: relative; width: 100%; overflow: hidden; }
.rv-card-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.5) saturate(1.1);
  transition: filter 0.35s, transform 0.35s;
}
.rv-card-img.tall { aspect-ratio: 16/11; }
.rv-card:hover .rv-card-img { filter: brightness(0.65) saturate(1.2); transform: scale(1.03); }
.rv-card-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.88) 100%);
}
.rv-card-poster-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; }
.rv-card-genre {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  font-family: var(--rv-body);
}
.rv-card-name {
  font-family: var(--rv-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.rv-card-name.lg { font-size: 23px; }
.rv-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.rv-card-score-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rv-pill {
  font-family: var(--rv-display);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}
.rv-pill-great { background: rgba(46,139,90,0.2);  color: #5ECE8A;         border: 1px solid rgba(46,139,90,0.35); }
.rv-pill-good  { background: rgba(201,150,42,0.2); color: var(--rv-gold2); border: 1px solid rgba(201,150,42,0.3);  }
.rv-pill-mixed { background: rgba(217,79,61,0.15); color: var(--rv-red2);  border: 1px solid rgba(217,79,61,0.25); }
.rv-card-year { font-size: 11px; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-card-excerpt { font-size: 13px; color: var(--rv-text2); line-height: 1.65; flex: 1; font-family: var(--rv-body); }
.rv-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rv-border);
}
.rv-card-tag { font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-card-del { margin-left: auto; background: none; border: none; color: var(--rv-text3); cursor: pointer; font-size: 16px; line-height: 1; padding: 0 2px; transition: color 0.2s; display: none; }
.rv-card:hover .rv-card-del { display: block; }
.rv-card-del:hover { color: var(--rv-red2); }
@keyframes rv-card-in { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.rv-card.is-new { animation: rv-card-in 0.4s ease both; }

/* ── TOP PICKS ── */
.rv-picks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.rv-pick {
  padding: 24px 20px;
  border-left: 2px solid var(--rv-border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.rv-pick:hover { border-left-color: var(--rv-red); }
.rv-pick-num { font-family: var(--rv-display); font-size: 38px; font-weight: 900; color: var(--rv-bg3); line-height: 1; margin-bottom: 4px; }
.rv-pick-genre { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--rv-text3); margin-bottom: 5px; font-family: var(--rv-body); }
.rv-pick-title { font-family: var(--rv-display) !important; font-size: 15px !important; font-weight: 700 !important; color: var(--rv-text) !important; line-height: 1.3; margin-bottom: 8px !important; }
.rv-pick-score { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--rv-text2); font-family: var(--rv-body); }
.rv-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.rv-dot-g { background: #5ECE8A; }
.rv-dot-y { background: var(--rv-gold2); }
.rv-dot-r { background: var(--rv-red2); }

/* ── TV GRID ── */
.rv-tv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.rv-tv-card { cursor: pointer; }
.rv-tv-poster {
  aspect-ratio: 2/3;
  border-radius: 3px;
  border: 1px solid var(--rv-border);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  transition: border-color 0.25s;
}
.rv-tv-card:hover .rv-tv-poster { border-color: var(--rv-border2); }
.rv-tv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  transition: filter 0.3s, transform 0.35s;
}
.rv-tv-card:hover .rv-tv-img { filter: brightness(0.7); transform: scale(1.04); }
.rv-tv-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.9) 100%); }
.rv-tv-net { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.7); font-size: 8px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 7px; border-radius: 2px; font-family: var(--rv-body); }
.rv-tv-bar { position: absolute; bottom: 0; left: 0; height: 3px; }
.rv-tv-name-overlay { position: absolute; bottom: 14px; left: 14px; right: 14px; font-family: var(--rv-display); font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2; }
.rv-tv-title { font-family: var(--rv-display) !important; font-size: 14px !important; font-weight: 700 !important; color: var(--rv-text) !important; margin-bottom: 4px !important; }
.rv-tv-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-tv-score { color: var(--rv-gold2); font-weight: 500; font-size: 13px; }

/* ── OPINION ── */
.rv-opinion-wrap { background: var(--rv-bg3); border-top: 1px solid var(--rv-border); border-bottom: 1px solid var(--rv-border); padding: 52px 40px; width: 100%; }
.rv-opinions { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.rv-opinion {
  background: var(--rv-bg2);
  border: 1px solid var(--rv-border);
  border-radius: 3px;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.rv-opinion:hover { border-color: var(--rv-border2); }
.rv-opinion-tag { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--rv-red2); margin-bottom: 10px; font-family: var(--rv-body); }
.rv-opinion-title { font-family: var(--rv-display) !important; font-size: 17px !important; font-weight: 700 !important; color: var(--rv-text) !important; line-height: 1.35; margin-bottom: 12px !important; }
.rv-opinion-blurb { font-size: 13px; color: var(--rv-text2); line-height: 1.65; font-family: var(--rv-body); }
.rv-opinion-author { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--rv-border); }
.rv-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--rv-bg3); border: 1px solid var(--rv-border2); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600; color: var(--rv-text2); flex-shrink: 0; font-family: var(--rv-body); }
.rv-author-name { font-size: 12px; font-weight: 500; color: var(--rv-text2); font-family: var(--rv-body); }
.rv-author-date { font-size: 11px; color: var(--rv-text3); font-family: var(--rv-body); }

/* ── ADD REVIEW MODAL ── */
.rv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.87);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.rv-modal-overlay.open { opacity: 1; pointer-events: all; }
.rv-modal {
  background: var(--rv-bg2);
  border: 1px solid var(--rv-border2);
  border-radius: 4px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.25s;
}
.rv-modal-overlay.open .rv-modal { transform: translateY(0); }
.rv-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--rv-border);
}
.rv-modal-hd-title { font-family: var(--rv-display); font-size: 21px; font-weight: 700; color: var(--rv-text); }
.rv-modal-hd-sub { font-size: 12px; color: var(--rv-text3); margin-top: 2px; font-family: var(--rv-body); }
.rv-modal-x { background: none; border: none; color: var(--rv-text3); cursor: pointer; font-size: 20px; line-height: 1; padding: 4px; transition: color 0.2s; }
.rv-modal-x:hover { color: var(--rv-text); }
.rv-modal-bd { padding: 24px 26px; }
.rv-fg { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rv-f { display: flex; flex-direction: column; gap: 5px; }
.rv-f.full { grid-column: 1/-1; }
.rv-f label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-f input, .rv-f textarea {
  background: var(--rv-bg3) !important;
  border: 1px solid var(--rv-border2) !important;
  color: var(--rv-text) !important;
  font-family: var(--rv-body) !important;
  font-size: 14px !important;
  padding: 9px 13px !important;
  border-radius: 3px !important;
  outline: none !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
}
.rv-f input:focus, .rv-f textarea:focus { border-color: var(--rv-red) !important; }
.rv-f input::placeholder, .rv-f textarea::placeholder { color: var(--rv-text3) !important; }
.rv-f textarea { height: 86px; resize: vertical; line-height: 1.6; }
.rv-score-live { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.rv-score-live-badge { font-family: var(--rv-display); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 2px; opacity: 0; transition: opacity 0.2s; }
.rv-hint { font-size: 11px; color: var(--rv-text3); margin-top: 4px; line-height: 1.5; font-family: var(--rv-body); }
.rv-hint a { color: var(--rv-red2); }
.rv-poster-thumb { width: 100%; height: 130px; object-fit: cover; border-radius: 3px; border: 1px solid var(--rv-border2); margin-top: 8px; display: none; }
.rv-poster-thumb.show { display: block; }
.rv-modal-ft {
  padding: 0 26px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.rv-modal-note { font-size: 11px; color: var(--rv-text3); font-family: var(--rv-body); }
.rv-modal-btns { display: flex; gap: 10px; }
.rv-cancel {
  background: transparent;
  border: 1px solid var(--rv-border2);
  color: var(--rv-text2);
  font-family: var(--rv-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.rv-cancel:hover { border-color: var(--rv-text3); color: var(--rv-text); }
.rv-publish {
  background: var(--rv-red);
  color: #fff;
  font-family: var(--rv-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.rv-publish:hover { background: var(--rv-red2); }

/* ── TOAST ── */
.rv-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--rv-bg2);
  border: 1px solid rgba(46,139,90,0.4);
  border-left: 3px solid #5ECE8A;
  padding: 13px 18px;
  border-radius: 3px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--rv-text);
  font-family: var(--rv-body);
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.rv-toast.show { transform: translateY(0); opacity: 1; }
.rv-toast-icon { color: #5ECE8A; font-size: 15px; }

/* ── ANIMATIONS ── */
@keyframes rv-fade-up { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.rv-hero-left > * { animation: rv-fade-up 0.6s ease both; }
.rv-hero-left > *:nth-child(1){animation-delay:0.05s}
.rv-hero-left > *:nth-child(2){animation-delay:0.15s}
.rv-hero-left > *:nth-child(3){animation-delay:0.25s}
.rv-hero-left > *:nth-child(4){animation-delay:0.35s}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .rv-grid { grid-template-columns: 1fr 1fr; }
  .rv-grid .rv-card:first-child { grid-column: 1/-1; }
  .rv-picks { grid-template-columns: repeat(4,1fr); }
}
@media (max-width:900px) {
  .rv-hero { grid-template-columns: 1fr; min-height: auto; }
  .rv-hero-left { padding: 44px 24px; border-right: none; border-bottom: 1px solid var(--rv-border); }
  .rv-hero-title { font-size: 40px !important; }
  .rv-hero-right { min-height: 300px; }
  .rv-hero-info { padding: 22px 24px; }
  .rv-hero-film-title { font-size: 24px !important; }
  .rv-verdict-num { font-size: 36px; }
  .rv-section { padding: 36px 24px; }
  .rv-opinion-wrap { padding: 36px 24px; }
  .rv-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .rv-grid .rv-card:first-child { grid-column: 1/-1; }
  .rv-picks { grid-template-columns: repeat(2,1fr); }
  .rv-tv-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .rv-opinions { grid-template-columns: 1fr; }
  .rv-fg { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  .rv-hero-left { padding: 32px 16px; }
  .rv-hero-title { font-size: 32px !important; }
  .rv-hero-right { min-height: 250px; }
  .rv-section { padding: 28px 16px; }
  .rv-section-title { font-size: 22px !important; }
  .rv-opinion-wrap { padding: 28px 16px; }
  .rv-grid { grid-template-columns: 1fr; }
  .rv-grid .rv-card:first-child { grid-column: auto; }
  .rv-picks { grid-template-columns: 1fr 1fr; }
  .rv-tv-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rv-toast { bottom: 16px; right: 16px; left: 16px; }
  .rv-opinions { grid-template-columns: 1fr; }
}
