.page-index-review-game-c {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: var(--bg-color, #0D0E12); /* Default to dark background */
}

.page-index-review-game-c__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-review-game-c__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-index-review-game-c__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-index-review-game-c__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-review-game-c__hero-content {
  text-align: center;
  padding: 40px 0;
  max-width: 800px;
}

.page-index-review-game-c__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #FFB04D; /* Glow color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-review-game-c__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

/* Content Sections */
.page-index-review-game-c__content-section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG for sections */
  border-bottom: 1px solid #A84F0C; /* Border color */
}

.page-index-review-game-c__content-section:nth-child(even) {
  background-color: #0D0E12; /* Background color */
}

.page-index-review-game-c__dark-bg {
  background-color: #0D0E12;
}

.page-index-review-game-c__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
  font-weight: 700;
  color: #FFB04D; /* Glow color */
  text-align: center;
  margin-bottom: 40px;
}

.page-index-review-game-c__sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-review-game-c__paragraph {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-index-review-game-c__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure images are responsive by default */
  box-sizing: border-box;
}

.page-index-review-game-c__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-index-review-game-c__list-item {
  margin-bottom: 10px;
  color: #FFF3E6;
}

.page-index-review-game-c__highlight {
  color: #FFB04D;
  font-weight: bold;
}

/* Buttons */
.page-index-review-game-c__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-index-review-game-c__cta-buttons--center {
  justify-content: center;
}

.page-index-review-game-c__btn-primary,
.page-index-review-game-c__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-index-review-game-c__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-index-review-game-c__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.6);
}

.page-index-review-game-c__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.25rem;
}

.page-index-review-game-c__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-game-c__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
}

/* FAQ Section */
.page-index-review-game-c__faq-section {
  padding: 60px 0;
  background-color: #0D0E12; /* Background color */
}

.page-index-review-game-c__faq-list {
  margin-top: 30px;
}

.page-index-review-game-c__faq-item {
  margin-bottom: 15px;
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  overflow: hidden;
  background-color: #17191F; /* Card BG */
}