:root {
  --bg-page: #07090d;
  --bg-panel: rgba(12, 15, 20, 0.9);
  --bg-panel-strong: #0c1016;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --txt-main: #f2f5f8;
  --txt-subtle: #b0bac6;
  --txt-muted: #7f8a98;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #8ad6a1;
  --accent-2: #8fbcff;
  --accent-warn: #f2cf74;
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-main: 0 20px 54px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--txt-main);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 10% -10%, rgba(143, 188, 255, 0.12), transparent 58%),
    radial-gradient(900px 520px at 95% 0%, rgba(138, 214, 161, 0.08), transparent 52%),
    linear-gradient(180deg, #07090d 0%, #050609 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 84%);
}

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 12, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: center;
}

.nav-brand h1 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  letter-spacing: -0.03em;
}

.brand-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.08em;
  text-transform: lowercase;
  font-weight: 900;
  background: linear-gradient(135deg, #eef8f2 0%, #8ad6a1 42%, #8fbcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 30px rgba(143, 188, 255, 0.12);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.92fr);
  grid-template-areas:
    "hero schedule"
    "tabs schedule";
  gap: 18px;
  padding: 18px;
}

.hero-panel,
.schedule-panel,
.tabs-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-main);
  overflow: hidden;
}

.hero-panel {
  grid-area: hero;
  padding: 18px;
}

.hero-top {
  margin-bottom: 16px;
}

.hero-copy {
  border-radius: var(--radius-lg);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(138, 214, 161, 0.05), rgba(143, 188, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.player-frame {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #04070c;
  overflow: hidden;
}

.player-host {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020406;
  overflow: hidden;
}

.player-host .player-video,
.player-host .player-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020406;
}

.player-host .player-video {
  object-fit: contain;
}

.hls-shell {
  position: relative;
  width: 100%;
  height: 100%;
  background: #020406;
}

.hls-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.hls-big-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(138, 214, 161, 0.2);
  border: 2px solid rgba(138, 214, 161, 0.4);
  color: #8ad6a1;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hls-big-play:hover {
  background: rgba(138, 214, 161, 0.3);
  transform: scale(1.1);
}

.hls-big-play svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.hls-buffering {
  position: absolute;
  width: 60px;
  height: 60px;
  color: #8ad6a1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hls-buffering.is-active {
  opacity: 1;
}

.hls-buffering svg {
  width: 100%;
  height: 100%;
}

.hls-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hls-shell:hover .hls-controls,
.hls-shell.is-playing .hls-controls,
.hls-shell.is-touch .hls-controls {
  opacity: 1;
  pointer-events: auto;
}

.hls-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  padding: 0;
}

.hls-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hls-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hls-btn .icon-pause,
.hls-btn .icon-fs-exit,
.hls-btn .icon-muted,
.hls-btn .icon-volume-low {
  display: none;
}

.hls-btn.is-playing .icon-play {
  display: none;
}

.hls-btn.is-playing .icon-pause {
  display: block;
}

.hls-btn.is-muted .icon-volume-high,
.hls-btn.is-muted .icon-volume-low {
  display: none;
}

.hls-btn.is-muted .icon-muted {
  display: block;
}

.hls-btn.is-muted .icon-volume-low {
  display: none;
}

.hls-btn.is-low-volume .icon-volume-high {
  display: none;
}

.hls-btn.is-low-volume .icon-volume-low {
  display: block;
}

.hls-btn.is-fullscreen .icon-fs-enter {
  display: none;
}

.hls-btn.is-fullscreen .icon-fs-exit {
  display: block;
}

.hls-rewind,
.hls-forward {
  width: 32px;
  height: 32px;
}

.hls-rewind svg,
.hls-forward svg {
  width: 16px;
  height: 16px;
}

.hls-progress-container {
  flex: 1;
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}

