.page-resources-top-game-platform-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Light body background #f4f4f4, so dark text */
  background-color: #f4f4f4;
}

.page-resources-top-game-platform-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-top-game-platform-guide__section {
  padding: 60px 0;
}

.page-resources-top-game-platform-guide__section--intro {
  background-color: #f4f4f4;
}

.page-resources-top-game-platform-guide__section--criteria {
  background-color: #e8eaf6; /* Light background for contrast */
}

.page-resources-top-game-platform-guide__section--games {
  background-color: #f4f4f4;
}

.page-resources-top-game-platform-guide__section--tips {
  background-color: #e8eaf6;
}

.page-resources-top-game-platform-guide__section--promotions {
  background-color: #f4f4f4;
}

.page-resources-top-game-platform-guide__section--safety {
  background-color: #e8eaf6;
}

.page-resources-top-game-platform-guide__section--faq {
  background-color: #f4f4f4;
}

.page-resources-top-game-platform-guide__section--conclusion {
  background-color: #4A148C; /* Dark background */
  color: #ffffff; /* White text for dark background */
}

.page-resources-top-game-platform-guide__section--conclusion .page-resources-top-game-platform-guide__section-title,
.page-resources-top-game-platform-guide__section--conclusion .page-resources-top-game-platform-guide__text-block {
  color: #ffffff;
}

.page-resources-top-game-platform-guide__main-title,
.page-resources-top-game-platform-guide__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #4A148C;
}

.page-resources-top-game-platform-guide__section--conclusion .page-resources-top-game-platform-guide__main-title,
.page-resources-top-game-platform-guide__section--conclusion .page-resources-top-game-platform-guide__section-title {
  color: #FFC107;
}

.page-resources-top-game-platform-guide__intro-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-resources-top-game-platform-guide__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-top-game-platform-guide__text-block .page-resources-top-game-platform-guide__highlight {
  font-weight: bold;
  color: #4A148C;
}

.page-resources-top-game-platform-guide__section--conclusion .page-resources-top-game-platform-guide__text-block .page-resources-top-game-platform-guide__highlight {
  color: #FFC107;
}

/* Hero Section */
.page-resources-top-game-platform-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, #4A148C, #6A1B9A);
  color: #ffffff;
}

.page-resources-top-game-platform-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-top-game-platform-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-top-game-platform-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-top-game-platform-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-top-game-platform-guide__hero-content .page-resources-top-game-platform-guide__main-title {
    color: #FFC107;
}

.page-resources-top-game-platform-guide__hero-content .page-resources-top-game-platform-guide__intro-description {
    color: #f0f0f0;
}

.page-resources-top-game-platform-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFC107;
  color: #4A148C;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-top-game-platform-guide__cta-button:hover {
  background: #FFA000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-top-game-platform-guide__cta-area {
    text-align: center;
    margin-top: 40px;
}

.page-resources-top-game-platform-guide__cta-button--wide {
    min-width: 250px;
}

/* Grid Layouts */
.page-resources-top-game-platform-guide__grid,
.page-resources-top-game-platform-guide__game-grid,
.page-resources-top-game-platform-guide__promo-grid,
.page-resources-top-game-platform-guide__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-top-game-platform-guide__card,
.page-resources-top-game-platform-guide__game-card,
.page-resources-top-game-platform-guide__promo-card,
.page-resources-top-game-platform-guide__safety-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-top-game-platform-guide__card:hover,
.page-resources-top-game-platform-guide__game-card:hover,
.page-resources-top-game-platform-guide__promo-card:hover,
.page-resources-top-game-platform-guide__safety-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-top-game-platform-guide__card-image,
.page-resources-top-game-platform-guide__game-card-image,
.page-resources-top-game-platform-guide__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-top-game-platform-guide__card-title,
.page-resources-top-game-platform-guide__game-card-title,
.page-resources-top-game-platform-guide__promo-card-title,
.page-resources-top-game-platform-guide__safety-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: #4A148C;
}

.page-resources-top-game-platform-guide__game-card-title a {
  color: #4A148C;
  text-decoration: none;
}

.page-resources-top-game-platform-guide__game-card-title a:hover {
  text-decoration: underline;
  color: #FFC107;
}

