:root {
  --background-color: #050508;
  --text-color: #f8f9fa;
  --primary-color: #ff9900;
  --primary-gradient: linear-gradient(135deg, #ff9900 0%, #ff4500 100%);
  --secondary-bg-color: rgba(30, 30, 40, 0.7);
  --card-bg-color: rgba(22, 22, 33, 0.6);
  --card-shadow-color: rgba(0, 0, 0, 0.6);
  --input-bg-color: rgba(30, 30, 45, 0.5);
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 15, 25, 0.75);
  --glass-blur: blur(16px);
  --accent-blue: #00d2ff;
  --neon-glow: 0 0 15px rgba(255, 153, 0, 0.45);
  --accent-gold: #ffaa00;
}

body.light-mode {
  --background-color: #f4f5f8;
  --text-color: #1a1a25;
  --primary-color: #0052cc;
  --primary-gradient: linear-gradient(135deg, #0052cc 0%, #0022aa 100%);
  --secondary-bg-color: rgba(230, 230, 240, 0.7);
  --card-bg-color: rgba(255, 255, 255, 0.8);
  --card-shadow-color: rgba(0, 0, 0, 0.08);
  --input-bg-color: rgba(255, 255, 255, 0.9);
  --border-color: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(16px);
  --accent-blue: #0044cc;
  --neon-glow: 0 0 15px rgba(0, 82, 204, 0.2);
  --accent-gold: #cc8800;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html,
body {
  scrollbar-width: none;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.6;
}

/* Floating Glass Header */
.navbar {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  padding: 0.8rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s;
}

#menu-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  margin-right: 1.5rem;
  outline: none;
  transition: color 0.3s;
}

#menu-btn:hover {
  color: var(--primary-color);
}

.site-title {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.site-logo {
  height: 48px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-watchlist-btn {
  color: var(--primary-color);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: var(--input-bg-color);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  justify-content: center;
}

.header-watchlist-btn:hover {
  transform: scale(1.08);
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: var(--neon-glow);
}

#mode-toggle {
  background: var(--input-bg-color);
  border: 1px solid var(--border-color);
  width: 56px;
  height: 28px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  transition: all 0.3s ease;
}

#mode-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  left: 4px;
  top: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

body.light-mode #mode-toggle::after {
  left: 30px;
  background: #f1c40f;
}

#mode-toggle i {
  font-size: 0.8rem;
  z-index: 1;
  color: #888;
}

body:not(.light-mode) #mode-toggle .fa-sun {
  color: #fff;
}

body.light-mode #mode-toggle .fa-moon {
  color: #fff;
}

/* Side Navigation drawer */
.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  height: 100%;
  width: 280px;
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding-top: 6rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-right: 1px solid var(--border-color);
}

.side-menu.show {
  transform: translateX(280px);
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  padding: 1.1rem 2.2rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  color: var(--text-color);
}

.side-menu li:hover {
  background-color: var(--secondary-bg-color);
  color: var(--primary-color);
  padding-left: 2.6rem;
}

.side-menu ul li.active {
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 600;
}

/* 🎬 Immersive Cinematic Spotlight Hero */
.spotlight-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #030306;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: blur(4px);
  transition: background-image 0.8s ease;
  z-index: 1;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background-color) 0%, rgba(5, 5, 8, 0.4) 60%, rgba(5, 5, 8, 0.8) 100%),
              linear-gradient(to right, var(--background-color) 0%, rgba(5, 5, 8, 0.2) 50%, transparent 100%);
  z-index: 2;
}

body.light-mode .spotlight-overlay {
  background: linear-gradient(to top, var(--background-color) 0%, rgba(244, 245, 248, 0.4) 60%, rgba(244, 245, 248, 0.8) 100%),
              linear-gradient(to right, var(--background-color) 0%, rgba(244, 245, 248, 0.2) 50%, transparent 100%);
}

.hero-split-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 4rem;
  height: 100%;
}

.hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--neon-glow);
}

.hero-info h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.hero-info p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 580px;
}

.btn-hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  box-shadow: var(--neon-glow);
}

.btn-hero-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.7);
}

.btn-hero-cta i {
  transition: transform 0.3s;
}

.btn-hero-cta:hover i {
  transform: translateX(6px);
}

/* Floating Poster Card with Perspective */
.hero-poster-wrap {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-poster-card {
  width: 290px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 255, 255, 0.2);
  transform: rotateY(-10deg) rotateX(10deg);
  transition: all 0.5s ease;
  z-index: 5;
  border: 1px solid var(--border-color);
}

.hero-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster-wrap:hover .hero-poster-card {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
  box-shadow: 0 25px 60px rgba(255, 153, 0, 0.3);
  border-color: var(--primary-color);
}

/* 🔢 Ranked Trending Reviews Slider Section */
.trending-ranked-section {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 20px;
}

.carousel-nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-arrow-btn {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}

