/* Fútbol Libre TV — player skin (dark 16:9 frame + clean control bar + Now-Playing bar) */
.fltv-player {
  --fl-accent: #19c37d;
  --fl-panel:  #111821;
  --fl-line:   rgba(255,255,255,.1);
  --fl-text:   #eef5f8;
  border: 1px solid var(--fl-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--fl-panel);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.fltv-frame { position: relative; aspect-ratio: 16/9; background: #000; }
.fltv-frame video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; background: #000; }

/* opaque loading cover (hides any frozen frame until the video really plays) */
.fltv-spin {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center; color: #cfe9dd; background: #0b0f14;
  font-weight: 600; font-size: 14px; pointer-events: none; text-align: center; padding: 20px;
}
.fltv-spin .sp {
  width: 38px; height: 38px; border: 3px solid rgba(25,195,125,.22);
  border-top-color: var(--fl-accent); border-radius: 50%; animation: fltvspin 1s linear infinite;
}
@keyframes fltvspin { to { transform: rotate(360deg); } }
@keyframes flpulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* clean control bar (over the video; no native controls, no giant timeline) */
.fltv-frame .fc-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; gap: 8px; padding: 8px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.fc-btn { background: none; border: 0; color: #fff; cursor: pointer; padding: 5px; display: inline-flex; border-radius: 6px; line-height: 0; }
.fc-btn:hover { background: rgba(255,255,255,.16); }
.fc-btn svg { width: 22px; height: 22px; fill: #fff; display: block; }
.fc-live { display: inline-flex; align-items: center; gap: 6px; color: #fff; margin-left: 2px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d5e; animation: flpulse 1.1s ease-in-out infinite; }
.fc-sp { flex: 1; }

/* Now-Playing bar (below the video) */
.fltv-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 16px; background: var(--fl-panel); flex-wrap: wrap;
}
.fltv-title { color: var(--fl-text); font-size: 16px; font-weight: 800; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fltv-servers { display: flex; gap: 8px; flex-wrap: wrap; }
.fltv-srv {
  min-height: 36px; padding: 0 14px; border: 1px solid rgba(25,195,125,.35);
  border-radius: 8px; background: rgba(25,195,125,.11); color: var(--fl-text);
  font-weight: 700; font-size: 13px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; transition: background .15s, color .15s;
}
.fltv-srv:hover { background: rgba(25,195,125,.2); }
.fltv-srv.active { background: var(--fl-accent); color: #04140d; border-color: var(--fl-accent); }
.fltv-srv .d { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
