/* 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, #0A246A, #F39C12);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-game-reviews__hero-title,
.page-game-reviews__hero-description {
  position: relative;
  z-index: 2;
}

.page-game-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
}

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

.page-game-reviews__intro,
.page-game-reviews__why-choose,
.page-game-reviews__responsible-gaming {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews__intro p,
.page-game-reviews__responsible-gaming p {
  text-align: center;
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
  color: #555;
}

.page-game-reviews__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
}

.page-game-reviews__image--full-width {
  display: block;
  margin: 30px auto;
}

.page-game-reviews__image--center {
  display: block;
  margin: 30px auto;
  max-width: 70%;
}

.page-game-reviews__game-categories {
  padding: 60px 0;
  background-color: #f4f7f6;
}

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

.page-game-reviews__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-game-reviews__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-reviews__card-title {
  font-size: 1.6em;
  color: #0A246A;
  padding: 20px;
  margin-bottom: 0;
  font-weight: bold;
}

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

.page-game-reviews__card-title a:hover {
  color: #F39C12;
}

.page-game-reviews__card-description {
  padding: 0 20px 20px;
  color: #666;
  flex-grow: 1;
}

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

.page-game-reviews__btn--primary {
  background-color: #F39C12;
  color: #0A246A;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.page-game-reviews__btn--primary:hover {
  background-color: #e08c0f;
  color: #061842;
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.6);
}

.page-game-reviews__btn--secondary {
  background-color: #0A246A;
  color: #fff;
  margin: 0 20px 20px;
  box-shadow: 0 5px 15px rgba(10, 36, 106, 0.4);
}

.page-game-reviews__btn--secondary:hover {
  background-color: #061842;
  color: #F39C12;
  box-shadow: 0 8px 20px rgba(10, 36, 106, 0.6);
}

.page-game-reviews__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  margin: 10px;
}

.page-game-reviews__why-choose {
  background-color: #e6edf0;
}

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

.page-game-reviews__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-game-reviews__feature-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-game-reviews__feature-item p {
  color: #666;
  font-size: 1.05em;
}

.page-game-reviews__cta {
  background: #0A246A;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews__cta-content {
  max-width: 900px;
}

.page-game-reviews__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #F39C12;
}

.page-game-reviews__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

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

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

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

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

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

  .page-game-reviews__cta-description {
    font-size: 1.1em;
  }
}

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

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

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

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

  .page-game-reviews__intro, 
  .page-game-reviews__why-choose, 
  .page-game-reviews__responsible-gaming {
    padding: 40px 0;
  }

  .page-game-reviews__grid,
  .page-game-reviews__features-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-game-reviews__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero {
    padding: 40px 0;
  }

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

  .page-game-reviews__hero-description {
    font-size: 0.9em;
  }

  .page-game-reviews__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .page-game-reviews__card-title {
    font-size: 1.2em;
  }

  .page-game-reviews__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-game-reviews__btn--large {
    font-size: 1em;
    padding: 10px 20px;
    margin: 5px;
  }

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

  .page-game-reviews__cta-description {
    font-size: 0.9em;
  }
}