/**
 * Cricket Local — Live Studio (premium TV-style Match Day)
 */

/* ── Live nav — larger, centre spotlight ── */
html.premium-v3 .bottom-nav.v3a-tab-bar {
  /* Live column wider than the rest */
  grid-template-columns: 1fr 1fr 1.45fr 1fr 1fr 1fr;
  align-items: end;
  padding-top: 6px !important;
}

html.premium-v3 .v3a-tab-bar .nav-item--live {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  align-self: end;
}

html.premium-v3 .v3a-tab-bar .nav-item--live .nav-item__inner {
  min-height: 68px;
  padding: 10px 4px 8px !important;
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.28) 0%, rgba(74, 222, 128, 0.12) 100%);
  border: 2px solid rgba(248, 113, 113, 0.55);
  border-radius: 18px !important;
  box-shadow:
    0 0 0 2px rgba(74, 222, 128, 0.12),
    0 8px 22px rgba(239, 68, 68, 0.28),
    0 0 28px rgba(239, 68, 68, 0.12);
}

html.premium-v3 .v3a-tab-bar .nav-item--live .nav-svg {
  width: 28px !important;
  height: 28px !important;
}

html.premium-v3 .v3a-tab-bar .nav-item--live .nav-label {
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fecaca;
}

html.premium-v3 .v3a-tab-bar .nav-item--live .nav-live-dot {
  animation: live-studio-dot 1.4s ease-in-out infinite;
  r: 2.75;
}

html.premium-v3 .v3a-tab-bar .nav-item--live.active .nav-item__inner {
  min-height: 72px;
  background: linear-gradient(135deg, #f87171, #ef4444 50%, #dc2626) !important;
  box-shadow:
    0 8px 28px rgba(239, 68, 68, 0.55),
    0 0 32px rgba(74, 222, 128, 0.25) !important;
  border-color: #fecaca !important;
  transform: translateY(-4px) scale(1.08);
}

html.premium-v3 .v3a-tab-bar .nav-item--live.active .nav-label,
html.premium-v3 .v3a-tab-bar .nav-item--live.active .nav-svg {
  color: #fff !important;
}

html.premium-v3 .v3a-tab-bar .nav-item--live.active .nav-label {
  font-size: 0.72rem !important;
}

@keyframes live-studio-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

/* ── Studio shell ── */
html.premium-v3 .match-day-content--scoreboards,
html.premium-v3 .match-day-content--live-studio {
  padding-bottom: 8px;
}

html.premium-v3 .live-studio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 8px;
}

