/* ═══ LightsCameraKitchen — Cinematic Streaming Theme ═══ */
:root {
  /* Landing page — dark cinematic */
  --cinema-bg: #0a0a0f;
  --cinema-surface: #12121a;
  --cinema-card: #1a1a25;
  --cinema-border: rgba(255,255,255,0.06);
  --cinema-text: #f0f0f5;
  --cinema-text-dim: #8a8a9a;
  --cinema-text-muted: #55556a;
  --cinema-red: #2563eb;
  --cinema-red-hover: #1d4ed8;
  --cinema-amber: #f59e0b;
  --cinema-amber-glow: rgba(245,158,11,0.15);

  /* Admin — dark cinematic */
  --bg-base: #0d0d14;
  --bg-surface: #13131d;
  --bg-elevated: #1a1a28;
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #55556a;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --accent-yellow: #eab308;
  --accent-yellow-hover: #ca8a04;
  --accent-green: #16a34a;
  --accent-green-hover: #15803d;
  --success: #16a34a;
  --danger: #dc2626;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cinema-bg);
  color: var(--cinema-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ Typography ═══ */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
h1 { font-size: clamp(3.5rem, 10vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p { color: var(--cinema-text-dim); }

a { color: var(--cinema-text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cinema-red); }

/* ═══ Utility ═══ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  border: none; border-radius: 6px;
  cursor: pointer; transition: all 0.25s ease;
  text-decoration: none; white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-red {
  background: var(--cinema-red); color: #fff;
  box-shadow: 0 0 20px rgba(37,99,235,0.3), 0 4px 15px rgba(0,0,0,0.4);
}
.btn-red:hover {
  background: var(--cinema-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(37,99,235,0.5), 0 8px 25px rgba(0,0,0,0.5);
}
.btn-ghost {
  background: transparent; color: var(--cinema-text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-yellow { background: var(--accent-yellow); color: #000; box-shadow: 0 2px 8px rgba(234,179,8,0.25); }
.btn-yellow:hover { background: var(--accent-yellow-hover); transform: translateY(-2px); }
.btn-blue { background: var(--accent-blue); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.btn-blue:hover { background: var(--accent-blue-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: rgba(37,99,235,0.08); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* ═══ Navigation ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--cinema-border);
  transition: all 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo {
  font-size: 0.85rem; font-weight: 800; color: var(--cinema-text);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-logo span { color: var(--cinema-amber); }
.nav-cta { display: flex; gap: 0.75rem; }

/* ═══ Hero — Cinematic Full Bleed ═══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--cinema-bg);
  position: relative; overflow: hidden;
  padding: 8rem 0 6rem;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, var(--cinema-bg) 100%);
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, rgba(245,158,11,0.06) 40%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cinema-amber);
  border: 1px solid rgba(245,158,11,0.4);
  padding: 0.4rem 1.25rem;
  border-radius: 3px;
  margin-bottom: 2rem;
}
.hero-title { color: #fff; margin-bottom: 1.5rem; }
.hero-title span { color: var(--cinema-amber); }
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--cinema-text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--cinema-text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 3rem;
}
.meta-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cinema-text-muted);
}
.meta-tag .icon { width: 16px; height: 16px; opacity: 0.8; }
.meta-divider { color: rgba(255,255,255,0.1); font-size: 0.75rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--cinema-text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cinema-text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ═══ Teaser Strip ═══ */
.teaser-strip {
  background: var(--cinema-surface);
  padding: 6rem 0;
  position: relative;
  min-height: auto;
  display: block;
  border-top: 1px solid var(--cinema-border);
  border-bottom: 1px solid var(--cinema-border);
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.teaser-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--cinema-border);
  border-radius: 8px;
  background: var(--cinema-card);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.teaser-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cinema-red), var(--cinema-amber));
  opacity: 0;
  transition: opacity 0.4s;
}
.teaser-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); }
.teaser-card:hover::before { opacity: 1; }
.teaser-number {
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
.teaser-card h3 {
  color: var(--cinema-text);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.teaser-card p {
  color: var(--cinema-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
/* Teaser card SVG icons */
.teaser-icon {
  width: 36px; height: 36px;
  margin-bottom: 1rem;
}
.teaser-icon svg { width: 100%; height: 100%; }

/* ═══ Signup Section ═══ */
.signup-section {
  background: var(--cinema-bg);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: block;
}
.signup-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.signup-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cinema-amber);
  margin-bottom: 1rem;
}
.signup-section h2 {
  color: var(--cinema-text);
  margin-bottom: 1rem;
}
.signup-section h2 span { color: var(--cinema-amber); }
.signup-desc {
  max-width: 440px;
  margin: 0 auto 2.5rem;
  color: var(--cinema-text-muted);
  font-size: 1rem;
}
.signup-form {
  display: flex; gap: 0.75rem;
  max-width: 480px; margin: 0 auto;
}
.signup-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: var(--cinema-card);
  border: 1px solid var(--cinema-border);
  border-radius: 6px;
  color: var(--cinema-text);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--cinema-red); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.signup-form input::placeholder { color: var(--cinema-text-muted); }
.signup-msg { margin-top: 1rem; font-size: 0.9rem; min-height: 1.5em; }
.signup-msg.success { color: #22c55e; }
.signup-msg.error { color: var(--cinema-red); }

/* ═══ Scroll Animations ═══ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══ Footer ═══ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--cinema-border);
  text-align: center;
  background: var(--cinema-bg);
}
.footer-logo {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--cinema-text-muted);
  margin-bottom: 0.5rem;
}
.footer p { font-size: 0.8rem; color: var(--cinema-text-muted); }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-top: 0.75rem; }
.footer-links a { font-size: 0.75rem; color: var(--cinema-text-muted); }
.footer-links a:hover { color: var(--cinema-text); }

/* ═══ Responsive — Landing ═══ */
@media (max-width: 768px) {
  .hero { padding: 6rem 0 4rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-meta { flex-direction: column; gap: 0.5rem; }
  .meta-divider { display: none; }
  .teaser-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .nav-logo { font-size: 0.7rem; }
}


/* ═══ Admin / Login Pages ═══ */
.page-center {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--cinema-bg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.page-center::before {
  content: '';
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, rgba(234,179,8,0.05) 50%, transparent 70%);
  pointer-events: none;
}
.auth-card {
  background: var(--cinema-surface);
  border: 1px solid var(--cinema-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}
.auth-card h1 { font-size: 1.75rem; margin-bottom: 0.5rem; color: var(--cinema-text); }
.auth-card p { margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--cinema-text-dim); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--cinema-text-dim); margin-bottom: 0.5rem; }
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cinema-card);
  border: 1px solid var(--cinema-border);
  border-radius: var(--radius-sm);
  color: var(--cinema-text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.form-msg { margin-top: 1rem; font-size: 0.85rem; min-height: 1.5em; }

/* ═══ Admin Dashboard ═══ */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--cinema-surface);
  border-right: 1px solid var(--cinema-border);
  padding: 1.5rem;
  display: flex; flex-direction: column;
}
.admin-sidebar .logo { font-size: 1.1rem; font-weight: 700; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; }
.admin-sidebar .logo span { color: var(--cinema-amber); }
.admin-nav { list-style: none; flex: 1; }
.admin-nav li { margin-bottom: 0.25rem; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s;
}
.admin-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav a.active { background: rgba(37,99,235,0.25); color: #fff; border-left: 3px solid var(--accent-blue); }
.admin-main { flex: 1; padding: 2rem; overflow-y: auto; background: var(--bg-base); color: var(--text-primary); }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.admin-header h1 { font-size: 1.5rem; color: var(--text-primary); }

.stat-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.stat-card .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card .value { font-size: 2rem; font-weight: 700; margin-top: 0.25rem; }
.stat-card .value.yellow { color: var(--accent-yellow); }
.stat-card .value.blue { color: var(--accent-blue); }
.stat-card-blue { border-left: 4px solid var(--accent-blue); }
.stat-card-yellow { border-left: 4px solid var(--accent-yellow); }
.stat-card-green { border-left: 4px solid var(--accent-green); }

/* ═══ Geo Chart ═══ */
.geo-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.geo-list { display: flex; flex-direction: column; gap: 0.5rem; }
.geo-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.4rem 0;
}
.geo-flag { font-size: 1.25rem; width: 2rem; text-align: center; }
.geo-country { font-size: 0.85rem; font-weight: 600; width: 3rem; color: var(--text-primary); }
.geo-bar-wrap {
  flex: 1; height: 8px;
  background: var(--bg-elevated);
  border-radius: 4px;
  overflow: hidden;
}
.geo-bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
  transition: width 0.4s ease;
  min-width: 4px;
}
.geo-bar.geo-bar-yellow {
  background: linear-gradient(90deg, var(--accent-yellow), #fbbf24);
}
.geo-count { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); width: 3.5rem; text-align: right; }

