/*
Theme Name: CineStream
Theme URI: https://cinestream.com
Author: CineStream Team
Author URI: https://cinestream.com
Description: A premium dark streaming platform WordPress theme with movie catalog, featured heroes, and video player support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cinestream
Tags: movies, streaming, dark, entertainment, video, custom-menu, featured-images, responsive-layout, full-width-template
*/

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  --bg-primary: #080b14;
  --bg-secondary: #0d1220;
  --bg-card: #111827;
  --bg-card-hover: #1a2438;
  --accent-primary: #e50914;
  --accent-secondary: #b81d24;
  --accent-glow: rgba(229, 9, 20, 0.4);
  --gold: #f5c518;
  --gold-dim: rgba(245, 197, 24, 0.15);
  --text-primary: #f0f0f0;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(229, 9, 20, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(229, 9, 20, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(229, 9, 20, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(99, 30, 30, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 3px; }

/* ==========================================
   LAYOUT
   ========================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-wrapper {
  position: relative;
  z-index: 1;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(8, 11, 20, 0.98) 0%, rgba(8, 11, 20, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 11, 20, 0.99);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.site-logo span {
  color: var(--accent-primary);
}

.site-logo img {
  height: 40px;
  width: auto;
}

/* Primary Navigation */
.main-nav ul {
  display: flex;
  gap: 4px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav ul li.current-menu-item a {
  color: var(--accent-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  position: relative;
}

.header-search input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 16px 8px 40px;
  width: 220px;
  transition: var(--transition);
  outline: none;
}

.header-search input:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-primary);
  width: 280px;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.header-search input::placeholder { color: var(--text-muted); }

.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 9px 12px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero-banner {
  position: relative;
  height: 85vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: var(--header-height);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 11, 20, 0.95) 0%, rgba(8, 11, 20, 0.5) 50%, rgba(8, 11, 20, 0.2) 100%),
    linear-gradient(to top, rgba(8, 11, 20, 1) 0%, rgba(8, 11, 20, 0.6) 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: fadeSlideUp 0.8s ease forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
}

.hero-year, .hero-genre, .hero-duration {
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-year { font-weight: 600; }

.hero-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions .btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

.hero-actions .btn-play {
  background: var(--text-primary);
  color: var(--bg-primary);
  font-weight: 700;
}

.hero-actions .btn-play:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.hero-actions .btn-info {
  background: rgba(109, 109, 110, 0.7);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-info:hover {
  background: rgba(109, 109, 110, 0.9);
}

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--accent-primary);
  width: 48px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.content-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--accent-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.section-link:hover { color: var(--accent-primary); }

/* ==========================================
   MOVIE CARDS
   ========================================== */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.movies-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.movies-row::-webkit-scrollbar { display: none; }

.movie-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: var(--transition);
  group: true;
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  z-index: 2;
}

.movie-card-poster {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}

.movie-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.movie-card:hover .movie-card-poster img {
  transform: scale(1.08);
}

/* Poster Placeholder */
.movie-card-poster .poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2438 0%, #111827 100%);
  color: var(--text-muted);
  gap: 8px;
}

.movie-card-poster .poster-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* Movie Card Overlay */
.movie-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,0.95) 0%, rgba(8,11,20,0.3) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-card:hover .movie-card-overlay {
  opacity: 1;
}

.movie-card-play {
  width: 52px;
  height: 52px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.movie-card:hover .movie-card-play {
  transform: scale(1);
  opacity: 1;
}

.movie-card-play svg {
  width: 20px;
  height: 20px;
  color: #fff;
  margin-left: 2px;
}

/* Quality Badge */
.movie-quality {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

/* Trending Badge */
.movie-trending {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

/* Movie Card Info */
.movie-card-info {
  padding: 12px 14px 14px;
}

.movie-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.movie-card-year {
  font-size: 12px;
  color: var(--text-muted);
}

.movie-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.movie-card-rating svg {
  width: 12px;
  height: 12px;
}

/* ==========================================
   FEATURED WIDE CARD
   ========================================== */
.featured-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16/7;
  cursor: pointer;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(229, 9, 20, 0.15);
}

.featured-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-bg {
  transform: scale(1.03);
}

.featured-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,11,20,0.9) 0%, rgba(8,11,20,0.3) 60%, transparent 100%);
}

.featured-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 12px;
}

.featured-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================
   CATEGORY / GENRE CHIPS
   ========================================== */
.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.genre-chip {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.genre-chip:hover,
.genre-chip.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* ==========================================
   MOVIE SINGLE PAGE
   ========================================== */
.movie-single-hero {
  position: relative;
  min-height: 70vh;
  margin-top: var(--header-height);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.movie-single-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.movie-single-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,11,20,1) 0%, rgba(8,11,20,0.7) 50%, rgba(8,11,20,0.3) 100%),
    linear-gradient(to top, rgba(8,11,20,1) 0%, transparent 50%);
}

.movie-single-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: end;
}

.movie-single-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 2/3;
}

.movie-single-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-single-info .hero-title {
  font-size: clamp(40px, 5vw, 72px);
}

/* ==========================================
   VIDEO PLAYER
   ========================================== */
.video-player-wrap {
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  margin: 40px 0;
  box-shadow: var(--shadow-card);
}

.video-player-wrap iframe,
.video-player-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.stats-bar::-webkit-scrollbar { display: none; }

.stat-item {
  flex-shrink: 0;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================
   CAST SECTION
   ========================================== */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.cast-card {
  text-align: center;
}

.cast-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.cast-card:hover .cast-avatar {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cast-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover,
.pagination .current {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
}

/* ==========================================
   SIDEBAR
   ========================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================
   NOTICE BAR (TOP)
   ========================================== */
.notice-bar {
  background: var(--accent-primary);
  color: #fff;
  text-align: center;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
}

.notice-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
  .movies-row { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .movies-row { grid-template-columns: repeat(4, 1fr); }
  .movie-single-content { grid-template-columns: 200px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .main-nav, .header-search { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }

  .main-nav.open { 
    display: flex; 
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(8, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open ul { flex-direction: column; width: 100%; }
  .main-nav.open ul li a { padding: 14px 16px; font-size: 16px; }

  .hero-banner { height: 70vh; }
  .hero-title { font-size: clamp(36px, 8vw, 60px); }
  .hero-description { display: none; }
  .hero-actions .btn { padding: 12px 20px; }

  .movies-row { grid-template-columns: repeat(3, 1fr); }
  .movies-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .movie-single-content { grid-template-columns: 1fr; }
  .movie-single-poster { max-width: 200px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stats-bar { gap: 20px; }
  .featured-card { aspect-ratio: 16/9; }
  .featured-card-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .movies-row { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 22px; }
  .content-section { padding: 40px 0; }
}