html.premium-v3 .live-studio__hero {
  position: relative;
  margin: 0 8px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.28);
  background:
    radial-gradient(ellipse 90% 70% at 80% 0%, rgba(74, 222, 128, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(212, 168, 67, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #0a1f14 0%, #06140d 50%, #040e09 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html.premium-v3 .live-studio__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: live-studio-sheen 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes live-studio-sheen {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

html.premium-v3 .live-studio__hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 0;
  position: relative;
  z-index: 1;
}

html.premium-v3 .live-studio__live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #fecaca;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html.premium-v3 .live-studio__live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  box-shadow: 0 0 10px #ef4444;
  animation: live-studio-dot 1.2s ease-in-out infinite;
}

html.premium-v3 .live-studio__hero-meta {
  font-size: 0.72rem;
  color: rgba(212, 168, 67, 0.85);
  font-weight: 600;
}

html.premium-v3 .live-studio__scoreboard {
  position: relative;
  z-index: 1;
  padding: 14px 16px 18px;
}

html.premium-v3 .live-studio__teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

html.premium-v3 .live-studio__side {
  text-align: center;
  min-width: 0;
}

html.premium-v3 .live-studio__side--home { text-align: left; }
html.premium-v3 .live-studio__side--away { text-align: right; }

html.premium-v3 .live-studio__team-name {
  margin: 0 0 4px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f0fdf4;
  line-height: 1.2;
  overflow: visible;
  white-space: normal;
}

html.premium-v3 .live-studio__team-name .match-team-label {
  gap: 2px;
}

html.premium-v3 .live-studio__team-name .match-team-label__club {
  font-size: 0.78rem;
  font-weight: 800;
  color: #f0fdf4;
}

html.premium-v3 .live-studio__team-name .match-team-label__side {
  font-size: 0.66rem;
  font-weight: 650;
  color: #bbf7d0;
  opacity: 0.95;
}

html.premium-v3 .live-studio__team-score {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.75rem, 7vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fbbf24;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
  line-height: 1.05;
}

html.premium-v3 .live-studio__vs {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #86efac;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

html.premium-v3 .live-studio__rates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

html.premium-v3 .live-studio__chip {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: #d1fae5;
}

html.premium-v3 .live-studio__chip em {
  font-style: normal;
  color: #fbbf24;
  margin-right: 4px;
}

html.premium-v3 .live-studio__players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

html.premium-v3 .live-studio__player-card {
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html.premium-v3 .live-studio__player-role {
  margin: 0 0 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86efac;
}

html.premium-v3 .live-studio__player-name {
  margin: 0 0 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

html.premium-v3 .live-studio__player-stats {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

html.premium-v3 .live-studio__player-stats strong {
  color: #fbbf24;
}

html.premium-v3 .live-studio__balls {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

html.premium-v3 .live-studio__ball {
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  animation: live-studio-ball-in 0.35s ease backwards;
}

html.premium-v3 .live-studio__ball--4,
html.premium-v3 .live-studio__ball--6 {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #052e16;
}

html.premium-v3 .live-studio__ball--w {
  background: linear-gradient(135deg, #f87171, #ef4444);
  color: #fff;
}

@keyframes live-studio-ball-in {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Graphics row: pitch + wagon ── */
html.premium-v3 .live-studio__graphics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 8px;
}

html.premium-v3 .live-studio__graphic-card {
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(165deg, rgba(16, 42, 28, 0.95) 0%, rgba(8, 20, 14, 0.98) 100%);
  border: 1px solid rgba(74, 222, 128, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

html.premium-v3 .live-studio__graphic-title {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #86efac;
  text-align: center;
}

html.premium-v3 .live-studio__pitch,
html.premium-v3 .live-studio__wagon {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  display: block;
  height: auto;
}

/* ── Commentary ── */
html.premium-v3 .live-studio__commentary {
  margin: 0 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 11, 0.9);
  overflow: hidden;
  max-height: 220px;
  display: flex;
  flex-direction: column;
}

html.premium-v3 .live-studio__commentary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.12), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html.premium-v3 .live-studio__commentary-head h3 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbf7d0;
}

html.premium-v3 .live-studio__commentary-feed {
  overflow-y: auto;
  padding: 8px 12px 12px;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

html.premium-v3 .live-studio__comment {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: live-studio-comment-in 0.4s ease;
}

html.premium-v3 .live-studio__comment:last-child {
  border-bottom: none;
}

@keyframes live-studio-comment-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

html.premium-v3 .live-studio__comment-ball {
  flex-shrink: 0;
  min-width: 36px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(74, 222, 128, 0.15);
  color: #86efac;
}

html.premium-v3 .live-studio__comment--wicket .live-studio__comment-ball {
  background: rgba(239, 68, 68, 0.25);
  color: #fecaca;
}

html.premium-v3 .live-studio__comment--boundary .live-studio__comment-ball {
  background: rgba(251, 191, 36, 0.25);
  color: #fde68a;
}

html.premium-v3 .live-studio__comment-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(240, 253, 244, 0.9);
  font-weight: 500;
}

/* ── News carousel ── */
html.premium-v3 .live-studio__news {
  margin: 0 8px;
  position: relative;
}

html.premium-v3 .live-studio__news-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}

html.premium-v3 .live-studio__news-track::-webkit-scrollbar {
  display: none;
}

html.premium-v3 .live-studio__news-card {
  flex: 0 0 min(78%, 280px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #122a1c 0%, #0a1812 100%);
  border: 1px solid rgba(96, 165, 250, 0.25);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  transition: transform 0.2s, border-color 0.2s;
}

html.premium-v3 .live-studio__news-card:active {
  transform: scale(0.98);
}

html.premium-v3 .live-studio__news-card__img {
  height: 72px;
  object-fit: cover;
  width: 100%;
  background: #0c1a14;
}

html.premium-v3 .live-studio__news-card__body {
  padding: 10px 12px 12px;
  flex: 1;
}

html.premium-v3 .live-studio__news-card__src {
  margin: 0 0 4px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dd3fc;
}

html.premium-v3 .live-studio__news-card__title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f0f9ff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Engage: alerts + poll ── */
html.premium-v3 .live-studio__engage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 8px;
}

html.premium-v3 .live-studio__engage-card {
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(165deg, rgba(18, 38, 28, 0.95), rgba(8, 18, 14, 0.98));
  border: 1px solid rgba(212, 168, 67, 0.2);
}

html.premium-v3 .live-studio__engage-card h3 {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5d78e;
}

html.premium-v3 .live-studio__alert-btn,
html.premium-v3 .live-studio__poll-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

html.premium-v3 .live-studio__alert-btn:active,
html.premium-v3 .live-studio__poll-btn:active {
  transform: scale(0.97);
}

html.premium-v3 .live-studio__alert-btn.is-on {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(34, 197, 94, 0.15));
  border-color: rgba(74, 222, 128, 0.45);
  color: #bbf7d0;
}

html.premium-v3 .live-studio__poll-btn.is-voted {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(212, 168, 67, 0.12));
  border-color: rgba(251, 191, 36, 0.4);
  color: #fde68a;
}

html.premium-v3 .live-studio__poll-q {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

/* ── Section labels ── */
html.premium-v3 .live-studio__section-label {
  margin: 4px 12px 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(134, 239, 172, 0.85);
}

/* ── Enhanced score cards inside studio ── */
html.premium-v3 .match-day-content--live-studio .live-score-card {
  border-radius: 18px;
  border-color: rgba(212, 168, 67, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

html.premium-v3 .match-day-content--live-studio .live-score-card__score {
  font-size: 1.65rem;
  font-family: "Outfit", system-ui, sans-serif;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

html.premium-v3 .match-day-content--live-studio .live-score-card__ball {
  animation: live-studio-ball-in 0.3s ease backwards;
}

html.premium-v3 .live-studio__empty-hero {
  padding: 28px 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

html.premium-v3 .live-studio__empty-hero h2 {
  margin: 0 0 8px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.35rem;
  color: #f0fdf4;
}

html.premium-v3 .live-studio__empty-hero p {
  margin: 0 0 14px;
  color: rgba(220, 252, 231, 0.75);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ── Featured NEXT LIVE GAME ── */
html.premium-v3 .live-studio__hero--next {
  border-color: rgba(251, 191, 36, 0.4);
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(251, 191, 36, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(74, 222, 128, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, #0c2216 0%, #06140d 48%, #040e09 100%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(251, 191, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

html.premium-v3 .live-studio__next-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px 0;
  position: relative;
  z-index: 1;
}

html.premium-v3 .live-studio__next-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.28), rgba(212, 168, 67, 0.12));
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fde68a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html.premium-v3 .live-studio__next-kicker strong {
  font-weight: 900;
  color: #fef3c7;
}

html.premium-v3 .live-studio__next-fav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 800;
}

html.premium-v3 .live-studio__ico {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  font-size: 1.05em;
}

html.premium-v3 .live-studio__scoreboard--next {
  padding-top: 16px;
}

html.premium-v3 .live-studio__teams-row--next {
  margin-bottom: 16px;
  gap: 8px;
}

html.premium-v3 .live-studio__side-label {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86efac;
  display: flex;
  align-items: center;
  gap: 4px;
}

html.premium-v3 .live-studio__side--away .live-studio__side-label {
  justify-content: flex-end;
}

html.premium-v3 .live-studio__team-name--xl {
  font-size: clamp(0.82rem, 3.4vw, 1.05rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

html.premium-v3 .live-studio__team-name--xl .match-team-label__club {
  font-size: clamp(0.82rem, 3.4vw, 1.05rem);
}

html.premium-v3 .live-studio__team-name--xl .match-team-label__side {
  font-size: clamp(0.68rem, 2.8vw, 0.82rem);
  color: #bbf7d0;
}

html.premium-v3 .live-studio__vs--next {
  width: 48px;
  height: 48px;
  font-size: 0.78rem;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.25), rgba(74, 222, 128, 0.12));
  border: 2px solid rgba(251, 191, 36, 0.4);
  color: #fde68a;
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
}

html.premium-v3 .live-studio__next-meta {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

html.premium-v3 .live-studio__next-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  line-height: 1.35;
  color: #f0fdf4;
}

html.premium-v3 .live-studio__next-meta-item strong {
  font-weight: 800;
  color: #fff;
}

html.premium-v3 .live-studio__next-meta-item--countdown {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.2), rgba(251, 191, 36, 0.12));
  border-color: rgba(248, 113, 113, 0.35);
}

html.premium-v3 .live-studio__next-meta-item--countdown strong {
  color: #fecaca;
}

html.premium-v3 .live-studio__next-note {
  margin: 0;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-size: 0.84rem;
  line-height: 1.4;
  color: #d1fae5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

html.premium-v3 .live-studio__next-note strong {
  font-weight: 800;
  color: #86efac;
}

html.premium-v3 .live-studio__next-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #86efac, #4ade80);
  color: #052e16;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.35);
}

html.premium-v3 .live-studio__next-cta:active {
  transform: scale(0.98);
}

html.premium-v3 .live-score-card--next-feature {
  border-color: rgba(251, 191, 36, 0.35) !important;
}

html.premium-v3 .live-score-card--next-feature .live-score-card__status-wait {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fde68a !important;
}

html.premium-v3 .live-score-card--next-feature .live-score-card__team {
  font-weight: 800;
  font-size: 1.05rem;
}

html.premium-v3 .live-score-card--next-feature .live-score-card__schedule,
html.premium-v3 .live-score-card--next-feature .live-score-card__venue {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e2e8f0 !important;
}

@media (max-width: 360px) {
  html.premium-v3 .live-studio__players,
  html.premium-v3 .live-studio__graphics,
  html.premium-v3 .live-studio__engage {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.premium-v3 .live-studio__hero::before,
  html.premium-v3 .v3a-tab-bar .nav-item--live .nav-live-dot,
  html.premium-v3 .live-studio__live-pill::before,
  html.premium-v3 .live-studio__ball,
  html.premium-v3 .live-studio__comment {
    animation: none;
  }
}
