.detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(145deg, #181818, #2b2b2b);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  padding: 40px;
  position: relative;
  overflow: hidden;
  gap: 32px;
  backdrop-filter: blur(14px);
  animation: fadeInUp 0.5s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('{$obj.vod_pic|mac_url_img}');
  background-size: cover;
  background-position: center;
  filter: blur(80px) brightness(0.2) saturate(0.7);
  z-index: -1;
  opacity: 0.5;
}

.detail-pic {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(255, 107, 129, 0.5);
  border: 2px solid #ff6b81;
  transition: transform 0.3s ease;
}
.detail-pic:hover {
  transform: scale(1.05);
}
.detail-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f5f5f5;
}

.detail-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffe066;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.detail-line {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.detail-line strong {
  color: #ff4757;
  font-weight: 600;
}

.detail-line a,
.detail-meta a {
  color: #ffa07a;
  text-decoration: none;
  font-weight: 500;
}
.detail-line a:hover,
.detail-meta a:hover {
  text-decoration: underline;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  font-size: 14px;
}
.detail-meta span {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 24px;
  color: #f0f0f0;
  font-weight: 500;
  transition: background 0.3s;
}
.detail-meta span:hover {
  background: rgba(255, 255, 255, 0.15);
}

.detail-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 14px;
  width: fit-content;
  font-size: 15px;
  font-weight: 600;
}

.detail-score strong {
  color: #ffd84e;
}

.stars {
  display: flex;
  gap: 4px;
  font-size: 18px;
  color: gold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.stars i {
  font-style: normal;
}

.score-text {
  color: #fff;
  font-weight: 500;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
  .detail-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 24px;
  }

  .detail-info {
    text-align: center;
    margin-top: 20px;
  }

  .detail-pic {
    width: 70%;
    height: auto;
  }

  .detail-meta {
    justify-content: center;
  }

  .detail-title {
    font-size: 26px;
  }
}
