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

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

/* Hero Section */
.page-game-reviews__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3947b1 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-game-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-game-reviews__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__hero-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 400px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  display: none; /* Hide on mobile initially */
}

.page-game-reviews__hero-image {
  width: 100%;
  height: auto;
}

/* Introduction Section */
.page-game-reviews__introduction {
  padding: 60px 0;
  background-color: #fff;
  text-align: justify;
}

.page-game-reviews__introduction p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

/* Section Titles */
.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-game-reviews__section-subtitle {
  font-size: 1.2em;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* Game Categories */
.page-game-reviews__game-categories {
  padding: 60px 0;
  background-color: #f0f2f5;
}

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

.page-game-reviews__category-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-game-reviews__category-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-game-reviews__category-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

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

.page-game-reviews__category-btn {
  display: inline-block;
  background-color: #1A237E; /* Dark blue button */
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-reviews__category-btn:hover {
  background-color: #2e3b8f; /* Slightly lighter blue on hover */
}

/* Featured Reviews */
.page-game-reviews__featured-reviews {
  padding: 80px 0;
  background-color: #fff;
}

.page-game-reviews__review-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-game-reviews__review-item {
  display: flex;
  gap: 40px;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
}

.page-game-reviews__review-item--reversed {
  flex-direction: row-reverse;
}

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

.page-game-reviews__review-title {
  font-size: 2em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-game-reviews__review-title a {
  color: #1A237E;
  text-decoration: none;
}

.page-game-reviews__review-title a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-game-reviews__review-excerpt {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 25px;
  text-align: justify;
}

.page-game-reviews__review-image-desktop {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__review-image-mobile {
  display: none; /* Hidden on desktop */
}

.page-game-reviews__review-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-game-reviews__action-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-game-reviews__action-btn:first-child {
  background-color: #5f65a5; /* Lighter blue variant */
  color: #fff;
}

.page-game-reviews__action-btn:first-child:hover {
  background-color: #4a5091;
  transform: translateY(-2px);
}

.page-game-reviews__action-btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue text */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__action-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Why nbet Section */
.page-game-reviews__why-nbet {
  padding: 80px 0;
  background-color: #1A237E; /* Dark blue background */
  color: #fff;
  text-align: center;
}

.page-game-reviews__why-nbet .page-game-reviews__section-title {
  color: #FFD700; /* Gold title */
}

.page-game-reviews__why-nbet .page-game-reviews__section-title::after {
  background-color: #fff;
}

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

.page-game-reviews__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: background-color 0.3s ease;
}

.page-game-reviews__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-game-reviews__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); /* White icon with subtle glow */
}

.page-game-reviews__feature-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-game-reviews__cta-bottom {
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 12px;
}

.page-game-reviews__cta-bottom p {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 25px;
  color: #fff;
}

.page-game-reviews__cta-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-reviews__hero-image-wrapper {
    display: block;
  }
}

@media (max-width: 992px) {
  .page-game-reviews__review-item {
    flex-direction: column; /* Stack on smaller screens */
    text-align: center;
  }

  .page-game-reviews__review-item--reversed {
    flex-direction: column; /* Also stack reversed items */
  }

  .page-game-reviews__review-image-desktop {
    display: none;
  }

  .page-game-reviews__review-image-mobile {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

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

  .page-game-reviews__review-actions {
    justify-content: center;
  }

  .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__section-subtitle {
    font-size: 1em;
  }
}

@media (max-width: 767px) {
  .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__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-game-reviews__category-item {
    padding: 20px;
  }

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

  .page-game-reviews__review-item {
    padding: 20px;
    gap: 20px;
  }

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

  .page-game-reviews__review-excerpt {
    font-size: 0.95em;
  }

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

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

  .page-game-reviews__feature-item h3 {
    font-size: 1.5em;
  }

  .page-game-reviews__cta-bottom {
    padding: 30px;
  }

  .page-game-reviews__cta-bottom p {
    font-size: 1.2em;
  }

  .page-game-reviews__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}