/* style/resources-gaming-platform-review.css */
.page-resources-gaming-platform-review {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-resources-gaming-platform-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #FFFFFF;
  overflow: hidden;
}

.page-resources-gaming-platform-review__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-resources-gaming-platform-review__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-gaming-platform-review__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-gaming-platform-review__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-gaming-platform-review__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-gaming-platform-review__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-gaming-platform-review__btn-primary,
.page-resources-gaming-platform-review__btn-secondary,
.page-resources-gaming-platform-review__btn-tertiary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-gaming-platform-review__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-resources-gaming-platform-review__btn-primary:hover {
  background-color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-resources-gaming-platform-review__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-resources-gaming-platform-review__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-resources-gaming-platform-review__btn-tertiary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
  padding: 8px 20px;
  font-size: 0.9em;
}

.page-resources-gaming-platform-review__btn-tertiary:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}

.page-resources-gaming-platform-review__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
  line-height: 1.3;
}

.page-resources-gaming-platform-review__intro-section,
.page-resources-gaming-platform-review__games-section,
.page-resources-gaming-platform-review__security-section,
.page-resources-gaming-platform-review__guide-section,
.page-resources-gaming-platform-review__payment-section,
.page-resources-gaming-platform-review__faq-section,
.page-resources-gaming-platform-review__conclusion-section {
  padding: 60px 0;
}

.page-resources-gaming-platform-review__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-gaming-platform-review__features-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-resources-gaming-platform-review__feature-item {
  background-color: #0a0a0a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-gaming-platform-review__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-gaming-platform-review__feature-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-gaming-platform-review__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-gaming-platform-review__feature-description {
  font-size: 1em;
  color: #cccccc;
}

.page-resources-gaming-platform-review__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-gaming-platform-review__game-category-item {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-gaming-platform-review__game-category-item:hover {
  transform: translateY(-10px);
}