/* =========================================
   CINESTREAM - Cinematic Dark Theme
   ========================================= */
:root {
  --bg-primary: #080b10;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-hover: #1a2235;
  --accent: #e50914;
  --accent-hover: #f40612;
  --accent-dim: rgba(229, 9, 20, 0.15);
  --gold: #f5c518;
  --text-primary: #e8eaf0;
  --text-secondary: #8b95a8;
  --text-muted: #4a5568;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 30px rgba(229,9,20,0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- AD SLOTS ---- */
.ad-slot { width: 100%; text-align: center; min-height: 10px; overflow: hidden; }
.ad-banner-top { background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--border); padding: 4px 0; }
.ad-between { padding: 12px 20px; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,11,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 60px;
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; height: 100%;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 2px;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-search {
  flex: 1; max-width: 500px;
  position: relative;
  display: flex; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: visible;
}
.nav-search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text-primary); padding: 8px 14px;
  font-family: var(--font-body); font-size: 14px;
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search button {
  padding: 8px 14px; font-size: 18px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-search button:hover { color: var(--accent); }

.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); z-index: 1001;
  max-height: 400px; overflow-y: auto;
  display: none;
  box-shadow: var(--shadow-card);
}
.search-dropdown.active { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border);
}
.search-result-item:hover { background: var(--bg-hover); }
.search-result-item img {
  width: 36px; height: 52px; object-fit: cover;
  border-radius: 3px; flex-shrink: 0;
  background: var(--bg-hover);
}
.search-result-item .info .title { font-size: 13px; font-weight: 500; }
.search-result-item .info .sub { font-size: 11px; color: var(--text-muted); }

.nav-links {
  display: flex; gap: 4px;
  flex-shrink: 0;
}
.nav-links a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-card); }
.nav-request-btn {
  margin-left: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff6a00);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 10px 24px rgba(229,9,20,0.22);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-request-btn:hover { transform: translateY(-1px); opacity: 0.96; }

.request-strip {
  max-width: 1400px;
  margin: 14px auto 0;
  padding: 0 20px;
}
.request-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(229,9,20,0.18), rgba(255,106,0,0.12));
  border: 1px solid rgba(229,9,20,0.28);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.request-strip-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  font-weight: 700;
}
.request-strip-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  margin-top: 2px;
}
.request-strip-copy {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 720px;
}
.request-strip-btn {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #ff3d3d, #ff8a00);
  box-shadow: 0 14px 30px rgba(255, 87, 34, 0.25);
  white-space: nowrap;
}
.request-strip-btn:hover { transform: translateY(-1px); }
.nav-request-btn {
  margin-left: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff6a00);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 10px 24px rgba(229,9,20,0.22);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-request-btn:hover { transform: translateY(-1px); opacity: 0.96; }