.page-resources-top-game-platform-guide__card p,
.page-resources-top-game-platform-guide__game-card p,
.page-resources-top-game-platform-guide__promo-card p,
.page-resources-top-game-platform-guide__safety-card p {
  font-size: 15px;
  color: #555555;
  flex-grow: 1;
}

.page-resources-top-game-platform-guide__promo-card-link {
  display: inline-block;
  margin-top: 15px;
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-top-game-platform-guide__promo-card-link:hover {
  text-decoration: underline;
}

/* List Styles */
.page-resources-top-game-platform-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-top-game-platform-guide__list-item {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #4A148C;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #333333;
}

.page-resources-top-game-platform-guide__list-item strong {
  color: #4A148C;
}

/* FAQ Styles */
.page-resources-top-game-platform-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-top-game-platform-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-top-game-platform-guide__faq-item.active .page-resources-top-game-platform-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-top-game-platform-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-top-game-platform-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-top-game-platform-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-top-game-platform-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #4A148C;
}

.page-resources-top-game-platform-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-top-game-platform-guide__faq-item.active .page-resources-top-game-platform-guide__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

/* Global Image Sizing for content area */
.page-resources-top-game-platform-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-top-game-platform-guide__main-title {
    font-size: 32px;
  }
  .page-resources-top-game-platform-guide__section-title {
    font-size: 30px;
  }
  .page-resources-top-game-platform-guide__intro-description {
    font-size: 17px;
  }
  .page-resources-top-game-platform-guide__grid,
  .page-resources-top-game-platform-guide__game-grid,
  .page-resources-top-game-platform-guide__promo-grid,
  .page-resources-top-game-platform-guide__safety-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-top-game-platform-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-top-game-platform-guide__hero-image img {
    border-radius: 4px;
  }
  
  .page-resources-top-game-platform-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-top-game-platform-guide__main-title {
    font-size: 28px;
  }
  .page-resources-top-game-platform-guide__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-resources-top-game-platform-guide__intro-description,
  .page-resources-top-game-platform-guide__text-block,
  .page-resources-top-game-platform-guide__list-item,
  .page-resources-top-game-platform-guide__card p,
  .page-resources-top-game-platform-guide__game-card p,
  .page-resources-top-game-platform-guide__promo-card p,
  .page-resources-top-game-platform-guide__safety-card p {
    font-size: 15px;
    text-align: left;
  }
  
  .page-resources-top-game-platform-guide__section {
    padding: 40px 0;
  }

  .page-resources-top-game-platform-guide__container {
    padding: 0 15px;
  }

  .page-resources-top-game-platform-guide__grid,
  .page-resources-top-game-platform-guide__game-grid,
  .page-resources-top-game-platform-guide__promo-grid,
  .page-resources-top-game-platform-guide__safety-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-top-game-platform-guide__card,
  .page-resources-top-game-platform-guide__game-card,
  .page-resources-top-game-platform-guide__promo-card,
  .page-resources-top-game-platform-guide__safety-card {
    padding: 20px;
  }

  .page-resources-top-game-platform-guide__card-image,
  .page-resources-top-game-platform-guide__game-card-image,
  .page-resources-top-game-platform-guide__promo-card-image {
    height: 180px;
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-resources-top-game-platform-guide__card-title,
  .page-resources-top-game-platform-guide__game-card-title,
  .page-resources-top-game-platform-guide__promo-card-title,
  .page-resources-top-game-platform-guide__safety-card-title {
    font-size: 20px;
  }

  .page-resources-top-game-platform-guide__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-resources-top-game-platform-guide__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-resources-top-game-platform-guide__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-resources-top-game-platform-guide__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-top-game-platform-guide__faq-item.active .page-resources-top-game-platform-guide__faq-answer {
    padding: 15px !important;
  }

  .page-resources-top-game-platform-guide__cta-area {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-resources-top-game-platform-guide__cta-button {
    width: 100%;
  }

  /* Ensure all images inside content sections are responsive */
  .page-resources-top-game-platform-guide img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-resources-top-game-platform-guide__section,
  .page-resources-top-game-platform-guide__card,
  .page-resources-top-game-platform-guide__container,
  .page-resources-top-game-platform-guide__game-card,
  .page-resources-top-game-platform-guide__promo-card,
  .page-resources-top-game-platform-guide__safety-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-top-game-platform-guide__cta-buttons,
  .page-resources-top-game-platform-guide__button-group,
  .page-resources-top-game-platform-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-top-game-platform-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}