/* style/blog-how-to-choose-best-reputable-gaming-platform.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --background-color: #FFFFFF;
  --register-login-font-color: #FFFF00;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-blog-how-to-choose-best-reputable-gaming-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__hero-content {
  max-width: 960px;
  margin: 20px auto 0;
  text-align: center;
  padding: 0 20px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-primary,
.page-blog-how-to-choose-best-reputable-gaming-platform__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-primary {
  background-color: var(--register-button-color);
  color: var(--register-login-font-color);
  border: 2px solid var(--register-button-color);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-primary:hover {
  background-color: #e00;
  border-color: #e00;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--login-button-color);
  border: 2px solid var(--login-button-color);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-secondary:hover {
  background-color: var(--login-button-color);
  color: var(--secondary-color);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__content-area {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__light-bg {
  background-color: var(--background-color);
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-blog-how-to-choose-best-reputable-gaming-platform p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__criteria-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__criteria-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__criteria-heading {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__benefit-card {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__benefit-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__game-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__game-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__image-wrapper {
  text-align: center;
  margin: 30px 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__steps-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__steps-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__cta-wrapper--bottom {
  margin-top: 60px;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-section {
  margin-top: 30px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f5f5;
  color: var(--primary-color);
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
  margin-left: 15px;
}

.page-blog-how-to-choose-best-reputable-gaming-platform__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: var(--text-color-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-best-reputable-gaming-platform__hero-content {
    max-width: 768px;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__main-title {
    font-size: clamp(2em, 5vw, 2.5em);
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-reputable-gaming-platform {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__hero-section {
    padding: 20px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__hero-content {
    padding: 0 15px;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__description {
    font-size: 1em;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__btn-primary,
  .page-blog-how-to-choose-best-reputable-gaming-platform__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-best-reputable-gaming-platform__content-area,
  .page-blog-how-to-choose-best-reputable-gaming-platform__criteria-grid,
  .page-blog-how-to-choose-best-reputable-gaming-platform__benefits-list,
  .page-blog-how-to-choose-best-reputable-gaming-platform__image-wrapper,
  .page-blog-how-to-choose-best-reputable-gaming-platform__cta-wrapper,
  .page-blog-how-to-choose-best-reputable-gaming-platform__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-best-reputable-gaming-platform__criteria-item,
  .page-blog-how-to-choose-best-reputable-gaming-platform__benefit-card {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-reputable-gaming-platform__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-choose-best-reputable-gaming-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-best-reputable-gaming-platform__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-blog-how-to-choose-best-reputable-gaming-platform__faq-answer {
    padding: 0 20px 15px;
  }
}