/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #0A1A3A; /* Dark blue background */
  line-height: 1.6;
}

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

.page-game-reviews__hero-section {
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

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

.page-game-reviews__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0; /* Light gray */
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-game-reviews__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #E0E0E0; /* Light gray */
}

.page-game-reviews__description--emphasis {
  font-style: italic;
  font-weight: bold;
}

.page-game-reviews__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A1A3A; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1A3A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews__intro-section {
  padding: 80px 0;
  background-color: #0A1A3A;
}

.page-game-reviews__intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-game-reviews__intro-text {
  flex: 2;
  color: #E0E0E0;
}

.page-game-reviews__intro-text h2 {
  text-align: left;
  padding-top: 0;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-game-reviews__intro-text p {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-game-reviews__intro-image {
  flex: 1;
  min-width: 300px;
}

.page-game-reviews__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__game-categories {
  background-color: #1A3A6A; /* Slightly lighter dark blue */
  padding: 80px 0;
}

.page-game-reviews__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-reviews__category-card {
  background-color: #0A1A3A;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.page-game-reviews__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
  margin-bottom: 20px;
}

.page-game-reviews__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  padding: 0 15px;
}

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

.page-game-reviews__card-title a:hover {
  text-decoration: underline;
}

.page-game-reviews__card-description {
  font-size: 1em;
  color: #CCCCCC; /* Lighter gray */
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-game-reviews__review-process {
  padding: 80px 0;
  background-color: #0A1A3A;
}

.page-game-reviews__process-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
  color: #E0E0E0;
}

.page-game-reviews__process-list li {
  background-color: #1A3A6A;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__process-list li strong {
  color: #FFD700;
}

.page-game-reviews__img--full-width {
  margin-top: 40px;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.page-game-reviews__benefits-section {
  background-color: #1A3A6A;
  padding: 80px 0;
}

.page-game-reviews__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-reviews__benefit-item {
  background-color: #0A1A3A;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews__benefit-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews__benefit-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-reviews__benefit-item p {
  color: #CCCCCC; /* Lighter gray */
  font-size: 1em;
}

.page-game-reviews__cta-section {
  background-color: #0A1A3A;
  padding: 100px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

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

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

  .page-game-reviews__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-game-reviews__intro-content {
    flex-direction: column;
    text-align: center;
  }

  .page-game-reviews__intro-text h2 {
    text-align: center;
  }

  .page-game-reviews__intro-text p {
    text-align: center;
  }

  .page-game-reviews__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero-section {
    padding: 80px 0;
  }

  .page-game-reviews__hero-title {
    font-size: 2.2em;
  }

  .page-game-reviews__hero-subtitle {
    font-size: 1em;
  }

  .page-game-reviews__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews__category-grid,
  .page-game-reviews__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews__process-list {
    padding: 0 15px;
  }

  .page-game-reviews__process-list li {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-game-reviews__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-game-reviews__btn--secondary {
    margin-top: 15px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }

  .page-game-reviews__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews__btn {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-game-reviews__cta-buttons {
    gap: 10px;
  }
}