/* MonaFlix deployment-safe modern UI overrides */
:root {
  --mf-accent: #d50055;
  --mf-purple: #7d2cf3;
  --mf-bg: #080914;
  --mf-panel: rgba(19, 21, 34, 0.96);
  --mf-border: rgba(255, 255, 255, 0.1);
  --mf-muted: rgba(255, 255, 255, 0.66);
}

.mf-page-section {
  position: relative;
  overflow: hidden;
}

.mf-page-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  margin-bottom: 28px;
  border: 1px solid var(--mf-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 0, 85, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(27, 27, 42, 0.98), rgba(8, 8, 16, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.mf-page-hero__eyebrow {
  display: inline-flex;
  color: var(--mf-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mf-page-hero h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}

.mf-page-hero p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
  max-width: 760px;
}

.mf-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mf-panel {
  border: 1px solid var(--mf-border);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(26, 26, 40, 0.96), rgba(11, 11, 20, 0.96));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
}

.mf-form .mf-field {
  margin-bottom: 16px;
}

.mf-form .mf-field label,
.mf-profile-panel label {
  color: #fff;
  font-weight: 600;
}

.mf-form .form--control,
.mf-panel .form--control,
.mf-panel .form-select {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--mf-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mf-form .form--control:focus,
.mf-panel .form--control:focus {
  border-color: var(--mf-accent);
  box-shadow: 0 0 0 3px rgba(213, 0, 85, 0.15);
}

.mf-form-help {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  margin-top: 8px;
}

.mf-submit-btn {
  min-height: 52px;
  border-radius: 14px;
  font-weight: 800;
  margin-top: 10px;
}

.mf-profile-upload {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  margin-bottom: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.mf-profile-upload__preview {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.mf-profile-upload__preview img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.12);
}

.mf-profile-upload__badge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mf-accent), var(--mf-purple));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(213, 0, 85, 0.28);
}

.mf-profile-upload__content h4 {
  color: #fff;
  margin-bottom: 8px;
}

.mf-profile-upload__content p {
  color: var(--mf-muted);
  margin-bottom: 14px;
}

.mf-upload-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(213, 0, 85, 0.14);
  border: 1px solid rgba(213, 0, 85, 0.28);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.mf-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mf-table-panel {
  padding: 0;
  overflow: hidden;
}

.mf-table {
  margin-bottom: 0;
}

.mf-table thead th {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.mf-table tbody td {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.mf-table tbody tr:hover,
.mf-content-list .wishlist-card-list__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mf-table-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mf-code {
  font-family: Consolas, monospace;
  color: rgba(255, 255, 255, 0.72);
}

.mf-content-list .wishlist-card-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
}

.mf-content-list .wishlist-card__thumb img,
.mf-content-list .wishlist-image {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
}

.mf-content-list .wishlist-card__title {
  color: #fff;
}

.mf-content-list .wishlist-card__desc {
  color: rgba(255, 255, 255, 0.58);
}

.mf-empty-state {
  text-align: center;
  padding: 42px 20px;
}

.mf-empty-state i {
  font-size: 48px;
  color: var(--mf-accent);
  margin-bottom: 12px;
}

.mf-empty-state h4 {
  color: rgba(255, 255, 255, 0.72);
}

.mf-modern-surface .section-title,
.mf-page-section .section-title,
.movie-section.mf-page-section .section-title {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.mf-modern-surface .section-subtitle,
.mf-page-section .section-subtitle,
.movie-section.mf-page-section .section-subtitle,
.mf-page-section .section-header p {
  color: rgba(255, 255, 255, 0.68);
}

.media-section.mf-page-section .media-header,
.az-browse-header.mf-public-hero {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--mf-border);
  background: linear-gradient(145deg, rgba(26, 26, 40, 0.96), rgba(11, 11, 20, 0.96));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
}

.az-browse-header.mf-public-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 0, 85, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(27, 27, 42, 0.97), rgba(8, 8, 16, 0.97));
}

