/* style/platform-reviews-platform-c-games.css */
.page-platform-reviews-platform-c-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-platform-reviews-platform-c-games__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-platform-reviews-platform-c-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-platform-reviews-platform-c-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.page-platform-reviews-platform-c-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-platform-reviews-platform-c-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.page-platform-reviews-platform-c-games__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.page-platform-reviews-platform-c-games__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-platform-reviews-platform-c-games__cta-button--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-platform-reviews-platform-c-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-platform-reviews-platform-c-games__content-section {
  padding: 60px 0;
}

.page-platform-reviews-platform-c-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-platform-reviews-platform-c-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-platform-reviews-platform-c-games__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-platform-reviews-platform-c-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-platform-reviews-platform-c-games__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-reviews-platform-c-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-platform-reviews-platform-c-games__feature-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-platform-reviews-platform-c-games__feature-heading {
  font-size: 1.7em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-platform-reviews-platform-c-games__feature-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-platform-reviews-platform-c-games__item-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-platform-reviews-platform-c-games__item-button:hover {
  background-color: #0056b3;
}

.page-platform-reviews-platform-c-games__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-platform-reviews-platform-c-games__advantage-list li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-platform-reviews-platform-c-games__advantage-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-platform-reviews-platform-c-games__advantage-list p {
  color: #666666;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-platform-reviews-platform-c-games__advantage-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
}

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

.page-platform-reviews-platform-c-games__why-item {
  background-color: #e9f5ff; /* Light blue background */
  border-left: 5px solid #007bff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-platform-reviews-platform-c-games__why-heading {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-platform-reviews-platform-c-games__why-item p {
  color: #444444;
}

.page-platform-reviews-platform-c-games__steps-list {
  list-style: decimal;
  padding-left: 25px;
  max-width: 800px;
  margin: 40px auto;
  color: #333333;
  font-size: 1.1em;
}

.page-platform-reviews-platform-c-games__steps-list li {
  margin-bottom: 15px;
}

.page-platform-reviews-platform-c-games__steps-list strong {
  color: #007bff;
}

.page-platform-reviews-platform-c-games__guide-image {
  display: block;
  max-width: 700px;
  width: 100%;
  margin: 30px auto 50px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-platform-c-games__app-benefits {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-platform-reviews-platform-c-games__app-benefits li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  font-size: 1.05em;
  color: #444444;
  position: relative;
  padding-left: 40px;
}

.page-platform-reviews-platform-c-games__app-benefits li::before {
  content: '✔';
  color: #007bff;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-platform-reviews-platform-c-games__responsible-gambling-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

.page-platform-reviews-platform-c-games__responsible-gambling-list li {
  background-color: #fff3cd; /* Auxiliary color light variant */
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #856404; /* Darker text for contrast */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-platform-reviews-platform-c-games__hero-title {
    font-size: 2.8em;
  }
  .page-platform-reviews-platform-c-games__section-title {
    font-size: 2em;
  }
  .page-platform-reviews-platform-c-games__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-platform-reviews-platform-c-games__app-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-platform-reviews-platform-c-games__hero-title {
    font-size: 2.2em;
  }
  .page-platform-reviews-platform-c-games__hero-description {
    font-size: 1em;
  }
  .page-platform-reviews-platform-c-games__section-title {
    font-size: 1.8em;
  }
  .page-platform-reviews-platform-c-games__intro-text {
    font-size: 0.95em;
  }
  .page-platform-reviews-platform-c-games__feature-item {
    padding: 20px;
  }
  .page-platform-reviews-platform-c-games__advantage-list li {
    flex-direction: column;
  }
  .page-platform-reviews-platform-c-games__why-choose-us {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-platform-reviews-platform-c-games__hero-title {
    font-size: 1.8em;
  }
  .page-platform-reviews-platform-c-games__hero-section {
    padding: 60px 0;
  }
  .page-platform-reviews-platform-c-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-platform-reviews-platform-c-games__section-title {
    font-size: 1.5em;
  }
  .page-platform-reviews-platform-c-games__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-platform-reviews-platform-c-games__advantage-heading {
    font-size: 1.5em;
  }
  .page-platform-reviews-platform-c-games__why-heading {
    font-size: 1.3em;
  }
  .page-platform-reviews-platform-c-games__steps-list,
  .page-platform-reviews-platform-c-games__app-benefits,
  .page-platform-reviews-platform-c-games__responsible-gambling-list {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-platform-reviews-platform-c-games__app-benefits li {
    padding-left: 30px;
  }
  .page-platform-reviews-platform-c-games__app-benefits li::before {
    left: 10px;
  }
}