.game-info-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 10px;
  padding: 18px 20px;
  margin: 20px 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-color: rgba(107,105,119,0.12);
}

/* 平板 / 手机 */
@media (max-width: 768px) {
  .game-info-panel {
      grid-template-columns: repeat(2, 1fr); /* 手机 2 列 */
  }
}

.game-info-panel .info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-info-panel .info-row i {
  font-size: 18px;
  color: #6aa9ff;
  width: 22px;
  text-align: center;
  opacity: 0.9;
}

.game-info-panel .info-row span {
  display: block;
  font-size: 12px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: #A5A3AE;
  line-height: 1.5;
  font-weight: 400;
  
}

.game-info-panel .info-row strong {
  display: block;
  font-size: 14px;
  color: #13111C;
  font-weight: 600;
}

.game-info-panel .info-row .icon-bg {
  width: 34px;              /* 背景尺寸 */
  height: 34px;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.08);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-info-panel .info-row svg {
  width: 20px;              /* 背景尺寸 */
  height: 20px;
  fill: none !important;
}

.dark-theme .game-info-panel {
  background: #13111c;
  border-color: #343142;
}

.dark-theme .game-info-panel .info-row strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
