.cr-controls {
  max-width: 1100px; margin: 20px auto; padding: 0 16px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.cr-controls input[type="text"] {
  flex: 2; min-width: 180px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 9px 12px; color: var(--text); font-size: 14px; outline: none;
}
.cr-controls select {
  flex: 1; min-width: 130px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 9px 10px; color: var(--text); font-size: 14px; outline: none;
}
.cr-controls .cr-count { font-size: 12px; color: var(--text2); white-space: nowrap; margin-left: auto; }

.cr-style-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.cr-chip {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 14px; cursor: pointer; font-size: 12px; font-weight: 500;
  color: var(--text2); transition: all 0.15s;
}
.cr-chip:hover { border-color: var(--gold-dim); color: var(--text); }
.cr-chip.active { background: var(--bg4); border-color: var(--gold); color: var(--gold); }

.cr-grid {
  max-width: 1100px; margin: 0 auto; padding: 0 16px 60px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px;
}

.cr-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: border-color 0.15s, transform 0.15s;
}
.cr-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }

.cr-poster {
  position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--bg3);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cr-poster img { width: 100%; height: 100%; object-fit: cover; }
.cr-poster .cr-initials {
  font-size: 40px; font-weight: 700; color: var(--text2);
}
.cr-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
}
.cr-play svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }

.cr-info { padding: 12px 14px; }
.cr-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cr-meta { font-size: 11px; color: var(--text2); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.cr-badge {
  font-size: 10px; font-weight: 600; border-radius: 4px; padding: 2px 6px;
  border: 1px solid var(--border); color: var(--text2);
}
.cr-badge.alive { color: var(--green); border-color: var(--green); }
.cr-badge.dead { color: var(--red); border-color: var(--red); }

.cr-style-tabs { display: flex; gap: 4px; padding: 0 14px 12px; flex-wrap: wrap; }
.cr-style-tab {
  font-size: 10px; font-weight: 600; border-radius: 4px; padding: 3px 8px;
  border: 1px solid var(--border); color: var(--text2); cursor: pointer;
}
.cr-style-tab.active { border-color: var(--gold); color: var(--gold); background: var(--bg4); }

.cr-empty { text-align: center; color: var(--text2); padding: 60px 16px; font-size: 14px; }

/* Lightbox */
.cr-lightbox-bg {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 500; align-items: center; justify-content: center; padding: 20px;
}
.cr-lightbox-bg.open { display: flex; }
.cr-lightbox {
  max-width: 960px; width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.cr-lightbox video { width: 100%; display: block; background: #000; max-height: 80vh; }
.cr-lightbox-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.cr-lightbox-title { font-size: 15px; font-weight: 700; }
.cr-lightbox-close {
  background: none; border: 1px solid var(--border); border-radius: 6px;
  color: var(--text2); padding: 4px 10px; cursor: pointer; font-size: 13px;
}
.cr-lightbox-close:hover { color: var(--text); border-color: var(--gold-dim); }
