@charset "UTF-8";

body {
  background-image: url(./../images/index/header/bg.jpg);
  background-repeat: repeat-y;
  background-size: 100%;
}

.review-page {
  margin-top: 20px;
}

.review-page,
.more-reviews {
  padding: 0 60px;
}

h2 {
  font-size: 60px;
}

.review-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* 왼쪽: 메인 영상과 리뷰 텍스트 */
.left-content {
  width: 75%;
}

/* 메인 썸네일 (비디오) */
.main-video {
  width: 100%;
  height: auto;
}

.main-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 오른쪽: 사이드 썸네일들 */
.side-videos {
  width: 20%;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  gap: 82px;
}

.side-video {
  position: relative;
  width: 100%;
  height: 200px;
}

.side-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.play-icon {
  position: absolute;
  top: 35%;
  left: 45%;
  font-size: 40px;
  color: #fff;
  opacity: 0.9;
}

/* 리뷰 텍스트 */
.review-text {
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.5);
  height: 800px;
  padding: 50px 0 0 50px;
}

.review-text h3 {
  font-size: 45px;
  margin-bottom: 10px;
}

.views {
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
}

.tags span {
  background: #9bceff;
  color: #000;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 12px;
}

.score {
  font-size: 72px;
  background: linear-gradient(to top, #6a32a8, #9b4fff);
  width: 120px;
  height: 120px;
  border-radius: 10px;
  text-align: center;
  line-height: 120px;
  margin: 20px 0;
}

.review-top {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}

/* 스토리 영역 */
.story {
  max-width: 800px;
  margin-bottom: 20px;
}

/* 게임 총점 리뷰 */
.ratings {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 120px;
}

.ratings>div {
  text-align: center;
}

.ratings h4 {
  width: 100%;
}

.circle {
  width: 120px;
  height: 120px;
  border: 6px solid #a168f2;
  border-radius: 50%;
  text-align: center;
  line-height: 110px;
  font-size: 20px;
  background-color: transparent;
}

.more-reviews .review-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  height: 500px;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px;
}

.card {
  background: #1b0732;
  border-radius: 1px;
  height: 229px;
  width: 327px;
}

.card h6 {
  font-size: 16px;
  margin-bottom: 10px;
}

.card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.card p {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.score-card {
  margin-top: 10px;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-align: center;
  line-height: 40px;
}

.score-box {
  margin-left: auto;
  background: linear-gradient(to top, #6a32a8, #9b4fff);
  width: 80px;
  height: 80px;
  border-radius: 8px;
  text-align: center;
  line-height: 80px;
  font-size: 40px;
  font-weight: bold;
  color: white;
}


.genre {
  background: #9bceff;
  color: #000;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 13px;
}

.card:hover img {
  transform: scale(1.05);
}