/* 游戏详情页样式 */
.detailDiv___WMTXC {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 800px;
}

.detailDiv___WMTXC img {
  /* 设置固定尺寸 */
  width: 300px;
  height: 300px;
  /* 确保图片清晰 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  /* 调整margin适应固定尺寸 */
  margin: 20px 0;
  display: block;
}

.detailDiv___WMTXC img:hover {
  /* 去掉悬停放大效果，保持阴影变化 */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* 气泡框效果 */
.image-bubble {
  position: relative;
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin: 20px 0;
}

/* 增强气泡框的立体感 */
.image-bubble::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  z-index: -1;
  opacity: 0.6;
}

.image-bubble::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 15px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.05));
  z-index: -1;
}

/* 游戏信息展示区域 */
.game-info {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

/* 游戏标题 */
.game-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

/* 游戏标签容器 */
.game-tags {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* 单个游戏标签 */
.game-tag {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
}

/* 游戏评分 */
.game-rating {
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.game-rating .stars {
  color: #ffd700;
  font-size: 20px;
}

.game-rating .score {
  color: #ffd700;
  font-weight: 700;
}
