.page-gaming-reviews {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-gaming-reviews__hero {
  background: linear-gradient(135deg, #0A2463 0%, #304e90 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gaming-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gaming-reviews__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

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

.page-gaming-reviews__hero > .page-gaming-reviews__container {
  position: relative;
  z-index: 1;
}

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

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

.page-gaming-reviews__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-gaming-reviews__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-gaming-reviews__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-gaming-reviews__grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-gaming-reviews__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gaming-reviews__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-gaming-reviews__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A2463;
}

.page-gaming-reviews__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gaming-reviews__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-gaming-reviews__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.page-gaming-reviews__list-item {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
}

.page-gaming-reviews__list-item-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-gaming-reviews__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-gaming-reviews__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-gaming-reviews__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
}

.page-gaming-reviews__btn--secondary:hover {
  background-color: #071a47;
  border-color: #071a47;
  transform: translateY(-2px);
}

.page-gaming-reviews__btn--tertiary {
  background-color: #f0f2f5;
  color: #0A2463;
  border: 1px solid #ddd;
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-gaming-reviews__btn--tertiary:hover {
  background-color: #e0e2e5;
  color: #0A2463;
  transform: translateY(-1px);
}

.page-gaming-reviews__btn--link {
  background: none;
  border: none;
  color: #0A2463;
  padding: 0;
  font-weight: bold;
  text-decoration: underline;
}

.page-gaming-reviews__btn--link:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-gaming-reviews__image-full {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gaming-reviews__product-review {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border-left: 5px solid #0A2463;
}

.page-gaming-reviews__product-review:nth-of-type(even) {
  border-left-color: #FFD700;
}

.page-gaming-reviews__product-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-gaming-reviews__product-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gaming-reviews__cta-box {
  background-color: #0A2463;
  color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-gaming-reviews__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFD700;
}

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

.page-gaming-reviews__guide-step {
  background-color: #f0f2f5;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 4px solid #FFD700;
}

.page-gaming-reviews__guide-step-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-gaming-reviews__review-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-right: 4px solid #0A2463;
}

.page-gaming-reviews__review-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-gaming-reviews__review-card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gaming-reviews__review-card-title a:hover {
  color: #FFD700;
}

.page-gaming-reviews__review-card-description {
  color: #666;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gaming-reviews__hero-title {
    font-size: 2.5em;
  }
  .page-gaming-reviews__section-title {
    font-size: 2em;
  }
  .page-gaming-reviews__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gaming-reviews__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gaming-reviews__hero {
    padding: 60px 0;
  }
  .page-gaming-reviews__hero-title {
    font-size: 2em;
  }
  .page-gaming-reviews__hero-description {
    font-size: 1em;
  }
  .page-gaming-reviews__section {
    padding: 40px 0;
  }
  .page-gaming-reviews__section-title {
    font-size: 1.8em;
  }
  .page-gaming-reviews__section-intro {
    font-size: 0.95em;
  }
  .page-gaming-reviews__grid--3-cols, .page-gaming-reviews__grid--2-cols, .page-gaming-reviews__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-gaming-reviews__card, .page-gaming-reviews__list-item, .page-gaming-reviews__product-review, .page-gaming-reviews__guide-step, .page-gaming-reviews__review-card {
    padding: 20px;
  }
  .page-gaming-reviews__card-title, .page-gaming-reviews__list-item-title, .page-gaming-reviews__product-title, .page-gaming-reviews__guide-step-title, .page-gaming-reviews__review-card-title {
    font-size: 1.3em;
  }
  .page-gaming-reviews__cta-text {
    font-size: 1.2em;
  }
}