.az-alphabet-wrapper {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.az-letter-btn {
  border-radius: 12px !important;
}

.current-live-match-section.mf-page-section .current-live-match {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
}

.current-live-match-section.mf-page-section .current-live-match:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mf-reel-favorite-bar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(26, 26, 40, 0.92), rgba(11, 11, 20, 0.92));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.mf-reel-favorite-bar__eyebrow {
  display: block;
  color: var(--mf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mf-reel-favorite-bar h3,
.mf-reel-empty h4 {
  color: #fff;
  margin: 0;
}

.mf-reel-favorite-bar__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mf-reel-empty {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.mf-reel-empty i {
  font-size: 54px;
  color: var(--mf-accent);
  margin-bottom: 14px;
}

.mf-reel-empty p {
  color: var(--mf-muted);
  max-width: 420px;
  margin-bottom: 18px;
}

.mf-ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mf-ticket-panel__meta,
.mf-ticket-message__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mf-ticket-message {
  border: 1px solid var(--mf-border);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.mf-ticket-message--staff {
  border-color: rgba(255, 193, 7, 0.22);
  background: rgba(255, 193, 7, 0.06);
}

.mf-ticket-message--user {
  border-color: rgba(213, 0, 85, 0.22);
  background: rgba(213, 0, 85, 0.06);
}

.mf-ticket-message__head h5,
.mf-ticket-message__attachments a {
  color: #fff;
}

.mf-ticket-message__body {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0;
}

.mf-ticket-message__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mf-ticket-message__attachments a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.mf-radio-grid-section {
  margin-bottom: 34px;
}

.mf-radio-grid-section__title {
  color: #fff;
  margin-bottom: 18px;
  font-size: 24px;
}

.mf-radio-card {
  height: 100%;
  border: 1px solid var(--mf-border);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(26, 26, 40, 0.96), rgba(11, 11, 20, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.mf-radio-card__thumb {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.mf-radio-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mf-radio-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.25s ease;
}

.mf-radio-card:hover .mf-radio-card__play {
  opacity: 1;
}

.mf-radio-card__play i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mf-accent), var(--mf-purple));
  color: #fff;
  font-size: 24px;
}

.mf-radio-card__live {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(213, 0, 85, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mf-radio-card__body {
  padding: 16px 18px 18px;
}

.mf-radio-card__body h5 a {
  color: #fff;
  text-decoration: none;
}

.mf-radio-card__body span {
  color: var(--mf-muted);
}

.mf-radio-player {
  border: 1px solid var(--mf-border);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 0, 85, 0.24), transparent 34%),
    radial-gradient(circle at 86% 4%, rgba(125, 44, 243, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(22, 23, 39, 0.98), rgba(7, 8, 17, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.mf-radio-player__header {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mf-radio-player__artwork {
  position: relative;
  width: 156px;
  height: 156px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.mf-radio-player__artwork img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.mf-radio-player__equalizer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
}

.mf-radio-player__equalizer.playing,
.equalizer-overlay.playing {
  opacity: 1;
}

.mf-radio-player__meta h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 8px;
}

.mf-radio-player__meta p {
  color: var(--mf-muted);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-radio-player__status,
.mf-radio-player__format {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4caf50;
}

.status-dot.playing { background: #ff5722; }
.status-dot.error { background: #f44336; }
.status-dot.loading { background: #ff9800; }

.mf-radio-player__format strong,
.format-indicator {
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mf-radio-player__embed {
  padding: 0 30px 30px;
}

.mf-radio-player__embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 18px;
}

.mf-radio-player__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 26px 30px 30px;
}

.mf-radio-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  transition: 0.25s ease;
}

.mf-radio-btn--play {
  width: 74px;
  height: 74px;
  font-size: 30px;
  background: linear-gradient(135deg, var(--mf-accent), var(--mf-purple));
  box-shadow: 0 14px 34px rgba(213, 0, 85, 0.3);
}

.mf-radio-btn--play.playing {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.mf-radio-player__volume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 240px;
  color: #fff;
}

.mf-radio-player__volume input {
  flex: 1;
  accent-color: #8dc63f;
}

.mf-radio-player__timer {
  color: rgba(255, 255, 255, 0.72);
}

.mf-radio-player__timer strong {
  color: #fff;
  margin-left: 8px;
}

.mf-radio-sidebar__list,
.mf-radio-category-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-radio-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mf-radio-sidebar__item img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.mf-radio-sidebar__item strong,
.mf-radio-sidebar__item span {
  display: block;
  color: #fff;
}

.mf-radio-sidebar__item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.mf-radio-sidebar__item i {
  margin-left: auto;
  color: var(--mf-accent);
}

.mf-radio-category-block h6 {
  color: #fff;
  margin: 10px 0 0;
}

.mf-sports-page {
  background:
    radial-gradient(circle at 8% 14%, rgba(213, 0, 85, 0.08), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(125, 44, 243, 0.08), transparent 32%);
}

.mf-sports-filter {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(170px, 220px) 2fr auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--mf-border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(26, 26, 40, 0.92), rgba(11, 11, 20, 0.92));
}

.mf-sports-filter__field label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mf-sports-filter .form--control,
.mf-sports-filter .form-select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.mf-sports-filter__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mf-sports-filter__tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.mf-sports-filter__tab.active {
  background: linear-gradient(135deg, var(--mf-accent), var(--mf-purple));
  color: #fff;
  border-color: transparent;
}

.mf-sports-filter__submit {
  min-height: 48px;
  border-radius: 14px;
}

.mf-live-score-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.mf-live-score-strip__item {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mf-live-score-strip__item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mf-live-score-strip__item strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  margin-top: 8px;
}

.mf-scoreboard-panel {
  margin-bottom: 30px;
}

.mf-scoreboard-panel__head,
.mf-game-center__head,
.mf-match-data-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mf-scoreboard-panel__head span,
.mf-game-center__head span,
.mf-match-data-panel__head span {
  color: var(--mf-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mf-scoreboard-panel__head h3,
.mf-game-center__head h4,
.mf-match-data-panel__head h4 {
  color: #fff;
  margin: 0;
}

.mf-scoreboard-panel__head strong,
.mf-game-center__head strong {
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(213, 0, 85, 0.16);
}

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

.mf-scoreboard-card {
  display: block;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: 0.25s ease;
}

.mf-scoreboard-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 0, 85, 0.32);
}

.mf-scoreboard-card__league {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  margin-bottom: 12px;
}

.mf-scoreboard-card__league span {
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(213, 0, 85, 0.22);
}

.mf-scoreboard-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}

.mf-scoreboard-card__row span {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mf-scoreboard-card__row strong {
  color: #fff;
  font-size: 20px;
}

.mf-scoreboard-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
}

.mf-scoreboard-empty i {
  color: var(--mf-accent);
  font-size: 26px;
}

.mf-league-history-panel {
  margin-bottom: 34px;
}

.mf-league-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.mf-league-history-card {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mf-league-history-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.mf-league-history-card__head img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
}

.mf-league-history-card__head strong,
.mf-league-history-card__head span {
  display: block;
}

.mf-league-history-card__head strong {
  color: #fff;
}

.mf-league-history-card__head span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.mf-league-history-card__matches {
  display: grid;
  gap: 10px;
}

.mf-league-history-card__matches a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.mf-league-history-card__matches span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mf-league-history-card__matches span:last-child {
  text-align: right;
}

.mf-league-history-card__matches strong {
  color: #fff;
  white-space: nowrap;
}

.mf-match-section {
  margin-bottom: 34px;
}

.mf-match-section__head,
.mf-league-group__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.mf-match-section__head span {
  color: var(--mf-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mf-match-section__head h3,
.mf-league-group__head h4 {
  color: #fff;
  margin: 0;
}

.mf-match-section__head strong {
  color: rgba(255, 255, 255, 0.7);
}

.mf-league-group {
  padding: 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.mf-league-group__head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mf-league-group__head img,
.mf-league-group__flag {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.mf-league-group__head span {
  color: rgba(255, 255, 255, 0.58);
}

.mf-league-group__flag {
  width: 32px;
  height: 32px;
}

.mf-match-card {
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 0, 85, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(26, 26, 40, 0.97), rgba(10, 10, 18, 0.97));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.mf-match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 0, 85, 0.28);
}

.mf-match-card__top,
.mf-match-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mf-match-card__league,
.mf-match-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.mf-match-card__league img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.mf-match-card__status {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mf-match-card__status.is-live {
  background: rgba(213, 0, 85, 0.16);
  color: #fff;
}

.mf-match-card__status.is-live i {
  color: #ff4a80;
  font-size: 8px;
  margin-right: 4px;
}

.mf-match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
}

.mf-match-team {
  text-align: center;
  min-width: 0;
}

.mf-match-team img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.mf-match-team strong {
  display: block;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mf-match-team span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.mf-match-score {
  min-width: 92px;
  text-align: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.mf-match-score strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.mf-match-score span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  margin-top: 8px;
}

.mf-match-player {
  border: 1px solid var(--mf-border);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 0, 85, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(20, 21, 36, 0.98), rgba(7, 8, 17, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.mf-match-player__scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
}

.mf-match-player__team {
  text-align: center;
}

.mf-match-player__team img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}

.mf-match-player__team strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.mf-match-player__team span {
  color: rgba(255, 255, 255, 0.55);
}

.mf-match-player__score {
  min-width: 170px;
  text-align: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mf-match-player__score span {
  display: block;
  color: var(--mf-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mf-match-player__score strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin: 10px 0;
}

.mf-match-player__score em {
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}

.mf-match-player__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.mf-match-player__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mf-match-player__empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mf-match-player__empty i {
  font-size: 52px;
  color: var(--mf-accent);
  margin-bottom: 12px;
}

.mf-stream-source-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 18px;
}

.mf-stream-source {
  text-align: left;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.mf-stream-source.active {
  border-color: rgba(213, 0, 85, 0.4);
  background: rgba(213, 0, 85, 0.12);
}

.mf-stream-source span,
.mf-stream-source strong,
.mf-stream-source em {
  display: block;
}

.mf-stream-source span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.mf-stream-source strong {
  margin: 3px 0;
}

.mf-stream-source em {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(141, 198, 63, 0.18);
  color: #8dc63f;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.mf-match-info-panel h4,
.mf-match-side-panel h5 {
  color: #fff;
  margin-bottom: 18px;
}

.mf-match-info-panel span,
.mf-match-side-panel p,
.mf-match-info-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

.mf-match-info-panel strong {
  display: block;
  color: #fff;
  margin: 5px 0;
}

.mf-game-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.mf-game-fact,
.mf-stat-row,
.mf-prediction-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.mf-game-fact span,
.mf-stat-row span,
.mf-prediction-item span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mf-game-fact strong,
.mf-stat-row strong,
.mf-prediction-item strong {
  display: block;
  color: #fff;
  margin-top: 6px;
  font-size: 18px;
}

.mf-stat-list,
.mf-prediction-list,
.mf-incident-list,
.mf-history-list {
  display: grid;
  gap: 12px;
}

.mf-stat-list,
.mf-prediction-list {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.mf-incident-item,
.mf-history-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
}

.mf-incident-item strong,
.mf-history-item strong {
  color: #fff;
  white-space: nowrap;
}

.mf-incident-item span,
.mf-history-item span {
  color: rgba(255, 255, 255, 0.72);
}

.mf-incident-item em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  text-align: right;
}

.mf-premium-empty {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.mf-premium-empty--compact {
  padding: 13px;
}

.mf-premium-empty i {
  color: var(--mf-accent);
  font-size: 28px;
  margin-top: 2px;
}

.mf-premium-empty strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.mf-premium-empty span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mf-paywall-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 0, 85, 0.18), transparent 34%),
    linear-gradient(145deg, #171724, #090911);
  color: #fff;
}

.mf-paywall-modal .modal-description,
.mf-paywall-modal .modal--text {
  color: #fff;
}

.mf-paywall-modal .modal--text {
  color: rgba(255, 255, 255, 0.72);
}

.paywall-plan-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 20px;
  text-align: left;
}

.paywall-plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.paywall-plan-card.recommended {
  border-color: rgba(213, 0, 85, 0.45);
  box-shadow: 0 0 0 1px rgba(213, 0, 85, 0.18);
}

.paywall-plan-card span,
.paywall-plan-card strong,
.paywall-plan-card small {
  display: block;
}

.paywall-plan-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paywall-plan-card strong {
  color: #fff;
  font-size: 22px;
  margin-top: 3px;
}

.paywall-plan-card small {
  color: rgba(255, 255, 255, 0.58);
}

.paywall-plan-empty {
  grid-column: 1 / -1;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.paywall-locked {
  position: relative;
}

.paywall-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.mf-side-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.mf-side-score span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.mf-side-score strong {
  color: #fff;
  font-size: 24px;
}

.mf-manager-list,
.mf-related-match-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mf-manager-item,
.mf-related-match {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.mf-manager-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.mf-manager-item strong,
.mf-related-match strong {
  color: #fff;
}

.mf-manager-item span,
.mf-related-match span {
  color: rgba(255, 255, 255, 0.62);
}

.mf-related-match {
  justify-content: space-between;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 36px;
}

.equalizer .bar {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(to top, #ff6b6b, #4ecdc4);
  animation: mf-equalizer 1.2s ease-in-out infinite;
}

.equalizer .bar:nth-child(2) { animation-delay: 0.15s; }
.equalizer .bar:nth-child(3) { animation-delay: 0.3s; }
.equalizer .bar:nth-child(4) { animation-delay: 0.45s; }
.equalizer .bar:nth-child(5) { animation-delay: 0.6s; }
.equalizer:not(.playing) .bar { animation-play-state: paused; height: 8px; }

@keyframes mf-equalizer {
  0%, 100% { height: 8px; }
  50% { height: 28px; }
}

@media (max-width: 991px) {
  .mf-page-hero,
  .mf-profile-upload,
  .mf-radio-player__header,
  .mf-match-player__scoreboard {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .mf-profile-upload,
  .mf-radio-player__header {
    text-align: center;
  }

  .mf-radio-player__artwork {
    margin: 0 auto;
  }

  .mf-sports-filter {
    grid-template-columns: 1fr;
  }

  .mf-match-player__scoreboard {
    text-align: center;
  }

  .mf-scoreboard-panel__head,
  .mf-game-center__head,
  .mf-match-data-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .mf-page-hero,
  .mf-panel,
  .mf-radio-player__header,
  .mf-radio-player__controls {
    padding: 22px;
    border-radius: 20px;
  }

  .mf-radio-player__artwork {
    width: 132px;
    height: 132px;
  }

  .mf-radio-player__controls {
    gap: 14px;
  }

  .mf-radio-player__volume {
    min-width: 100%;
  }

  .mf-table thead {
    display: none;
  }

  .mf-table tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .mf-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .mf-table tbody td::before {
    content: attr(data-label);
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-transform: uppercase;
  }

  .mf-league-history-grid,
  .mf-scoreboard-grid {
    grid-template-columns: 1fr;
  }

  .mf-incident-item,
  .mf-history-item,
  .mf-league-history-card__matches a {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mf-incident-item em,
  .mf-league-history-card__matches span:last-child {
    text-align: left;
  }
}