/* ---- HERO SLIDER ---- */
.hero {
  position: relative; height: 520px;
  overflow: hidden; background: var(--bg-secondary);
}
.hero-slider { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,11,16,0.95) 35%, rgba(8,11,16,0.4) 65%, rgba(8,11,16,0.1) 100%),
              linear-gradient(to top, rgba(8,11,16,0.9) 0%, transparent 40%);
}
.hero-slide-content {
  position: relative; z-index: 2;
  padding: 60px 60px 40px;
  max-width: 600px;
  display: flex; flex-direction: column; gap: 12px;
  height: 100%; justify-content: flex-end;
}
.hero-genre-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.hero-genre-tag {
  background: var(--accent-dim); border: 1px solid var(--accent);
  color: var(--accent); padding: 3px 10px;
  border-radius: 2px; font-size: 11px;
  font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95; letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-meta { display: flex; gap: 16px; align-items: center; font-size: 13px; color: var(--text-secondary); }
.hero-rating { color: var(--gold); font-weight: 600; }
.hero-desc {
  font-size: 14px; color: var(--text-secondary); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-actions { display: flex; gap: 12px; padding-bottom: 20px; }
.btn-watch {
  background: var(--accent); color: #fff;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(229,9,20,0.4);
}
.btn-watch:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-info {
  background: rgba(255,255,255,0.1); color: #fff;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 500; font-size: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.btn-info:hover { background: rgba(255,255,255,0.18); }

.hero-controls {
  position: absolute; bottom: 24px; right: 40px;
  display: flex; align-items: center; gap: 12px; z-index: 10;
}
.hero-prev, .hero-next {
  background: rgba(255,255,255,0.1); color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 22px; display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(10px);
}
.hero-prev:hover, .hero-next:hover { background: var(--accent); }
.hero-dots { display: flex; gap: 6px; }
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--accent); width: 20px; border-radius: 3px; }

/* ---- SECTIONS ---- */
.main-content { max-width: 1400px; margin: 0 auto; padding: 32px 20px; }
.section { margin-bottom: 40px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-title {
  font-family: var(--font-display); font-size: 28px;
  letter-spacing: 2px; color: var(--text-primary);
  position: relative;
}
.section-title::before {
  content: '';
  position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 70%; background: var(--accent);
  border-radius: 2px;
}
.see-all { font-size: 13px; color: var(--accent); font-weight: 500; transition: opacity var(--transition); }
.see-all:hover { opacity: 0.7; }

/* ---- MOVIE GRID ---- */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.movie-card {
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.movie-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.movie-card-poster {
  width: 100%; aspect-ratio: 2/3;
  object-fit: cover; background: var(--bg-hover);
  display: block;
}
.movie-card-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 2px;
  font-family: var(--font-mono); letter-spacing: 0.5px;
}
.movie-card-badge.hd { background: #1a6b3c; }
.movie-card-badge.cam { background: #8b6914; }
.movie-card-body { padding: 10px 10px 12px; }
.movie-card-title {
  font-size: 13px; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text-primary);
}
.movie-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.movie-card-year { font-size: 11px; color: var(--text-muted); }
.movie-card-rating { font-size: 11px; color: var(--gold); font-weight: 600; }

/* ---- GENRE PILLS ---- */
.genre-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.genre-pill {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 7px 16px;
  border-radius: 20px; font-size: 13px; cursor: pointer;
  transition: all var(--transition);
}
.genre-pill:hover, .genre-pill.active {
  background: var(--accent-dim); border-color: var(--accent);
  color: var(--accent);
}

/* ---- REQUEST MOVIE ---- */
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(14px);
}
.request-modal.open { display: flex; }
.request-modal-card {
  width: min(920px, 100%);
  background: linear-gradient(180deg, rgba(17,24,39,0.98), rgba(10,15,28,0.98));
  border: 1px solid var(--border-hover);
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
  padding: 24px;
}
.request-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.request-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.request-copy {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}
.request-form {
  display: grid;
  gap: 14px;
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.request-input,
.request-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.7);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
.request-textarea {
  resize: vertical;
  min-height: 110px;
}
.request-input::placeholder,
.request-textarea::placeholder {
  color: var(--text-muted);
}
.request-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.captcha-box {
  border: 1px solid var(--border);
  background: rgba(8, 15, 35, 0.62);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.captcha-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.captcha-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.request-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---- FILTERS ---- */
.filter-bar { display: flex; gap: 8px; }
.filter-bar select {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 6px 12px;
  border-radius: var(--radius); font-size: 13px;
  outline: none; cursor: pointer;
  transition: border-color var(--transition);
}
.filter-bar select:hover { border-color: var(--border-hover); }

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
.page-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 8px 14px;
  border-radius: var(--radius); font-size: 13px;
  transition: all var(--transition); cursor: pointer;
}
.page-btn:hover, .page-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.page-btn:disabled { opacity: 0.3; pointer-events: none; }

/* ---- WATCH PAGE ---- */
.watch-page { max-width: 1400px; margin: 0 auto; padding: 20px; }
.watch-container { display: flex; flex-direction: column; gap: 24px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

.player-section {}
.player-wrapper {
  background: #000; border-radius: var(--radius);
  overflow: hidden; position: relative;
}
.player-frame {
  width: 100%; aspect-ratio: 16/9;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.player-frame iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.player-loading { text-align: center; color: var(--text-muted); }
.player-loading p { margin-top: 12px; font-size: 14px; }
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--bg-card); border-top-color: var(--accent);
  margin: 0 auto; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.server-tabs {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; margin-top: 12px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.server-tabs-label { font-size: 13px; color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.tabs-list { display: flex; gap: 8px; flex-wrap: wrap; }
.server-tab {
  background: var(--bg-hover); border: 1px solid var(--border);
  color: var(--text-secondary); padding: 7px 16px;
  border-radius: var(--radius); font-size: 13px; cursor: pointer;
  transition: all var(--transition); display: flex; align-items: center; gap: 6px;
}
.server-tab:hover { border-color: var(--accent); color: var(--text-primary); }
.server-tab.active { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.server-tab .provider-icon { font-size: 14px; }

.download-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-top: 12px;
}
.download-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.download-links { display: flex; flex-wrap: wrap; gap: 8px; }
.download-btn {
  background: var(--bg-hover); border: 1px solid var(--border);
  color: var(--text-primary); padding: 8px 18px;
  border-radius: var(--radius); font-size: 13px; cursor: pointer;
  transition: all var(--transition); display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.download-btn:hover { background: rgba(245,197,24,0.1); border-color: var(--gold); color: var(--gold); }
.download-btn .quality { font-family: var(--font-mono); font-size: 11px; opacity: 0.7; }

/* ---- MOVIE INFO ---- */
.movie-info-section { position: relative; border-radius: var(--radius); overflow: hidden; }
.movie-detail-banner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 15%;
  filter: blur(3px) brightness(0.3);
}
.movie-detail-content {
  position: relative; z-index: 2;
  display: flex; gap: 24px; padding: 28px;
  background: linear-gradient(to right, rgba(8,11,16,0.8) 0%, rgba(8,11,16,0.4) 100%);
}
.movie-poster-wrap { flex-shrink: 0; }
.movie-poster-large {
  width: 160px; border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
  background: var(--bg-hover);
}
.movie-meta { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.movie-title-large {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 1px; line-height: 1;
}
.movie-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  padding: 3px 10px; border-radius: 3px;
  font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.5px;
}
.badge-quality { background: #1a6b3c; color: #4ade80; }
.badge-year { background: var(--bg-hover); color: var(--text-secondary); border: 1px solid var(--border); }
.badge-lang { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.badge-type { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(229,9,20,0.3); }

.movie-stats { display: flex; gap: 20px; font-size: 13px; }
.stat-item { display: flex; align-items: center; gap: 5px; color: var(--text-secondary); }
.stat-item .value { color: var(--text-primary); font-weight: 600; }
.stat-item.rating .value { color: var(--gold); }

.movie-description { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.movie-extra-info { font-size: 13px; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.extra-row span { color: var(--text-secondary); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 40px 20px 0;
  margin-top: 40px;
}
.footer-container {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.footer-links h4 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.footer-links a {
  display: block; font-size: 13px; color: var(--text-muted);
  margin-bottom: 6px; transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
  text-align: center;
  font-size: 12px; color: var(--text-muted);
  max-width: 1400px; margin: 0 auto;
}

/* ---- LOADING SKELETON ---- */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---- POPUP AD ---- */
.ad-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.ad-popup-inner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  max-width: 600px; width: 90%; position: relative;
}
.ad-popup-close {
  position: absolute; top: 10px; right: 14px;
  font-size: 22px; color: var(--text-muted); cursor: pointer;
}
.ad-popup-close:hover { color: var(--accent); }

/* ---- TOAST ---- */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9998;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 12px 20px; border-radius: var(--radius);
  font-size: 13px; animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-card);
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { height: 380px; }
  .hero-slide-content { padding: 30px 24px; }
  .hero-title { font-size: 32px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .movie-detail-content { flex-direction: column; }
  .movie-poster-large { width: 120px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .filter-bar { flex-wrap: wrap; }
  .hero { height: 320px; }
  .footer-container { grid-template-columns: 1fr; gap: 24px; }
  .section-title { font-size: 22px; }
  .hero-controls { right: 16px; bottom: 12px; }
  .request-grid { grid-template-columns: 1fr; }
  .request-actions { justify-content: stretch; }
  .request-actions .btn { width: 100%; justify-content: center; }
  .request-strip { padding: 0 12px; }
  .request-strip-inner { flex-direction: column; align-items: stretch; }
  .request-strip-btn { width: 100%; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
  .nav-request-btn { margin-left: 0; width: 100%; }
  .request-modal-card { padding: 18px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
