/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #f8f8f8; /* Light text for dark background */
  background-color: #1A2C42; /* Primary dark background */
}

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

.page-game-reviews__hero-section {
  background: linear-gradient(135deg, #1A2C42, #3a506b); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,gambling,patterns,dark]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews__hero-section > div {
  position: relative;
  z-index: 1;
}

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

.page-game-reviews__hero-subtitle {
  font-size: 1.5em;
  color: #d0d0d0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-reviews__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-game-reviews__intro-section, .page-game-reviews__criteria-section, .page-game-reviews__detail-list-section, .page-game-reviews__why-choose-section, .page-game-reviews__tips-section {
  padding: 80px 0;
}

.page-game-reviews__intro-section {
  background-color: #2a3d54;
}

.page-game-reviews__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-reviews__text-content {
  flex: 1;
}

.page-game-reviews__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-reviews__text-content strong {
  color: #E0B147;
}

.page-game-reviews__image-content {
  flex: 1;
  text-align: center;
}

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

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

.page-game-reviews__grid--two-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-game-reviews__grid-item {
  background-color: #2a3d54;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(224, 177, 71, 0.3);
}

.page-game-reviews__grid-item:hover {
  transform: translateY(-5px);
  background-color: #3a506b;
}

.page-game-reviews__grid-item h3 {
  color: #E0B147;
  font-size: 1.6em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-game-reviews__grid-item p {
  color: #cccccc;
  font-size: 1em;
  line-height: 1.6;
}

.page-game-reviews__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-game-reviews__review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-game-reviews__card {
  background-color: #2a3d54;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(224, 177, 71, 0.3);
}

.page-game-reviews__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(224, 177, 71, 0.2);
}

.page-game-reviews__card-title {
  font-size: 1.4em;
  color: #E0B147;
  padding: 20px 20px 10px;
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
}

.page-game-reviews__card-title a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__card-title a:hover {
  color: #f0c266; /* Lighter accent on hover */
}

.page-game-reviews__card-description {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 20px 15px;
  line-height: 1.6;
}

.page-game-reviews__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews__btn--primary {
  background-color: #E0B147; /* Accent color */
  color: #1A2C42; /* Dark text on accent */
  margin-top: 20px;
}

.page-game-reviews__btn--primary:hover {
  background-color: #f0c266; /* Lighter accent on hover */
  transform: translateY(-2px);
}

.page-game-reviews__btn--secondary {
  background-color: transparent;
  color: #E0B147; /* Accent text */
  border: 2px solid #E0B147;
  margin-left: 15px;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #E0B147;
  color: #1A2C42;
  transform: translateY(-2px);
}

.page-game-reviews__btn--small {
  font-size: 0.95em;
  padding: 10px 20px;
  background-color: #E0B147;
  color: #1A2C42;
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-game-reviews__btn--small:hover {
  background-color: #f0c266;
}

.page-game-reviews__feature-item {
  background-color: #2a3d54;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(224, 177, 71, 0.3);
}

.page-game-reviews__feature-item h3 {
  color: #E0B147;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-game-reviews__feature-item p {
  color: #cccccc;
  font-size: 1em;
  line-height: 1.6;
}

.page-game-reviews__feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.page-game-reviews__tips-section {
  background-color: #1A2C42;
}

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

.page-game-reviews__tip-item {
  background-color: #2a3d54;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #E0B147;
}

.page-game-reviews__tip-item h4 {
  color: #E0B147;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-game-reviews__tip-item p {
  color: #cccccc;
  font-size: 0.95em;
  line-height: 1.6;
}

.page-game-reviews__cta-bottom {
  text-align: center;
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid rgba(224, 177, 71, 0.2);
}

.page-game-reviews__cta-bottom p {
  font-size: 1.3em;
  color: #E0B147;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-reviews__cta-bottom .page-game-reviews__btn {
  margin: 0 15px;
}

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

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

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

  .page-game-reviews__content-wrapper {
    flex-direction: column;
  }

  .page-game-reviews__grid, .page-game-reviews__review-cards, .page-game-reviews__tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-game-reviews__grid--two-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

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

  .page-game-reviews__cta-bottom .page-game-reviews__btn {
    display: block;
    margin: 15px auto;
  }
}

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

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

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

  .page-game-reviews__grid, .page-game-reviews__review-cards, .page-game-reviews__tips-grid, .page-game-reviews__grid--two-col {
    grid-template-columns: 1fr;
  }

  .page-game-reviews__btn {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }
  .page-game-reviews__btn--small {
    width: calc(100% - 40px);
    max-width: none;
  }

  .page-game-reviews__card-image {
    height: 180px;
  }
}