/* Flixawy Modern Light Platform UI */
@charset "UTF-8";

:root {
  --flix-bg: #f8fafc;
  --flix-card: #ffffff;
  --flix-card-hover: #ffffff;
  --flix-border: #e2e8f0;
  --flix-gold: #f59e0b;
  --flix-cyan: #0284c7;
  --flix-text: #0f172a;
  --flix-text-muted: #64748b;
}

body {
  background-color: var(--flix-bg) !important;
  color: var(--flix-text) !important;
}

/* Horizontal Scroll Rows with Hidden Scrollbar */
.flix-scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1.25rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.flix-scroll-row::-webkit-scrollbar {
  display: none;
}

/* Horizontal 16:9 Streaming Cards */
.flix-stream-card {
  flex: 0 0 240px;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .flix-stream-card {
    flex: 0 0 280px;
  }
}
.flix-stream-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

/* Top 10 Ranked Cards with White Outline Numbers */
.flix-top10-card {
  flex: 0 0 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.flix-rank-number {
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.75;
  color: #f8fafc;
  -webkit-text-stroke: 3px #cbd5e1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  margin-left: -1.25rem;
  user-select: none;
  font-family: 'Arial Black', sans-serif;
}
.flix-top10-card:hover .flix-rank-number {
  -webkit-text-stroke-color: var(--flix-gold);
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}