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

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%); /* Deeper blue to slightly lighter blue */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-game-reviews__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-game-reviews__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-game-reviews__intro p,
.page-game-reviews__strategies p,
.page-game-reviews__download p,
.page-game-reviews__responsible-gambling p,
.page-game-reviews__cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-game-reviews__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

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

.page-game-reviews__image-caption {
  font-style: italic;
  color: #666;
  margin-top: 10px;
  font-size: 0.9em;
}

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

.page-game-reviews__game-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-reviews__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.page-game-reviews__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-game-reviews__game-card-title {
  font-size: 1.6em;
  color: #003366;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-game-reviews__game-card-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-game-reviews__game-card .page-game-reviews__button {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-game-reviews__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews__list li {
  background-color: #e9f5ff;
  border-left: 5px solid #003366;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #222;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-game-reviews__list li strong {
  color: #003366;
}

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

.page-game-reviews__promo-card {
  background-color: #fefbe6; /* Light golden background */
  border: 1px solid #ffeb99;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-reviews__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews__promo-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-reviews__note {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  margin-top: 30px;
}

.page-game-reviews__download-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-game-reviews__download-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
  filter: invert(100%); /* Make icons white for dark buttons */
}

.page-game-reviews__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-game-reviews__button--primary {
  background-color: #FFCC00;
  color: #003366; /* Deep blue text for gold button */
}

.page-game-reviews__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.page-game-reviews__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-game-reviews__button--secondary:hover {
  background-color: #0a4d8c;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.page-game-reviews__button--tertiary {
  background-color: #CC0000; /* Red accent */
  color: #fff;
  border: 2px solid #CC0000;
}

.page-game-reviews__button--tertiary:hover {
  background-color: #a30000;
  border-color: #a30000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.page-game-reviews__button--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-game-reviews__button--small:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-game-reviews__button--download {
  background-color: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-game-reviews__button--download:hover {
  background-color: #0a4d8c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-game-reviews__game-grid,
  .page-game-reviews__promo-grid {
    grid-template-columns: 1fr;
  }

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

  .page-game-reviews__download-options {
    flex-direction: column;
    align-items: center;
  }

  .page-game-reviews__download-options a {
    width: 80%;
    max-width: 300px;
  }
}

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

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

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

  .page-game-reviews__game-card-title {
    font-size: 1.4em;
  }

  .page-game-reviews__promo-title {
    font-size: 1.5em;
  }

  .page-game-reviews__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}