.global-live-board {
  position: static;
  z-index: auto;
  width: min(520px, calc(100vw - 352px));
  margin: 0;
  pointer-events: none;
}

.center-live-slot .global-live-board {
  width: min(520px, calc(100vw - 352px));
}

.global-live-board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.global-live-card {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  display: grid;
  gap: 3px;
  align-content: center;
  padding: 6px 8px;
  border-radius: 14px;
  border: 1px solid rgba(186, 214, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(19, 44, 90, 0.94), rgba(16, 30, 58, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(8, 19, 38, 0.18);
}

.global-live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 48%);
  opacity: 0.95;
  pointer-events: none;
}

.global-live-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.global-live-card > * {
  position: relative;
  z-index: 1;
}

.global-live-card-label {
  display: block;
  margin: 0;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1.15;
  color: rgba(232, 242, 255, 0.86);
}

.global-live-card-value {
  display: block;
  margin: 0;
  font-size: clamp(0.66rem, 0.8vw, 0.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.global-live-card.market {
  background:
    linear-gradient(135deg, rgba(25, 62, 128, 0.96), rgba(13, 33, 66, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.global-live-card.gold {
  border-color: rgba(255, 225, 161, 0.18);
  background:
    linear-gradient(135deg, rgba(116, 95, 44, 0.94), rgba(53, 46, 27, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.global-live-card.weather {
  border-color: rgba(181, 226, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(66, 108, 145, 0.95), rgba(31, 57, 87, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.global-live-card.pending {
  opacity: 0.92;
}

body.has-global-live-info .hero-live-strip {
  display: none !important;
}

@media (max-width: 900px) {
  .global-live-board,
  .center-live-slot .global-live-board {
    width: min(300px, calc(100vw - 24px));
  }

  .global-live-board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-live-card {
    min-height: 42px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .global-live-card::after {
    border-radius: 11px;
  }

  .global-live-card-label {
    font-size: 0.54rem;
  }

  .global-live-card-value {
    font-size: 0.68rem;
  }
}
