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

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-how-to-choose-reliable-gaming-platform {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom for spacing */
}

.page-blog-how-to-choose-reliable-gaming-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-choose-reliable-gaming-platform__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-reliable-gaming-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-how-to-choose-reliable-gaming-platform__hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff; /* Ensure text is white on hero */
}

.page-blog-how-to-choose-reliable-gaming-platform__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 15px;
  font-size: clamp(2.2em, 4vw, 3em); /* Responsive font size for H1 */
}

.page-blog-how-to-choose-reliable-gaming-platform__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-how-to-choose-reliable-gaming-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content area */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-reliable-gaming-platform__section-title {
  font-size: 2.2em;
  color: #017439; /* Brand color for section titles */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platform__sub-title {
  font-size: 1.6em;
  color: #017439; /* Brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platform__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333333;
}

.page-blog-how-to-choose-reliable-gaming-platform__highlight {
  color: #017439; /* Highlight text with brand color */
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-gaming-platform__image-container {
  width: 100%;
  max-width: 100%;
  margin: 25px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.page-blog-how-to-choose-reliable-gaming-platform__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-blog-how-to-choose-reliable-gaming-platform__btn-primary:hover {
  background-color: #005f2c;
  border-color: #005f2c;
}

.page-blog-how-to-choose-reliable-gaming-platform__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-blog-how-to-choose-reliable-gaming-platform__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #005f2c;
  border-color: #005f2c;
}

.page-blog-how-to-choose-reliable-gaming-platform__cta-buttons,
.page-blog-how-to-choose-reliable-gaming-platform__cta-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.page-blog-how-to-choose-reliable-gaming-platform__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-how-to-choose-reliable-gaming-platform__list-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-reliable-gaming-platform__list-item .page-blog-how-to-choose-reliable-gaming-platform__sub-title {
  margin-top: 0;
  font-size: 1.4em;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #017439;
  background-color: #e6f7ed; /* Lighter brand color for FAQ question background */
  border-bottom: 1px solid #d0e8dd;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-question:hover {
  background-color: #d0e8dd;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-answer {
  padding: 15px 20px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

.page-blog-how-to-choose-reliable-gaming-platform__faq-item[open] .page-blog-how-to-choose-reliable-gaming-platform__faq-question {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-reliable-gaming-platform__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-how-to-choose-reliable-gaming-platform__section-title {
    font-size: 1.8em;
  }
  .page-blog-how-to-choose-reliable-gaming-platform__sub-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-gaming-platform {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__hero-section {
    padding: 10px 15px 40px 15px; /* Adjust padding for mobile */
  }
  
  .page-blog-how-to-choose-reliable-gaming-platform__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__intro-description {
    font-size: 1em;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__sub-title {
    font-size: 1.2em;
    margin-top: 20px;
  }

  .page-blog-how-to-choose-reliable-gaming-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-choose-reliable-gaming-platform__image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__cta-button,
  .page-blog-how-to-choose-reliable-gaming-platform__btn-primary,
  .page-blog-how-to-choose-reliable-gaming-platform__btn-secondary,
  .page-blog-how-to-choose-reliable-gaming-platform a[class*="button"],
  .page-blog-how-to-choose-reliable-gaming-platform a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin: 5px 0;
  }
  
  .page-blog-how-to-choose-reliable-gaming-platform__cta-buttons,
  .page-blog-how-to-choose-reliable-gaming-platform__button-group,
  .page-blog-how-to-choose-reliable-gaming-platform__btn-container,
  .page-blog-how-to-choose-reliable-gaming-platform__cta-footer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__faq-question {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-blog-how-to-choose-reliable-gaming-platform__faq-answer {
    padding: 12px 15px;
  }
  
  .page-blog-how-to-choose-reliable-gaming-platform__video-section {
    padding-top: 10px !important;
  }
}

/* Dark background for sections where needed */
.page-blog-how-to-choose-reliable-gaming-platform__dark-bg {
  background-color: #0a0a0a; /* Dark background matching body */
  color: #ffffff;
}

/* Light background for sections where needed */
.page-blog-how-to-choose-reliable-gaming-platform__light-bg {
  background-color: #ffffff;
  color: #333333;
}