.live-status-v22 {
  margin: 12px 0 14px;
  padding: 12px 16px;
  border: 1px solid rgba(191, 132, 43, 0.28);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-status-v22 > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #1b1b1b;
}

.live-status-v22 i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #bf842b;
  box-shadow: 0 0 0 5px rgba(191, 132, 43, 0.12);
}

.live-status-v22.is-live i {
  background: #20a35a;
  box-shadow: 0 0 0 5px rgba(32, 163, 90, 0.12);
  animation: liveMatchPulseV22 1.6s ease-in-out infinite;
}

.live-status-v22 strong {
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.live-status-v22 small {
  color: #77716a;
  text-align: right;
  font-size: 0.72rem;
}

@keyframes liveMatchPulseV22 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

.live-stats-v22 {
  overflow: hidden;
}

.live-stat-v22__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 0 8px;
}

.live-stat-v22__teams > span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-weight: 800;
  font-size: 0.82rem;
}

.live-stat-v22__teams > span:last-child {
  justify-content: flex-end;
  text-align: right;
}

.live-stat-v22__teams img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.live-stat-v22__teams small {
  color: #a66d13;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.live-stat-v22__list {
  display: grid;
  gap: 1px;
  border-top: 1px solid #ece8e1;
}

.live-stat-v22__row {
  padding: 11px 0 9px;
  border-bottom: 1px solid #f1eee8;
}

.live-stat-v22__values {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 10px;
}

.live-stat-v22__values strong {
  font-size: 0.96rem;
  color: #171717;
}

.live-stat-v22__values strong:last-child {
  text-align: right;
}

.live-stat-v22__values span {
  text-align: center;
  color: #77716a;
  font-size: 0.78rem;
  font-weight: 700;
}

.live-stat-v22__bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 7px;
}

.live-stat-v22__bars i {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: #ebe7df;
  overflow: hidden;
  position: relative;
}

.live-stat-v22__bars i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: #bf842b;
}

.live-stat-v22__bars i:last-child::after {
  margin-left: auto;
}

.live-player-v22 {
  margin-top: 14px;
}

.live-player-v22 > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.live-player-v22 > summary::-webkit-details-marker {
  display: none;
}

.live-player-v22 > summary strong {
  font-size: 1rem;
}

.live-player-v22 > summary span {
  color: #8a847c;
  font-size: 0.7rem;
  text-align: right;
}

.live-player-v22__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.live-player-v22__team {
  min-width: 0;
}

.live-player-v22__team h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.82rem;
}

.live-player-v22__team h4 img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.live-player-v22__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "player rating"
    "meta rating";
  gap: 2px 8px;
  padding: 8px 0;
  border-bottom: 1px solid #efebe4;
}

.live-player-v22__row > span {
  grid-area: player;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.live-player-v22__row img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  background: #f2eee7;
}

.live-player-v22__row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.77rem;
}

.live-player-v22__row small {
  grid-area: meta;
  color: #8a847c;
  font-size: 0.65rem;
  padding-left: 35px;
}

.live-player-v22__row b {
  grid-area: rating;
  align-self: center;
  min-width: 34px;
  padding: 5px 7px;
  border-radius: 10px;
  background: #fff4df;
  color: #9b6209;
  text-align: center;
  font-size: 0.78rem;
}

@media (max-width: 620px) {
  .live-status-v22 {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .live-status-v22 small {
    text-align: left;
  }

  .live-player-v22__grid {
    grid-template-columns: 1fr;
  }

  .live-stat-v22__teams {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}