.hls-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.hls-progress-bar {
  position: absolute;
  inset: 4px 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.hls-progress-buffer {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  width: 0%;
  transition: width 0.2s ease;
}

.hls-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #8ad6a1;
  width: 0%;
  transition: width 0.1s ease;
}

.hls-time {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  min-width: 40px;
}

.hls-time-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.hls-volume-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hls-volume {
  width: 60px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  outline: none;
}

.hls-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8ad6a1;
  cursor: pointer;
}

.hls-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8ad6a1;
  cursor: pointer;
  border: none;
}

.hls-settings-menu {
  position: absolute;
  bottom: 60px;
  right: 16px;
  background: rgba(15, 20, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 20;
}

.hls-settings-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hls-settings-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hls-settings-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hls-settings-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hls-settings-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hls-settings-option {
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.hls-settings-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hls-settings-option.is-active {
  background: rgba(138, 214, 161, 0.2);
  border-color: rgba(138, 214, 161, 0.3);
  color: #8ad6a1;
}

.match-headline {
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt-main);
  padding: 8px 12px;
  font-size: 0.82rem;
}

.chip-live {
  background: rgba(138, 214, 161, 0.1);
  border-color: rgba(138, 214, 161, 0.22);
  color: #e6f5eb;
}

.scoreboard {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 180% at 50% -20%, rgba(138, 214, 161, 0.08), transparent 55%),
    rgba(6, 10, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-side {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.team-side img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-name {
  font-weight: 700;
  line-height: 1.15;
}

.team-label {
  display: block;
  color: var(--txt-muted);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.score-center {
  text-align: center;
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.score-detail {
  margin-top: 8px;
  color: var(--txt-subtle);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

.completed-match {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 180% at 50% -20%, rgba(138, 214, 161, 0.08), transparent 55%),
    rgba(6, 10, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.completed-match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.completed-team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.completed-flag {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.completed-team-name {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.completed-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.completed-score {
  font-weight: 800;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--txt-highlight);
}

.completed-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--txt-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.completed-meta {
  margin-top: 10px;
  color: var(--txt-subtle);
  font-size: 0.8rem;
  font-weight: 500;
}

.schedule-panel {
  grid-area: schedule;
  padding: 16px;
  max-height: calc(100vh - 104px);
  overflow: auto;
}

.panel-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--txt-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.71rem;
}

.panel-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.panel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(110, 243, 165, 0.12);
  border: 1px solid rgba(110, 243, 165, 0.18);
  color: #dbfbea;
  font-weight: 700;
}

.league-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.league-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt-subtle);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.league-filter.is-active {
  color: #08110c;
  border-color: rgba(138, 214, 161, 0.26);
  background: linear-gradient(135deg, #8ad6a1, #8fbcff);
}

.league-filter:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.06);
}

.match-list {
  display: grid;
  gap: 12px;
}

.match-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(6, 10, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.match-item:hover,
.match-item.is-selected {
  transform: translateY(-2px);
  border-color: rgba(138, 214, 161, 0.24);
  background:
    linear-gradient(180deg, rgba(138, 214, 161, 0.06), rgba(143, 188, 255, 0.03)),
    rgba(6, 10, 16, 0.92);
}

.match-item.is-upcoming {
  opacity: 0.7;
}

.match-item.is-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.match-item.is-disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(6, 10, 16, 0.84);
}

.no-live-active .match-item {
  pointer-events: none;
}

.match-item-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.match-item-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.match-item-subtitle {
  margin: 4px 0 0;
  color: var(--txt-muted);
  font-size: 0.82rem;
}

.match-item-time {
  color: var(--txt-subtle);
  font-size: 0.8rem;
}

.match-item-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.match-item-badges img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.match-score {
  color: var(--txt-highlight);
  font-size: 0.82rem;
  font-weight: 700;
  margin-left: auto;
}

.tabs-panel {
  grid-area: tabs;
  padding: 18px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt-subtle);
  padding: 11px 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tab.is-active {
  color: #08110c;
  border-color: rgba(138, 214, 161, 0.26);
  background: linear-gradient(135deg, #8ad6a1, #8fbcff);
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.is-hidden {
  display: none !important;
}

.stats-grid {
  display: grid;
  gap: 12px;
}

.stat-card,
.feed-item,
.lineup-card,
.highlight-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 18, 0.78);
}

.stat-card {
  padding: 14px 16px;
}

.stat-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--txt-main);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-row {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 12px;
  color: var(--txt-subtle);
  font-size: 0.86rem;
}

.stat-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.stat-bar-home,
.stat-bar-away {
  position: absolute;
  top: 0;
  height: 100%;
}

.stat-bar-home {
  left: 0;
  background: linear-gradient(90deg, #64c78a, #8ad6a1);
}

.stat-bar-away {
  right: 0;
  background: linear-gradient(90deg, #6f9fe8, #8fbcff);
}

.lineups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lineup-card {
  padding: 16px;
}

.lineup-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
}

.lineup-group {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lineup-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.lineup-group strong {
  display: block;
  margin-bottom: 6px;
  color: #c9d8ee;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lineup-group p {
  margin: 0;
  color: var(--txt-main);
  font-size: 0.88rem;
  line-height: 1.45;
}

.commentary-feed,
.news-feed {
  display: grid;
  gap: 12px;
}

.feed-item {
  padding: 14px 16px;
}

.feed-meta {
  margin-bottom: 8px;
  color: var(--txt-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.highlight-card {
  overflow: hidden;
}

.highlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.highlight-body {
  padding: 14px 14px 16px;
}

.highlight-body h5 {
  margin: 0 0 8px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.highlight-body a,
.news-feed a {
  color: #a8d0ff;
  text-decoration: none;
}

.highlight-body a:hover,
.news-feed a:hover {
  text-decoration: underline;
}

.stream-backups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 16, 0.7);
}

.stream-backup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt-subtle);
  text-decoration: none;
  font-size: 0.82rem;
  cursor: pointer;
}

.stream-backup.is-primary {
  color: #eef8f1;
  background: rgba(138, 214, 161, 0.1);
  border-color: rgba(138, 214, 161, 0.2);
}

.stream-backup.is-selected {
  border-color: rgba(143, 188, 255, 0.38);
  background: rgba(143, 188, 255, 0.14);
  color: #f6faff;
}

.feed-empty {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--txt-subtle);
}

@media (max-width: 1120px) {
  .page-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "schedule"
      "tabs";
  }

  .schedule-panel {
    max-height: none;
  }
}

@media (max-width: 780px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-top {
    grid-template-columns: 1fr;
  }

  .scoreboard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-side {
    justify-content: center;
  }

  .lineups-grid {
    grid-template-columns: 1fr;
  }

  #livePlayer,
  .embed-player,
  .player-host {
    min-height: unset;
  }

  .player-controls select {
    min-width: 100%;
  }

  .hls-controls {
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 6px 2px;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: space-between;
  }

  .hls-btn {
    width: 34px;
    height: 34px;
  }

  .hls-btn svg {
    width: 18px;
    height: 18px;
  }

  .hls-progress-container {
    flex: 0 0 100%;
    order: 1;
    height: 24px;
    margin-top: 4px;
  }

  .hls-progress-bar {
    inset: 8px 0;
    height: 4px;
  }

  .hls-volume {
    width: 40px;
    height: 4px;
  }

  .hls-volume::-webkit-slider-thumb,
  .hls-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
  }

  .hls-time,
  .hls-time-divider {
    font-size: 11px;
    min-width: 30px;
  }

  .hls-settings-menu {
    bottom: 56px;
    right: 4px;
    left: 4px;
    min-width: unset;
    width: auto;
  }

  .hls-big-play {
    width: 70px;
    height: 70px;
  }

  .hls-big-play svg {
    width: 28px;
    height: 28px;
  }
}