.nav-arrow-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--neon-glow);
  transform: scale(1.08);
}

.ranked-carousel-wrapper {
  display: flex;
  gap: 3.5rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.ranked-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.ranked-item {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-width: 250px;
  height: 240px;
  text-decoration: none;
  color: var(--text-color);
}

.ranked-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 11rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  left: -15px;
  bottom: -15px;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.18);
  transition: all 0.3s;
  user-select: none;
  letter-spacing: -8px;
}

body.light-mode .ranked-number {
  -webkit-text-stroke: 4px rgba(0, 0, 0, 0.14);
}

.ranked-card {
  width: 155px;
  height: 230px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-left: 65px;
  box-shadow: 0 10px 25px var(--card-shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.ranked-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranked-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.2) 65%, transparent 100%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ranked-info-overlay h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 5px;
}

.ranked-info-overlay span {
  font-size: 0.7rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.ranked-item:hover .ranked-card {
  transform: translateY(-10px) scale(1.04);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(255, 153, 0, 0.25);
}

.ranked-item:hover .ranked-info-overlay {
  opacity: 1;
}

.ranked-item:hover .ranked-number {
  -webkit-text-stroke-color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 153, 0, 0.25);
}

/* 🏷️ Navigation & Search Bar block */
.nav-search-bar {
  max-width: 1200px;
  margin: -35px auto 3rem auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  gap: 20px;
}

.category-nav {
  display: flex;
  overflow-x: auto;
}

.category-pills {
  display: flex;
  gap: 10px;
}

.pill {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s;
}

.pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.pill.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--neon-glow);
}

/* Redesigned Search Box */
.search-container {
  position: relative;
  width: 320px;
}

#search-input {
  width: 100%;
  padding: 11px 18px 11px 45px;
  font-size: 0.9rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-color);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

#search-input:focus {
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
  width: 350px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* 👥 Dual Column Layout */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem 2rem;
}

