.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #f5f0e7; /* Light text for dark background */
  background-color: #0A0F18; /* Main background color */
  line-height: 1.6;
}

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

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-game-reviews__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #cccccc;
}

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

.page-game-reviews__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #0A0F18; /* Dark text for gold background */
}

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

.page-game-reviews__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A0F18;
  transform: translateY(-2px);
}

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

.page-game-reviews__btn--large {
  padding: 16px 35px;
  font-size: 1.15em;
}

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

.page-game-reviews__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #cccccc;
}

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

.page-game-reviews__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

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

/* Hero Section */
.page-game-reviews__hero-section {
  background: linear-gradient(135deg, #0A0F18 0%, #3a414e 100%);
  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: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-game-reviews__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-game-reviews__hero-description {
  font-size: 1.3em;
  color: #f5f0e7;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-game-reviews__hero-buttons .page-game-reviews__btn {
  margin: 0 15px;
}

.page-game-reviews__hero-image {
  margin-top: 60px;
  max-width: 80%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Why Trust Us Section */
.page-game-reviews__why-trust-us-section {
  padding: 80px 0;
  background-color: #1a1f28;
}

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

.page-game-reviews__text-content {
  flex: 1;
  min-width: 300px;
}

.page-game-reviews__image--small {
  max-width: 400px;
  flex-shrink: 0;
}

/* Game Categories Section */
.page-game-reviews__game-categories-section {
  padding: 80px 0;
  background-color: #0A0F18;
}

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

.page-game-reviews__category-item {
  background-color: #1a1f28;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-reviews__category-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-game-reviews__category-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews__category-item p {
  color: #cccccc;
  font-size: 0.95em;
}

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

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

.page-game-reviews__review-card {
  background-color: #0A0F18;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-reviews__review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.page-game-reviews__review-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.4em;
  margin: 0;
}

.page-game-reviews__review-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__review-card h3 a:hover {
  color: #e6c200;
}

.page-game-reviews__review-description {
  padding: 0 20px 15px;
  color: #cccccc;
  font-size: 0.95em;
  flex-grow: 1;
}

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

/* Benefits Section */
.page-game-reviews__benefits-section {
  padding: 80px 0;
  background-color: #0A0F18;
}

.page-game-reviews__list--benefits li::before {
  color: #FFD700;
}

.page-game-reviews__image--large {
  max-width: 500px;
  flex-shrink: 0;
}

.page-game-reviews__benefits-section .page-game-reviews__content-wrapper {
  flex-direction: row-reverse; /* Image on right, text on left */
}

@media (max-width: 992px) {
  .page-game-reviews__benefits-section .page-game-reviews__content-wrapper {
    flex-direction: column; /* Stack vertically on smaller screens */
  }
  .page-game-reviews__image--large {
    max-width: 100%;
  }
}

/* Call to Action Section */
.page-game-reviews__cta-section {
  padding: 100px 0;
  background-color: #1a1f28;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__cta-content {
  position: relative;
  z-index: 1;
}

.page-game-reviews__section-title--cta {
  color: #FFD700;
  font-size: 3em;
}

.page-game-reviews__section-description--cta {
  color: #f5f0e7;
  margin-bottom: 50px;
}

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

.page-game-reviews__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px; /* Adjust size as needed */
  opacity: 0.3;
  z-index: 0;
  transform: translateX(20%) translateY(20%);
}

/* Floating Promo */
.page-game-reviews__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-game-reviews__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E53935; /* Red for emphasis */
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.page-game-reviews__floating-btn:hover {
  background-color: #c72c2c;
  transform: translateY(-3px) scale(1.05);
}

.page-game-reviews__floating-text {
  margin-right: 10px;
}

.page-game-reviews__floating-icon {
  font-size: 1.5em;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-reviews__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews__hero-description {
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__hero-buttons .page-game-reviews__btn {
    margin: 10px 0;
    width: 100%;
    display: block;
  }
  .page-game-reviews__content-wrapper {
    flex-direction: column;
  }
  .page-game-reviews__image--small, .page-game-reviews__image--large {
    max-width: 100%;
  }
  .page-game-reviews__cta-buttons .page-game-reviews__btn {
    margin: 10px 0;
    width: 100%;
    display: block;
  }
  .page-game-reviews__floating-promo {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 2em;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__hero-buttons .page-game-reviews__btn,
  .page-game-reviews__cta-buttons .page-game-reviews__btn {
    font-size: 0.95em;
    padding: 12px 20px;
  }
  .page-game-reviews__hero-image {
    max-width: 95%;
  }
  .page-game-reviews__cta-image {
    width: 250px;
  }
}