/* ═══════════════════════════════════════════════════════════════════
   Movia - Premium Movie Streaming Website
   Design: Futuristic, Cinematic, Glassmorphism
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #030508;
  --bg-secondary: #0A0E17;
  --card-bg: #0D1320;
  --text: #FFFFFF;
  --text-secondary: #94A3B8;
  --accent: #00F2FE;
  --accent-hover: #4FACFE;
  --border: rgba(255, 255, 255, 0.05);
  --glass: rgba(10, 14, 23, 0.65);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 242, 254, 0.3);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 76px;
}

/* ═══════════════ RESET ═══════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ═══════════════ SCROLLBAR ═══════════════ */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ═══════════════ NAVIGATION ═══════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo span {
  background: linear-gradient(135deg, var(--accent), #00BFA5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Categories Dropdown */
.categories-wrapper {
  position: relative;
}

.categories-wrapper > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.categories-wrapper > a svg {
  transition: transform var(--transition);
}

.categories-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 180px;
  z-index: 200;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.categories-dropdown.active {
  display: block;
  animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.categories-dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition);
}

.categories-dropdown a:hover {
  color: var(--accent);
  background: rgba(0, 229, 168, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box .search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-secondary);
  pointer-events: none;
}

.search-box input {
  width: 240px;
  padding: 10px 16px 10px 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}

.search-box input:focus {
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.search-box input::placeholder {
  color: var(--text-secondary);
}

.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: 400px;
  overflow-y: auto;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-item img {
  width: 40px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.search-result-item .sr-info {
  flex: 1;
  min-width: 0;
}

.search-result-item .sr-info .sr-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item .sr-info .sr-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.icon-btn .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}

.user-avatar:hover {
  transform: scale(1.1);
}

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

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-search {
  margin-top: 20px;
  width: 100%;
}

.mobile-search input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-size: 16px;
  transition: var(--transition);
}

.mobile-search input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5, 7, 13, 0.3) 40%,
    rgba(5, 7, 13, 0.8) 70%,
    var(--bg) 100%
  ),
  linear-gradient(90deg, rgba(5, 7, 13, 0.85) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 80px;
  width: 100%;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-secondary);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #FFB800;
  font-weight: 700;
}

.hero-rating span {
  color: var(--text);
}

.hero-genres {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-genres span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.hero-desc {
  max-width: 520px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-play:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 229, 168, 0.3);
}

.btn-more {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-more:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* ═══════════════ MOVIE SECTIONS & GRID ═══════════════ */

.page-view {
  min-height: 100vh;
  padding-top: var(--nav-height);
  animation: fadeIn 0.4s ease;
}

#homeView {
  padding-top: 0;
}

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

.grid-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 32px 30px;
  text-align: center;
}

.grid-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.grid-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 24px;
}

.pagination {
  text-align: center;
  padding: 0 32px 60px;
}

.sections-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 40px;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.movie-section {
  margin-bottom: 40px;
}

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

.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-header a {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.section-header a:hover {
  color: var(--accent-hover);
}

.movie-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.movie-row::-webkit-scrollbar {
  height: 4px;
}

.movie-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

/* ═══════════════ MOVIE CARD ═══════════════ */

.movie-card {
  flex: 0 0 185px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--card-bg);
}

.movie-card:hover {
  transform: translateY(-8px) scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-glow), 0 15px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 242, 254, 0.3);
}

.movie-card .card-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 13, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.card-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.card-quality {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}

.movie-card:hover .card-info {
  opacity: 1;
  transform: translateY(0);
}

.card-info .card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-info .card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
}

/* ═══════════════ SKELETONS ═══════════════ */

.skeleton-section {
  margin-bottom: 40px;
}

.skeleton {
  background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255, 255, 255, 0.05) 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

.skeleton-title {
  width: 200px;
  height: 24px;
  margin-bottom: 16px;
}

.skeleton-row {
  display: flex;
  gap: 14px;
  overflow: hidden;
}

.skeleton-card {
  flex: 0 0 185px;
  height: 278px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  color: transparent !important;
}

/* ═══════════════ MODAL ═══════════════ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 7, 13, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}

.modal-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-secondary) 0%, transparent 60%);
}

.modal-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
}

.modal-body {
  padding: 24px 32px 32px;
}

.modal-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-item {
  font-size: 14px;
  color: var(--text-secondary);
}

.detail-item strong {
  color: var(--text);
  margin-right: 8px;
}



/* ═══════════════ TOAST ═══════════════ */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  z-index: 3000;
  transition: transform 0.4s ease;
  backdrop-filter: blur(20px);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 32px 30px;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 360px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .search-box input {
    width: 180px;
  }

  .search-box input:focus {
    width: 220px;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .modal-hero {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px;
  }

  .search-box {
    display: none;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 16px 50px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-play, .btn-more {
    justify-content: center;
  }

  .sections-container {
    padding: 0 16px 40px;
  }

  .movie-card {
    flex: 0 0 150px;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .modal-hero {
    height: 220px;
  }

  .modal-title {
    font-size: 22px;
  }

  .modal-body {
    padding: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 55vh;
    min-height: 350px;
  }

  .movie-card {
    flex: 0 0 135px;
  }

  .card-info .card-title {
    font-size: 12px;
  }

  .modal-hero {
    height: 180px;
  }

  .modal-hero-content {
    padding: 20px;
  }
}

/* ═══════════════ ANIMATIONS ═══════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.static-container { max-width: 800px; margin: 0 auto; padding: 100px 32px 60px; }
.static-container h1 { font-size: 36px; margin-bottom: 24px; color: var(--text); }
.static-content { color: var(--text-secondary); line-height: 1.8; font-size: 16px; }
.static-content h2 { color: var(--text); margin-top: 32px; margin-bottom: 16px; font-size: 24px; }
.static-content p { margin-bottom: 16px; }
.static-content ul { margin-left: 24px; margin-bottom: 16px; }
.static-content a { color: var(--accent); text-decoration: none; }
.static-content a:hover { text-decoration: underline; }
