.container {
  margin: 24px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}












.thumb-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .thumb-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.thumb {
  aspect-ratio: 1;
  background-color: #d1d1d1;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  cursor: pointer;
  overflow: hidden;
}

.thumb:hover {
  transform: translateY(-2px);
  background-color: #c5c5c5;
}

/* 中间核心详情区 */
.game-detail-box {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .game-detail-box {
    flex-direction: column;
  }
}

.preview-img {
  width: 256px;
  height: 256px;
  background-color: #d1d1d1;
  flex-shrink: 0;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(150, 54, 6, 0.38);
  border-radius: 24px 24px 24px 24px;
  border: 2px solid #E09D78;
}

.info-card {
  flex: 1;
  background-color: #a34100;
  border-radius: 28px;
  padding: 32px 40px;
  color: white;
  position: relative;
  box-shadow: 0 10px 20px rgba(163, 65, 0, 0.2);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .info-card {
    padding: 30px 20px;
  }
}

.title {
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  padding-right: 306px;
}

@media (max-width: 768px) {
  .title {
    padding-right: 0;
    font-size: 20px;
    text-align: center;
  }
}

.category {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 20px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .category {
    text-align: center;
  }

  .rating {
    justify-content: center;
        margin-bottom: 12px;
  }
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star.unfilled {
  color: #ccc;
  opacity: 0.5;
}

.rating-val {
  font-size: 16px;
  font-weight: 800;
  margin-left: 5px;
}

/* 极大还原的 Start 按钮 */
.start-btn-container {
  position: absolute;
  top: 32px;
  right: 30px;
  width: 280px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 36px;
  padding: 3px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.1s;
}

@media (max-width: 1024px) {
  .start-btn-container {
    width: 200px;
    height: 50px;
    top: 20px;
    right: 20px;
  }

  .start-btn {
    font-size: 24px !important;
  }
}

@media (max-width: 768px) {
  .start-btn-container {
    position: static;
    width: 100%;
            margin: 8px 0;
  }
}

.start-btn-container:hover {
  transform: scale(1.02);
}

.start-btn-container:active {
  transform: scale(0.98);
}

.start-btn {
  width: 100%;
    height: 100%;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 15%, #d2691e 85%, #8b4513 100%);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    gap: 20px;
}

.start-btn::before,
.start-btn::after {
  content: "«";
  font-size: 24px;
  opacity: 0.6;
}

.start-btn::after {
  content: "»";
}

.description-text {
  font-size: 16px;
  color: #FFFFFF;
  line-height: 24px;
  opacity: 0.95;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: justify;
  max-height: 96px;
  overflow: auto;
  padding: 0px 30px 0 0;
}

.description-text::-webkit-scrollbar {
  width: 6px;
  background: #e39b6ba8;
  border-radius: 6px;
}

.description-text::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .description-text {
    width: 100%;
    -webkit-line-clamp: unset;
    text-align: left;
  }
}

/* 广告区域 */
.advertisement-block {
  width: 100%;
  height: 380px;
  background-color: #d1d1d1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eee;
  font-size: 52px;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .advertisement-block {
    height: 200px;
    font-size: 32px;
  }
  .container {
    margin: 14px auto;
    gap: 14px;
}
}