/* ═══ Add Admin Card ═══ */
.add-admin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Admin Table */
.table-wrap { overflow-x: auto; }
.table-wrap table { background: var(--bg-surface); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { border-bottom: 2px solid var(--border); background: var(--bg-elevated); }
th { text-align: left; padding: 0.75rem 1rem; color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-primary); }
tr:hover { background: rgba(255,255,255,0.03); }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-admin { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.badge-approved { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-pending { background: rgba(234,179,8,0.15); color: #eab308; }
.badge-denied { background: rgba(239,68,68,0.15); color: var(--danger); }

/* ═══ Countdown / Coming Soon ═══ */
.countdown {
  display: flex; gap: 1.5rem; justify-content: center; margin: 2rem 0;
}
.countdown-item { text-align: center; }
.countdown-value {
  font-size: 3rem; font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

/* ═══ SEO & LLM Section ═══ */
.seo-guide-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-blue);
}
.seo-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.seo-file-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.seo-file-card p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.5; }
.seo-file-card strong { font-size: 0.9rem; }
.seo-file-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.seo-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.seo-recs { display: flex; flex-direction: column; gap: 0.75rem; }
.seo-rec-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--border);
}
.seo-rec-high { border-left-color: var(--danger); }
.seo-rec-medium { border-left-color: var(--accent-yellow); }
.seo-rec-low { border-left-color: var(--accent-green); }
.seo-rec-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.seo-rec-icon { font-size: 1.1rem; }
.seo-rec-title { font-weight: 600; font-size: 0.95rem; }
.seo-rec-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: auto;
}
.badge-high { background: rgba(220,38,38,0.12); color: var(--danger); }
.badge-medium { background: rgba(234,179,8,0.15); color: var(--accent-yellow); }
.badge-low { background: rgba(22,163,74,0.12); color: var(--accent-green); }
.seo-rec-detail { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

.seo-code-preview {
  background: #1a1a2e;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  overflow-x: auto;
}
.seo-code-preview pre {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}

.seo-checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.seo-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.seo-check-item a { font-size: 0.85rem; }
.seo-check-pass span { flex-shrink: 0; }
.seo-check-warn span { flex-shrink: 0; }

/* ═══ Responsive — Admin ═══ */
@media (max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-main { padding: 1rem; }
  .admin-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stat-cards { grid-template-columns: 1fr; }
}

/* ═══ Scrollbar ═══ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cinema-bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ═══ Loading Spinner ═══ */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
