.live-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s-6);
  margin-top: var(--s-5);
  align-items: start;
}

@media (max-width: 1024px) {
  .live-shell { grid-template-columns: 1fr; }
}

.live-hero {
  background: linear-gradient(135deg, rgba(255, 61, 92, 0.10), transparent 60%), var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}

.live-hero__pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--live);
  flex-shrink: 0;
  position: relative;
}
.live-hero__pulse::before, .live-hero__pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--live);
  animation: live-ring 1.8s var(--ease-decel) infinite;
}
.live-hero__pulse::after { animation-delay: 0.9s; }
@keyframes live-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3); opacity: 0; }
}

.live-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-2xl);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  flex: 1;
}
.live-hero__title b { color: var(--live); }

.live-hero__metric {
  display: flex; flex-direction: column; align-items: flex-end;
  font-family: var(--font-mono);
}
.live-hero__metric-num {
  font-size: var(--t-2xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.live-hero__metric-label {
  font-size: var(--t-2xs);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: var(--tr-wider);
  margin-top: 4px;
  font-family: var(--font-body);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--s-3);
}

@media (max-width: 720px) {
  .live-grid { grid-template-columns: 1fr; }
  .live-hero { padding: var(--s-4); gap: var(--s-3); flex-wrap: wrap; }
  .live-hero__title { font-size: var(--t-xl); flex: 1 1 100%; }
}

.live-match {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color var(--d-fast) var(--ease-std), background var(--d-fast) var(--ease-std);
  overflow: hidden;
}

.live-match:hover { border-color: var(--line-strong); background: var(--bg-2); }

.live-match__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-2);
  font-size: var(--t-xs);
  color: var(--ink-3);
}

.live-match__league {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tr-wide);
  color: var(--ink-2);
}

.live-match__period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--live-soft);
  color: var(--live);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--t-2xs);
  text-transform: uppercase;
  letter-spacing: var(--tr-wider);
}
.live-match__period::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--live);
  border-radius: 50%;
  animation: chip-blink 1s var(--ease-std) infinite;
}

.live-match__clock {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--live);
  font-variant-numeric: tabular-nums;
}

.live-match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-2) 0;
}

.live-match__team { display: flex; align-items: center; gap: var(--s-2); min-width: 0; }
.live-match__team--away { justify-content: flex-end; text-align: right; }

.live-match__team-crest {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-2xs);
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.live-match__team-name {
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--ink-1);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.live-match__score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--t-2xl);
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  padding: 0 var(--s-3);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.live-match__score-sep { color: var(--ink-3); font-weight: 400; font-size: var(--t-md); }

.live-match__odds {
  display: grid;
  gap: var(--s-1);
  margin-top: auto;
}
.live-match__odds--3 { grid-template-columns: repeat(3, 1fr); }
.live-match__odds--2 { grid-template-columns: repeat(2, 1fr); }

.live-match__more {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--t-xs);
  color: var(--ink-3);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line-soft);
}
.live-match__more a { color: var(--accent); font-weight: 600; }

.live-feed {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + var(--s-4));
  max-height: calc(100vh - var(--header-h) - var(--s-8));
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .live-feed { position: static; max-height: 480px; }
}

.live-feed__head {
  padding: var(--s-3) var(--s-4);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.live-feed__title {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-sm);
  text-transform: uppercase;
  letter-spacing: var(--tr-wide);
}

.live-feed__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: chip-blink 1.4s var(--ease-std) infinite;
}

.live-feed__list {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-2);
  scrollbar-width: thin;
}

.live-feed__item {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: var(--s-2);
  padding: var(--s-3);
  border-radius: var(--r-sm);
  margin-bottom: 4px;
  background: var(--bg-2);
  border-left: 2px solid var(--line);
  animation: feed-in var(--d-slow) var(--ease-spring);
  font-size: var(--t-xs);
}

@keyframes feed-in {
  from { opacity: 0; transform: translateY(-8px); background: var(--accent-soft); border-left-color: var(--accent); }
  to { opacity: 1; transform: none; }
}

.live-feed__item--goal, .live-feed__item--try { border-left-color: var(--up); }
.live-feed__item--card, .live-feed__item--wicket { border-left-color: var(--down); }

.live-feed__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--ink-1);
}

.live-feed__body { min-width: 0; }
.live-feed__line {
  font-size: var(--t-xs);
  color: var(--ink-1);
  font-weight: 500;
  line-height: 1.35;
}
.live-feed__line b { color: var(--accent); font-weight: 700; }
.live-feed__sub {
  font-size: var(--t-2xs);
  color: var(--ink-3);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: var(--tr-wide);
}

.live-feed__time {
  font-family: var(--font-mono);
  font-size: var(--t-2xs);
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  margin-top: 2px;
}

.live-feed__empty {
  padding: var(--s-8) var(--s-4);
  text-align: center;
  color: var(--ink-3);
  font-size: var(--t-xs);
}

.live-filter {
  display: flex;
  gap: 6px;
  padding: var(--s-3) 0;
  flex-wrap: wrap;
}
