/* style/resources-latest-game-reviews.css */
.page-resources-latest-game-reviews {
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Ensure consistency with body background */
}

.page-resources-latest-game-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-latest-game-reviews__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  box-sizing: border-box;
}

.page-resources-latest-game-reviews__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-resources-latest-game-reviews__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 2;
}

.page-resources-latest-game-reviews__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.page-resources-latest-game-reviews__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-game-reviews__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-latest-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold brand color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-resources-latest-game-reviews__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-latest-game-reviews__introduction-section,
.page-resources-latest-game-reviews__highlights-section,
.page-resources-latest-game-reviews__guide-section,
.page-resources-latest-game-reviews__conclusion-section {
  padding: 60px 0;
}

.page-resources-latest-game-reviews__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-latest-game-reviews__light-bg {
  background-color: #2a2a2a;
  color: #ffffff;
}

/* Buttons */
.page-resources-latest-game-reviews__btn-primary,
.page-resources-latest-game-reviews__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-game-reviews__btn-primary {
  background-color: #FFD700;
  color: #8B0000; /* Dark red text on gold button for contrast */
  border: 2px solid #FFD700;
}

.page-resources-latest-game-reviews__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-resources-latest-game-reviews__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-resources-latest-game-reviews__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Criteria Section */
.page-resources-latest-game-reviews__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-game-reviews__card {
  background-color: #2a2a2a; /* Light-dark background for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Light text for dark card background */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 450px;
}

.page-resources-latest-game-reviews__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-latest-game-reviews__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-latest-game-reviews__card-description {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

/* Highlights Section */
.page-resources-latest-game-reviews__highlight-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-game-reviews__highlight-item--reverse {
  flex-direction: row-reverse;
}

.page-resources-latest-game-reviews__highlight-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-latest-game-reviews__highlight-content {
  flex: 1;
  max-width: 50%;
}

.page-resources-latest-game-reviews__highlight-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-latest-game-reviews__highlight-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-game-reviews__highlight-title a:hover {
  text-decoration: underline;
}

/* Benefits Section */
.page-resources-latest-game-reviews__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-latest-game-reviews__benefits-list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__benefits-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-resources-latest-game-reviews__benefits-list li p {
  margin: 0;
  color: #f0f0f0;
}

/* Guide Section */
.page-resources-latest-game-reviews__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-latest-game-reviews__guide-list li {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__list-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-latest-game-reviews__list-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-game-reviews__list-title a:hover {
  text-decoration: underline;
}

.page-resources-latest-game-reviews__guide-list li p {
  margin: 0;
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__guide-list li p a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-game-reviews__guide-list li p a:hover {
  text-decoration: underline;
}

.page-resources-latest-game-reviews__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-latest-game-reviews__faq-list {
  margin-top: 40px;
}

.page-resources-latest-game-reviews__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-resources-latest-game-reviews__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFD700; /* Gold for FAQ question */
  font-weight: bold;
  background-color: #333333;
  transition: background-color 0.3s ease;
}

.page-resources-latest-game-reviews__faq-question:hover {
  background-color: #444444;
}

.page-resources-latest-game-reviews__faq-question h3 {
  margin: 0;
  color: #FFD700;
}

.page-resources-latest-game-reviews__faq-question h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-game-reviews__faq-question h3 a:hover {
  text-decoration: underline;
}

.page-resources-latest-game-reviews__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-resources-latest-game-reviews__faq-item.active .page-resources-latest-game-reviews__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-game-reviews__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__faq-item.active .page-resources-latest-game-reviews__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px 25px 25px;
}

.page-resources-latest-game-reviews__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

.page-resources-latest-game-reviews__faq-answer p a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-latest-game-reviews__faq-answer p a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-resources-latest-game-reviews__cta-final {
  text-align: center;
  margin-top: 40px;
}

.page-resources-latest-game-reviews__conclusion-section .page-resources-latest-game-reviews__text-block {
  text-align: center;
}

/* Highlight keywords */
.page-resources-latest-game-reviews .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-game-reviews__hero-title {
    font-size: 2.8em;
  }

  .page-resources-latest-game-reviews__hero-description {
    font-size: 1.1em;
  }

  .page-resources-latest-game-reviews__section-title {
    font-size: 2em;
  }

  .page-resources-latest-game-reviews__highlight-item {
    flex-direction: column;
  }

  .page-resources-latest-game-reviews__highlight-item--reverse {
    flex-direction: column;
  }

  .page-resources-latest-game-reviews__highlight-image,
  .page-resources-latest-game-reviews__highlight-content {
    max-width: 100%;
  }
}