/* ============================================================
   transgirlslive.com — Complete Design System
   Dark theme, vanilla CSS, zero frameworks
   ============================================================ */

/* ── Google Fonts async load (handled in HTML <head>) ─────── */
/* font-family: 'Inter', system-ui, -apple-system, sans-serif */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg-primary:   #0d0d0d;
  --bg-card:      #1a1a1a;
  --bg-header:    #111111;
  --accent:       #e63946;
  --accent-hover: #c1121f;
  --text-primary: #f0f0f0;
  --text-muted:   #888888;
  --border:       #2a2a2a;
  --success:      #2ecc71;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       8px;
  --radius-sm:    4px;
  --shadow:       0 4px 24px rgba(0,0,0,0.6);
  --glow:         0 0 20px rgba(230,57,70,0.35);
  --transition:   0.2s ease;
  --header-h:     60px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0c 50%, #0d0d0d 100%) fixed;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; }

/* ── Age Gate Modal ─────────────────────────────────────────── */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#age-gate.hidden { display: none; }
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.age-gate-box h2 { font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--accent); }
.age-gate-box p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-enter {
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 0.75rem 2rem; font-size: 1rem; font-weight: 600;
  transition: background var(--transition);
}
.btn-enter:hover { background: var(--accent-hover); }
.btn-leave {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 2rem; font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.btn-leave:hover { background: var(--border); color: var(--text-primary); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex; align-items: center;
}
.header-inner {
  max-width: 1400px; width: 100%; margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--text-primary);
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--text-primary); background: var(--border);
}
/* Nav Pills */
.main-nav .nav-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.04); color: rgba(240,240,240,0.65);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 0.38rem 0.9rem; font-size: 0.84rem; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.main-nav .nav-pill:hover {
  color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.09);
}
.header-search-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.1rem; padding: 0.4rem;
  transition: color var(--transition);
}
.header-search-btn:hover { color: var(--accent); }
.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 0.4rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-nav {
  display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--bg-header); border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem; flex-direction: column; gap: 0.25rem;
  z-index: 499;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover { color: var(--text-primary); background: var(--border); }

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0c 50%, #0d0d0d 100%);
  padding: 4rem 1.25rem 3rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 1rem;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted); max-width: 600px;
  margin: 0 auto 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 0.85rem 2.25rem; font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.3px; transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem; font-size: 0.95rem; font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: var(--border); }

