/* ─── FEED ───────────────────────────────────────── */

.fa-feed {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.fa-empty {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ─── CARD ───────────────────────────────────────── */

.fa-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fa-card-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fa-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.fa-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── PLAYER ─────────────────────────────────────── */

.fa-player {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  -webkit-user-select: none;
  user-select: none;
}

.fa-video {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: #000;
}

/* ─── BIG PLAY OVERLAY ───────────────────────────── */

.fa-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: opacity 0.2s;
  cursor: pointer;
}

.fa-overlay.hidden { opacity: 0; pointer-events: none; }

.fa-play-btn {
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.fa-play-btn:hover {
  background: rgba(0,0,0,0.75);
  border-color: var(--accent);
  transform: scale(1.06);
}

.fa-play-icon {
  font-size: 20px;
  color: #fff;
  margin-left: 3px;
  line-height: 1;
}

/* ─── CONTROLS BAR ───────────────────────────────── */

.fa-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.fa-ctrl-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.fa-ctrl-btn:hover { color: #fff; }

/* ─── PROGRESS ───────────────────────────────────── */

.fa-progress-wrap {
  flex: 1;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
}

.fa-progress-bg {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.fa-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}

.fa-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  left: 0%;
  transition: transform 0.15s;
  pointer-events: none;
}

.fa-progress-wrap:hover .fa-progress-thumb { transform: translate(-50%, -50%) scale(1); }

/* ─── TIME ───────────────────────────────────────── */

.fa-time {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── MUTED INDICATOR ────────────────────────────── */

.fa-btn-mute.muted { color: rgba(255,255,255,0.3); }

/* ─── SOURCE ─────────────────────────────────────── */

.fa-source {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fa-source-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  flex-shrink: 0;
}

.fa-source-link {
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s;
}

.fa-source-link:hover { color: var(--accent); }

/* ─── DIVIDER BETWEEN CARDS ──────────────────────── */

.fa-card + .fa-card {
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
}