.blog-main-layout {
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.grid-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.grid-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grid-header .line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

/* Main Grid cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.blog-item {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px var(--card-shadow-color);
  backdrop-filter: blur(8px);
}

.blog-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(255, 153, 0, 0.15);
}

.blog-item-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.08);
}

.blog-item-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-item-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.blog-item-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-item-body p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.6;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* 📝 Sidebar Column design */
.sidebar-column {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Sidebar Trending mini card list */
.sidebar-trending-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trending-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: var(--text-color);
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 16px;
  transition: all 0.3s;
}

.trending-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trending-item-img {
  width: 70px;
  height: 95px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.trending-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trending-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trending-item-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trending-item-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-item-meta {
  font-size: 0.72rem;
  opacity: 0.55;
}

/* Box Office Widget styling */
.box-office-widget {
  background: linear-gradient(135deg, rgba(22, 22, 33, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px var(--card-shadow-color);
}

.widget-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.widget-item .rank {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  width: 25px;
  text-align: center;
}

.widget-item .item-info {
  display: flex;
  flex-direction: column;
}

.widget-item .item-info strong {
  font-size: 0.9rem;
}

.widget-item .item-info span {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Footer Section */
.modern-footer {
  background-color: #030306;
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 2rem;
}

body.light-mode .modern-footer {
  background-color: #e5e6eb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.6;
  margin: 1.2rem 0;
  max-width: 320px;
}

.footer-logo {
  height: 48px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.youtube { background-color: #ff0000; }
.social-icon.telegram { background-color: #0088cc; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

.footer-links-group h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-group a {
  display: block;
  color: var(--text-color);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  transition: all 0.2s;
}

.footer-links-group a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* Detail pages specific layout */
.detail-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.detail-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 800;
}

.detail-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.detail-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--blog-card-shadow);
  margin-bottom: 3rem;
}

.detail-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.detail-content h2, .detail-content h3 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.detail-content p {
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.rating-badge-detail {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* Go to Top Button */
#go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
  z-index: 1000;
  transition: transform 0.3s, opacity 0.3s;
}

#go-to-top:hover {
  transform: translateY(-5px);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .blog-main-layout {
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
  }
  .navbar {
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 900px) {
  .blog-main-layout {
    grid-template-columns: 1fr;
  }
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding-top: 8rem;
  }
  .hero-info {
    align-items: center;
  }
  .hero-poster-wrap {
    display: none; /* Hide floating card on mobile for better space */
  }
  .spotlight-hero {
    height: auto;
    padding-bottom: 3rem;
  }
  .nav-search-bar {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1rem;
  }
  .search-container {
    width: 100%;
  }
  #search-input:focus {
    width: 100%;
  }
  .category-nav {
    justify-content: center;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .sidebar-column {
    position: static;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .navbar {
    padding: 0.8rem 1rem;
  }
  .side-menu {
    width: 250px;
  }
}

/* ==========================================================================
   🎬 PREMIUM CINEMATIC ARTICLE PAGES (blog/*.html)
   ========================================================================== */

/* Progress Bar on top of article */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1001;
}

.progress-bar {
  height: 4px;
  background: var(--primary-gradient);
  width: 0%;
  box-shadow: var(--neon-glow);
}

/* Detail page Container */
.detail-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--background-color);
  position: relative;
}

/* Back Button */
.go-back-btn {
  background: var(--input-bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 6rem auto 0 auto;
  transition: all 0.3s;
}

.go-back-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateX(-4px);
}

/* Spoiler Alert Warning Box */
.spoiler-box {
  background: rgba(255, 153, 0, 0.07);
  border: 1px dashed rgba(255, 153, 0, 0.4);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: inset 0 0 15px rgba(255, 153, 0, 0.05);
}

.spoiler-box i {
  color: var(--primary-color);
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.spoiler-box span {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Table of Contents (TOC) Glass Box */
.toc-box {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.8rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.toc-box h4 {
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.toc-list li {
  position: relative;
  padding-left: 15px;
}

.toc-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary-color);
}

.toc-list a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.75;
  font-weight: 500;
  transition: all 0.3s;
}

.toc-list a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

/* Quick Info Grid overrides */
.blog-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(26, 26, 38, 0.5) 0%, rgba(15, 15, 25, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: var(--glass-blur);
}

.info-item {
  text-align: center;
}

.info-label {
  font-size: 0.72rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
}

/* Sections */
.blog-section {
  margin-bottom: 3.5rem;
}

.blog-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--text-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 16px;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.blog-section p {
  line-height: 1.95;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* Video Wrapper */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  margin: 2rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Redesigned Cast Table */
.cast-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cast-table th {
  background-color: rgba(255, 153, 0, 0.08);
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.cast-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.cast-table tr:last-child td {
  border-bottom: none;
}

.cast-table tr:hover td {
  background: rgba(255, 153, 0, 0.03);
}

/* Pros & Cons Cards with Glowing Borders */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros, .cons {
  background: var(--card-bg-color);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.pros {
  border-bottom: 4px solid #2ecc71;
}

.pros:hover {
  box-shadow: 0 15px 30px rgba(46, 204, 113, 0.15);
  border-color: #2ecc71;
}

.cons {
  border-bottom: 4px solid #e74c3c;
}

.cons:hover {
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.15);
  border-color: #e74c3c;
}

.pros h3 {
  font-family: 'Montserrat', sans-serif;
  color: #2ecc71;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cons h3 {
  font-family: 'Montserrat', sans-serif;
  color: #e74c3c;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pros-cons ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.pros-cons li {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: 900;
}

.cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 900;
}

/* FAQ Styling */
.faq-item {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary-color);
}

.faq-answer {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
}

/* Rating Verdict Card (End of Article) */
.rating-verdict {
  background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid var(--primary-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem 0;
  box-shadow: var(--neon-glow);
  position: relative;
}

.big-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-shadow: var(--neon-glow);
}

.star-display {
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.verdict-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.verdict-text {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Share Section */
.share-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 3.5rem;
}

.share-section span {
  font-weight: 600;
  font-size: 0.9rem;
}

.share-btn-blog {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: var(--input-bg-color);
  color: var(--text-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.share-btn-blog:hover {
  transform: translateY(-2px);
}

.share-wa:hover {
  border-color: #2ecc71;
  color: #2ecc71;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.share-tw:hover {
  border-color: #00d2ff;
  color: #00d2ff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.share-copy:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

/* Newsletter Box */
.newsletter-box {
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.1) 0%, rgba(255, 153, 0, 0.02) 100%);
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.newsletter-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
}

.newsletter-box p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: var(--input-bg-color);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
  outline: none;
}

.newsletter-form button {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s;
}

.newsletter-form button:hover {
  transform: scale(1.04);
}

/* Related articles */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.related-card {
  display: flex;
  gap: 15px;
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-card img {
  width: 60px;
  height: 85px;
  object-fit: cover;
  border-radius: 8px;
}

.related-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-card-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.related-card-info span {
  font-size: 0.72rem;
  opacity: 0.5;
}

/* Watch CTA */
.watch-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  padding: 14px 25px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  box-shadow: var(--neon-glow);
  transition: transform 0.3s;
}

.watch-cta:hover {
  transform: scale(1.02);
}

/* Divider */
.blog-divider {
  border: none;
  height: 1px;
  background: var(--border-color);
  margin: 3rem 0;
}

/* Responsive details */
@media (max-width: 768px) {
  .pros-cons, .related-grid {
    grid-template-columns: 1fr;
  }
  .detail-container {
    padding: 3rem 1rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }
}

/* 🌐 Language Switcher Widget */
.lang-toggle-btn {
  background: var(--input-bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  outline: none;
}

.lang-toggle-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

/* Hide/Show Language Content classes */
body.lang-en .lang-content-hi {
  display: none !important;
}

body:not(.lang-en) .lang-content-en {
  display: none !important;
}
