/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #003366; /* Main text color */
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-game-reviews__section {
  padding: 60px 0;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-reviews__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}

.page-game-reviews__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-game-reviews__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-game-reviews__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.4));
  z-index: 2;
}

.page-game-reviews__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-game-reviews__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-reviews__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-game-reviews__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-reviews__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-reviews__introduction p,
.page-game-reviews__why-reviews p,
.page-game-reviews__why-reviews ul,
.page-game-reviews__responsible-gaming p,
.page-game-reviews__conclusion p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
  color: #333333;
}

.page-game-reviews__why-reviews ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-game-reviews__why-reviews li {
  margin-bottom: 8px;
}

.page-game-reviews__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-game-reviews__image-wrapper {
  text-align: center;
}

.page-game-reviews__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__review-criteria.bg-dark-section {
  background-color: #003366;
  color: #ffffff;
}

.page-game-reviews__review-criteria.bg-dark-section .page-game-reviews__section-title,
.page-game-reviews__review-criteria.bg-dark-section .page-game-reviews__section-description {
  color: #ffffff;
}

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

.page-game-reviews__criterion-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-game-reviews__criterion-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFCC00;
}

.page-game-reviews__criterion-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-reviews__criterion-item i {
  font-size: 2.5em;
  color: #FFCC00;
  margin-bottom: 10px;
  display: block;
}

.page-game-reviews__process-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__game-categories .page-game-reviews__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-game-reviews__category-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.page-game-reviews__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__category-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-game-reviews__category-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-reviews__category-item p {
  font-size: 1em;
  color: #555555;
}

.page-game-reviews__featured-reviews.bg-dark-section {
  background-color: #003366;
  color: #ffffff;
}

.page-game-reviews__featured-reviews.bg-dark-section .page-game-reviews__section-title,
.page-game-reviews__featured-reviews.bg-dark-section .page-game-reviews__section-description {
  color: #ffffff;
}

.page-game-reviews__review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews__review-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-reviews__review-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFCC00;
}

.page-game-reviews__review-item h3 a {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__review-item h3 a:hover {
  color: #ffffff;
}

.page-game-reviews__review-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-reviews__read-more-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-game-reviews__read-more-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-reviews__cta {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-game-reviews__cta-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__cta-image {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
}

.page-game-reviews__cta-text {
  flex-grow: 1;
}

.page-game-reviews__cta-text .page-game-reviews__section-title {
  text-align: left;
  margin-bottom: 20px;
}

.page-game-reviews__cta-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
  text-align: left;
}

.page-game-reviews__cta-buttons {
  display: flex;
  gap: 20px;
}

.page-game-reviews__cta-button--primary {
  background-color: #003366;
  color: #ffffff;
}

.page-game-reviews__cta-button--primary:hover {
  background-color: #002244;
}

.page-game-reviews__cta-button--secondary {
  background-color: #FFCC00;
  color: #003366;
}

.page-game-reviews__cta-button--secondary:hover {
  background-color: #e6b800;
}

.page-game-reviews__responsible-gaming {
  text-align: center;
}

.page-game-reviews__responsible-gaming-image {
  max-width: 200px;
  height: auto;
  margin-top: 30px;
}

.page-game-reviews__conclusion .page-game-reviews__section-title {
  margin-bottom: 20px;
}

.highlight-text {
  color: #003366;
  font-weight: bold;
}

.bg-dark-section .highlight-text {
  color: #FFCC00;
}

/* Icons for criteria section - rudimentary example, real icons would be SVG/font */
.icon-gameplay::before { content: '🎮'; margin-right: 8px; }
.icon-graphics::before { content: '🎨'; margin-right: 8px; }
.icon-payout::before { content: '💰'; margin-right: 8px; }
.icon-features::before { content: '✨'; margin-right: 8px; }
.icon-mobile::before { content: '📱'; margin-right: 8px; }
.icon-security::before { content: '🔒'; margin-right: 8px; }

/* 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__content-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__cta-content {
    flex-direction: column;
    text-align: center;
  }
  .page-game-reviews__cta-image {
    max-width: 60%;
  }
  .page-game-reviews__cta-text .page-game-reviews__section-title {
    text-align: center;
  }
  .page-game-reviews__cta-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    height: 400px;
  }
  .page-game-reviews__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews__section {
    padding: 40px 0;
  }
  .page-game-reviews__criteria-grid,
  .page-game-reviews__categories-grid,
  .page-game-reviews__review-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__cta-image {
    max-width: 80%;
  }
}