.live-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(210px, .8fr);
  gap: 12px;
  overflow: visible;
  margin-top: -34px;
  margin-bottom: 92px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.live-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, rgba(69, 248, 130, .055), transparent 44%),
    linear-gradient(145deg, rgba(19, 25, 32, .93), rgba(10, 15, 21, .94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.live-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(69, 248, 130, .24);
  background: linear-gradient(145deg, rgba(22, 31, 37, .97), rgba(10, 17, 22, .97));
}

.live-stat .icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 11px;
  border: 1px solid rgba(69, 248, 130, .2);
  border-radius: 13px;
  background: rgba(69, 248, 130, .075);
  color: var(--green);
}

.live-stat strong,
.live-stat small {
  display: block;
}

.live-stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.03em;
}

.live-stat small {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-strip > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 14px;
  padding: 0 21px;
  border: 1px solid rgba(69, 248, 130, .45);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .22), transparent 45%),
    linear-gradient(135deg, #45f882, #2fd970);
  box-shadow: 0 20px 60px rgba(69, 248, 130, .16);
  color: #061108;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.live-strip > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(69, 248, 130, .23);
}

.live-strip > a .icon {
  width: 19px;
  flex: 0 0 auto;
}

@media (max-width: 860px) {
  .live-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: -20px;
    margin-bottom: 60px;
  }

  .live-strip > a {
    min-height: 88px;
  }
}

@media (max-width: 640px) {
  .live-strip {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: -14px;
    margin-bottom: 45px;
  }

  .live-stat {
    min-height: 82px;
    gap: 11px;
    padding: 13px;
  }

  .live-stat .icon {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 11px;
  }

  .live-stat strong {
    font-size: 18px;
  }

  .live-stat small {
    margin-top: 5px;
    font-size: 12px;
  }

  .live-strip > a {
    grid-column: 1 / -1;
    min-height: 72px;
    border-color: rgba(69, 248, 130, .45);
  }
}
