/* style/platform-reviews.css */
.page-platform-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A2E47; /* Primary dark background */
  line-height: 1.6;
}

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

.page-platform-reviews__hero {
  background: linear-gradient(135deg, #1A2E47, #3A5F7F);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
}

.page-platform-reviews__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-platform-reviews__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-platform-reviews__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-platform-reviews__cta-button:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-platform-reviews__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-platform-reviews__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-platform-reviews__section:last-of-type {
  border-bottom: none;
}

.page-platform-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

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

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

.page-platform-reviews__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-platform-reviews__text-content {
  flex: 1;
}

.page-platform-reviews__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-platform-reviews__image-content {
  flex: 1;
  text-align: center;
}

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

.page-platform-reviews__image--center {
  display: block;
  margin: 40px auto 0;
}

.page-platform-reviews__about-ga179 .page-platform-reviews__image {
  max-height: 400px;
  object-fit: cover;
}

.page-platform-reviews__review-criteria .page-platform-reviews__section-title {
  margin-bottom: 30px;
}

.page-platform-reviews__review-criteria p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #B0B0B0;
}

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

.page-platform-reviews__criterion-item {
  background-color: #2A4460; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-platform-reviews__criterion-item:hover {
  transform: translateY(-5px);
  background-color: #3A5F7F;
}

.page-platform-reviews__criterion-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-platform-reviews__criterion-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-platform-reviews__criterion-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-platform-reviews__detail-list {
  margin-top: 40px;
}

.page-platform-reviews__detail-item {
  background-color: #2A4460;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-platform-reviews__detail-item h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-platform-reviews__detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-platform-reviews__detail-item h3 a:hover {
  color: #E5C100;
  text-decoration: underline;
}

.page-platform-reviews__detail-item p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-platform-reviews__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-platform-reviews__button:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

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

.page-platform-reviews__guide-card {
  background-color: #2A4460;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-platform-reviews__guide-card:hover {
  transform: translateY(-5px);
}

.page-platform-reviews__guide-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-platform-reviews__guide-card h3 {
  color: #FFD700;
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-platform-reviews__guide-card p {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-platform-reviews__promotions .page-platform-reviews__image {
  max-height: 350px;
  object-fit: cover;
}

.page-platform-reviews__responsible-gambling .page-platform-reviews__image {
  max-height: 350px;
  object-fit: cover;
}

.page-platform-reviews__conclusion p {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-platform-reviews__conclusion a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-platform-reviews__conclusion a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-platform-reviews__title {
    font-size: 2.8em;
  }

  .page-platform-reviews__subtitle {
    font-size: 1.3em;
  }

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

  .page-platform-reviews__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-platform-reviews__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-platform-reviews__image-content {
    margin-top: 30px;
  }

  .page-platform-reviews__criteria-grid, .page-platform-reviews__guide-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-platform-reviews__title {
    font-size: 2.2em;
  }

  .page-platform-reviews__subtitle {
    font-size: 1.1em;
  }

  .page-platform-reviews__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-platform-reviews__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  .page-platform-reviews__section {
    padding: 60px 0;
  }

  .page-platform-reviews__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-platform-reviews__text-content p {
    font-size: 1em;
  }

  .page-platform-reviews__criterion-item h3 {
    font-size: 1.4em;
  }

  .page-platform-reviews__guide-card h3 {
    font-size: 1.5em;
  }
}

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

  .page-platform-reviews__title {
    font-size: 1.8em;
  }

  .page-platform-reviews__subtitle {
    font-size: 0.9em;
  }

  .page-platform-reviews__section-title {
    font-size: 1.5em;
  }

  .page-platform-reviews__criteria-grid, .page-platform-reviews__guide-cards {
    grid-template-columns: 1fr;
  }

  .page-platform-reviews__container {
    padding: 0 15px;
  }
}