/* ============================================================
   No Noise Cinema — U-NEXT Style
   ============================================================ */

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

:root {
  --bg: #141414;
  --bg-header: #000;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --bg-surface: #1e1e1e;
  --bg-input: #2a2a2a;
  --text: #fff;
  --text-dim: #999;
  --text-muted: #666;
  --accent: #0070f3;
  --accent-hover: #005cc5;
  --danger: #e50914;
  --success: #46d369;
  --border: #282828;
  --overlay: rgba(0,0,0,0.7);
  --header-h: 68px;
  --max-w: 1340px;
  --px: 60px;
  --radius: 4px;
  --ease: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }

/* ============================================================
   Header — U-NEXT style: solid black, clean nav
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg-header);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--px);
}

.header-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #fff;
}

.nav-submit {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
}

.nav-submit:hover {
  background: var(--accent-hover) !important;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all var(--ease);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dim);
}

.nav-mobile a:hover { color: #fff; }

.nav-mobile .nav-submit {
  margin-top: 8px;
  padding: 10px 32px !important;
  font-size: 0.95rem !important;
}

/* ============================================================
   Main
   ============================================================ */
.main-content {
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ============================================================
   Hero — U-NEXT full-width cinematic banner
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 0%, transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 25%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0;
  z-index: 2;
  padding: 0 var(--px) 72px;
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--ease);
}

.hero-btn:hover {
  background: #e0e0e0;
  color: #000;
}

.hero-btn svg {
  width: 16px;
  height: 16px;
}

/* Fallback hero */
.hero-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, var(--bg) 70%);
}

.hero-fallback .hero-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.hero-fallback .hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-fallback .hero-desc {
  max-width: 440px;
}

/* ============================================================
   Section — Content row (U-NEXT style)
   ============================================================ */
.section {
  padding: 12px var(--px) 36px;
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   Film Rail — Horizontal scroll row (U-NEXT style)
   ============================================================ */
.film-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.film-rail::-webkit-scrollbar { display: none; }

/* ============================================================
   Film Grid
   ============================================================ */
.film-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* ============================================================
   Film Card — U-NEXT style: 16:9 landscape, minimal
   ============================================================ */
.film-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  background: var(--bg-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.film-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 2;
}

.film-card-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.film-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.film-card:hover .film-card-poster img {
  opacity: 0.7;
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.film-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  color: #000;
  transform: scale(0.8);
  transition: transform 0.25s ease;
}

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

.film-card-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.film-card-info {
  padding: 10px 12px;
}

.film-card-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.film-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Rail card sizing */
.film-rail .film-card {
  min-width: 240px;
  max-width: 280px;
  flex-shrink: 0;
}

/* ============================================================
   Film Detail / Theater Page
   ============================================================ */
.theater {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px var(--px) 60px;
}

.theater-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.theater-player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.theater-info {
  padding: 28px 0 0;
}

.theater-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.theater-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.theater-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.theater-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.theater-director {
  color: var(--accent);
  font-weight: 500;
}

.theater-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 700px;
}

.theater-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* ============================================================
   About Page
   ============================================================ */
.about-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px var(--px) 100px;
}

.about-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-page .about-tagline {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 40px;
}

.about-page p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.about-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

.about-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* ============================================================
   Login Page
   ============================================================ */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: 40px;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-surface);
  border-radius: 6px;
  padding: 44px 36px;
}

.login-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.login-card .login-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--ease);
}

.login-btn-google:hover {
  background: #eee;
  color: #333;
}

.login-btn-google svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   Forms
   ============================================================ */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color var(--ease);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.form-char-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
}

.form-char-count.near-limit { color: #f0a500; }
.form-char-count.at-limit { color: var(--danger); }

/* Thumbnail upload */
.thumbnail-upload {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.thumbnail-upload:hover {
  border-color: var(--accent);
}

.thumbnail-upload.has-image {
  padding: 0;
  border-style: solid;
  border-color: transparent;
}

.thumbnail-upload-icon {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.thumbnail-upload-text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.thumbnail-upload-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.thumbnail-preview {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.thumbnail-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--ease);
}

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

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

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--bg-input);
  color: var(--text);
}