/* ── Section Layout ─────────────────────────────────────────── */
.section { max-width: 1400px; margin: 0 auto; padding: 2.5rem 1.25rem; }
.section-title {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-title .badge {
  background: var(--accent); color: #fff;
  font-size: 0.75rem; padding: 0.15rem 0.5rem;
  border-radius: 20px; font-weight: 600;
}
.live-count-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--success); font-weight: 600;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  animation: pulse-green 1.5s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── Gender Filter Tabs ─────────────────────────────────────── */
.gender-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.gender-tabs .tab-btn {
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 0.45rem 1.1rem; font-size: 0.88rem; font-weight: 500;
  transition: all var(--transition);
}
.gender-tabs .tab-btn:hover { color: var(--text-primary); border-color: #444; }
.gender-tabs .tab-btn.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ── Tag Filter Bar ─────────────────────────────────────────── */
.tag-filter-bar {
  display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem;
  margin-bottom: 1.25rem; scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.tag-filter-bar::-webkit-scrollbar { height: 4px; }
.tag-filter-bar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.tag-chip {
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 0.35rem 0.9rem; font-size: 0.82rem; font-weight: 500;
  white-space: nowrap; cursor: pointer;
  transition: all var(--transition); text-decoration: none; display: inline-block;
}
.tag-chip:hover { color: var(--text-primary); border-color: #555; background: #222; }
.tag-chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Cam Card Grid ──────────────────────────────────────────── */
.cam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.cam-grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.cam-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
#more-models-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Cam Card ───────────────────────────────────────────────── */
.cam-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.cam-card:hover {
  transform: scale(1.04);
  box-shadow: var(--glow);
  z-index: 2;
}
.card-link { display: block; color: inherit; text-decoration: none; }
.thumb-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: #111;
}
.thumb-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.cam-card:hover .thumb-wrap img { transform: scale(1.06); }
/* Provider badge — bottom-left corner of thumbnail */
.provider-badge {
  position: absolute; bottom: 8px; left: 8px;
  color: #fff; font-size: 0.62rem; font-weight: 700;
  padding: 0.18rem 0.45rem; border-radius: 3px;
  letter-spacing: 0.4px; text-transform: uppercase;
  opacity: 0.92; pointer-events: none;
}
.card-info { padding: 0.75rem 0.75rem 0.5rem; }
.model-name {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.tag-chips { display: flex; gap: 0.3rem; flex-wrap: wrap; padding: 0 0.75rem 0.6rem; }
.tag-chips .tag-chip-link {
  background: rgba(255,255,255,0.06); color: var(--text-muted);
  font-size: 0.7rem; padding: 0.15rem 0.45rem; border-radius: 3px;
  text-decoration: none; cursor: pointer;
}
.tag-chips .tag-chip-link:hover {
  background: var(--accent); color: #fff;
}
.tag-chips .tag-chip-link:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 1px;
}

.cta-btn {
  display: block; margin: 0.6rem 0.75rem 0.75rem;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 0.5rem; text-align: center;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.3px;
  transition: background var(--transition);
  text-decoration: none;
}
.cta-btn:hover { background: var(--accent-hover); }

/* ── Swipe Card Feed + Slider ───────────────────────────────── */
.slider-wrap {
  position: relative;
  padding: 0 2.5rem;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.75); border: 1px solid var(--border);
  color: #fff; width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }
.slider-btn:disabled { opacity: 0.25; cursor: default; }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.swipe-feed {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.swipe-feed::-webkit-scrollbar { display: none; }
.swipe-feed .cam-card {
  min-width: 200px; max-width: 220px; flex-shrink: 0;
  scroll-snap-align: start;
}
@media (max-width: 600px) {
  .slider-wrap { padding: 0 2rem; }
  .slider-prev { left: -4px; }
  .slider-next { right: -4px; }
}

/* ── Load More Button ───────────────────────────────────────── */
.load-more-wrap { text-align: center; padding: 2rem 0 1rem; }
.btn-load-more {
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 2.5rem; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-load-more:hover { background: var(--border); border-color: #555; }
.btn-load-more:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Sort Controls ──────────────────────────────────────────── */
.sort-controls {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.sort-controls label { color: var(--text-muted); font-size: 0.88rem; }
.sort-select {
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem; font-size: 0.88rem;
  appearance: none; cursor: pointer;
}

/* ── Search Page ────────────────────────────────────────────── */
.search-wrap {
  max-width: 640px; margin: 0 auto 2rem;
  display: flex; gap: 0.5rem;
}
.search-input {
  flex: 1;
  background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; font-size: 1rem; font-family: var(--font);
  transition: border-color var(--transition);
  outline: none;
}
.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-muted); }
.btn-search {
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem; font-size: 0.95rem; font-weight: 600;
  transition: background var(--transition);
}
.btn-search:hover { background: var(--accent-hover); }

/* ── Model Page ─────────────────────────────────────────────── */
.model-page { max-width: 1360px; margin: 0 auto; padding: 2rem 1.25rem; }
.model-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem; margin-bottom: 2.5rem;
}
.model-main-column {
  min-width: 0;
}
.stream-embed {
  background: #000;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 0;
  overflow: hidden;
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(230, 57, 70, 0.12) 100%);
}
.video-status {
  font-size: 2rem;
}
.offline-message {
  color: var(--text-muted);
  max-width: 320px;
}
@media (min-width: 992px) {
  .video-container {
    padding-bottom: 0;
    height: clamp(620px, 74vh, 880px);
  }
}
.model-tags-below-stream {
  margin-top: 1rem;
}
.model-sidebar h1 {
  font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem;
}
.model-status {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; font-size: 0.9rem; color: var(--success);
}
.model-viewers { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.btn-private {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: 0.85rem; font-size: 1rem; font-weight: 700;
  text-align: center; margin-bottom: 1rem;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-private:hover { background: var(--accent-hover); }

.model-info-card,
.model-tags-section {
  background: #1b2142;
  border: 1px solid #2a315e;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.model-info-card h3,
.model-tags-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.model-info-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #2a315e;
  font-size: 0.9rem;
}
.model-info-row:last-child { border-bottom: none; }
.model-info-label { color: var(--text-muted); }
.model-info-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}
.model-tags-subtitle {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.model-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.model-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(230, 57, 70, 0.16);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
}
.model-tag:hover {
  background: rgba(230, 57, 70, 0.24);
}

/* ── FAQ Section ────────────────────────────────────────────── */
.faq-section { margin: 2.5rem 0; }
.faq-section h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  background: none; border: none; width: 100%; text-align: left;
  padding: 1rem 0; font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.faq-q::after { content: '+'; color: var(--accent); font-size: 1.2rem; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Tags Hub Page ──────────────────────────────────────────── */
.tags-hub { max-width: 1200px; margin: 0 auto; padding: 2rem 1.25rem; }
.tag-group { margin-bottom: 2.5rem; }
.tag-group-title {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.tag-group-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-link {
  display: inline-block;
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 0.4rem 1rem; font-size: 0.85rem; font-weight: 500;
  transition: all var(--transition); text-decoration: none;
}
.tag-link:hover { color: var(--text-primary); border-color: #555; background: #222; }
.tag-link.hot { border-color: var(--accent); color: var(--accent); }
.tag-link.hot:hover { background: var(--accent); color: #fff; }

.platform-thumb-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.platform-thumb {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #141414;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.platform-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--glow);
}
.platform-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Category Cards ─────────────────────────────────────────── */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 2rem;
}
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 1rem;
  text-align: center; text-decoration: none; color: var(--text-primary);
  transition: all var(--transition);
}
.cat-card:hover { border-color: var(--accent); background: #1e1010; transform: translateY(-2px); }
.cat-card .cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.cat-card .cat-name { font-size: 0.95rem; font-weight: 600; }
.cat-card .cat-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Legal / Compliance Pages ───────────────────────────────── */
.legal-page {
  max-width: 800px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem;
}
.legal-page h1 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.legal-page .updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 0.5rem; color: var(--text-primary); }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 0.5rem; }
.legal-page ul { margin-left: 1.25rem; list-style: disc; }
.legal-page a { color: var(--accent); text-decoration: underline; }

/* ── DMCA Form ──────────────────────────────────────────────── */
.dmca-form { margin-top: 1.5rem; }
.dmca-form label { display: block; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.dmca-form input, .dmca-form textarea {
  width: 100%; background: var(--bg-card); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem; font-size: 0.93rem; font-family: var(--font);
  margin-bottom: 1rem; outline: none;
  transition: border-color var(--transition);
}
.dmca-form input:focus, .dmca-form textarea:focus { border-color: var(--accent); }
.dmca-form textarea { min-height: 120px; resize: vertical; }
.dmca-form .btn-primary { border: none; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: #444; }

/* ── Page Hero (sub-pages) ──────────────────────────────────── */
.page-hero {
  padding: 2.5rem 1.25rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #150a0b 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 0.95rem; }

/* ── Editorial / Tag Content ────────────────────────────────── */
.editorial { max-width: 800px; margin: 0 auto 2.5rem; padding: 0 1.25rem; }
.editorial h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.editorial p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 1rem; }

/* ── Loading / Skeleton ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.error-state {
  text-align: center; padding: 3rem 1rem; color: var(--text-muted);
}
.error-state .error-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--text-muted);
  grid-column: 1/-1;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-links a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-primary); }
.footer-disclaimer {
  font-size: 0.8rem; color: #555; line-height: 1.6; max-width: 900px;
  margin-bottom: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: #444; }

/* ── Utility Classes ────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cam-grid.grid-6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .cam-grid.grid-6 { grid-template-columns: repeat(3, 1fr); }
  .cam-grid.grid-4 { grid-template-columns: repeat(3, 1fr); }
  #more-models-grid { grid-template-columns: repeat(3, 1fr); }
  .model-hero { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .cam-grid.grid-6, .cam-grid.grid-4 { grid-template-columns: 1fr; }
  .cam-grid { grid-template-columns: 1fr; }
  .model-sidebar { order: 2; }
  .video-container { height: auto !important; aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  #more-models-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cam-grid, .cam-grid.grid-6, .cam-grid.grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.9rem; }
}