.btn-secondary:hover {
  background: #333;
  color: var(--text);
}

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

.btn-danger:hover {
  background: #c40812;
  color: #fff;
}

.btn-full { width: 100%; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }

/* ============================================================
   My Films
   ============================================================ */
.myfilms-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--px);
}

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

.myfilms-header h1 {
  font-size: 1.4rem;
  font-weight: 700;
}

.myfilms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.myfilm-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--ease);
}

.myfilm-card:hover {
  background: var(--bg-card-hover);
}

.myfilm-card-poster {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

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

.myfilm-card-body {
  padding: 14px 16px;
}

.myfilm-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.myfilm-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.myfilm-card-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.status-published {
  background: rgba(70,211,105,0.12);
  color: var(--success);
}

.status-draft {
  background: rgba(153,153,153,0.12);
  color: var(--text-dim);
}

.myfilm-card-actions {
  display: flex;
  gap: 8px;
}

/* ============================================================
   Submit Page
   ============================================================ */
.submit-page {
  max-width: 580px;
  margin: 0 auto;
  padding: 36px var(--px);
}

.submit-page h1 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.submit-page .submit-subtitle {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 36px;
}

.submit-success {
  text-align: center;
  padding: 52px 0;
}

.submit-success svg {
  width: 56px;
  height: 56px;
  color: var(--success);
  margin-bottom: 16px;
}

.submit-success h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.submit-success p {
  color: var(--text-dim);
  margin-bottom: 28px;
}

/* ============================================================
   Empty State
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 64px 32px;
}

.empty-state svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.empty-state p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ============================================================
   Spinner
   ============================================================ */
.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 36px auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Toast
   ============================================================ */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: toastIn 0.25s ease-out;
  max-width: 340px;
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--px);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 6px;
}

/* ============================================================
   Filters
   ============================================================ */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0 var(--px);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-select {
  background: var(--bg-input);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 7px 12px;
  color: var(--text);
  font-size: 0.82rem;
  cursor: pointer;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ============================================================
   Modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-surface);
  border-radius: 6px;
  padding: 28px;
  max-width: 400px;
  width: 90%;
  transform: scale(0.96);
  transition: transform var(--ease);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ============================================================
   Animations
   ============================================================ */
.fade-in {
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .film-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  :root { --px: 40px; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 52px;
    --px: 20px;
  }

  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    height: 65vh;
    min-height: 380px;
  }

  .hero-content {
    padding: 0 var(--px) 48px;
  }

  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.85rem; }

  .film-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .section { padding: 8px var(--px) 28px; }
  .section-title { font-size: 0.95rem; }

  .film-rail .film-card {
    min-width: 160px;
    max-width: 180px;
  }

  .theater { padding: 16px var(--px) 40px; }
  .theater-title { font-size: 1.4rem; }

  .login-card { padding: 32px 24px; }
  .about-page { padding: 48px var(--px) 72px; }
  .about-page h1 { font-size: 1.6rem; }

  .submit-page,
  .myfilms-page { padding: 24px var(--px); }

  .myfilms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .myfilms-grid { grid-template-columns: 1fr; }

  .footer { padding: 24px var(--px); }
}

@media (max-width: 480px) {
  .hero { height: 55vh; min-height: 320px; }
  .hero-title { font-size: 1.5rem; }
  .hero-btn { padding: 10px 24px; font-size: 0.82rem; }
  .film-card-info { padding: 8px 10px; }
  .film-card-title { font-size: 0.8rem; }
}

@media (min-width: 1400px) {
  .film-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1800px) {
  .film-grid { grid-template-columns: repeat(7, 1fr); }
}

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
