/* style/blog-latest-bingo-platforms-review.css */
.page-blog-latest-bingo-platforms-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color, suitable for dark background */
  background-color: #0A0A0A; /* Background color */
}

.page-blog-latest-bingo-platforms-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-latest-bingo-platforms-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A;
}

.page-blog-latest-bingo-platforms-review__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let text stand out */
}

.page-blog-latest-bingo-platforms-review__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-blog-latest-bingo-platforms-review__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFD36B; /* Glow color for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-latest-bingo-platforms-review__intro-description {
  font-size: 1.2rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-latest-bingo-platforms-review__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-latest-bingo-platforms-review__btn-primary,
.page-blog-latest-bingo-platforms-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-latest-bingo-platforms-review__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-blog-latest-bingo-platforms-review__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-blog-latest-bingo-platforms-review__btn-secondary {
  background-color: transparent;
  color: #FFD36B; /* Glow color for border and text */
  border: 2px solid #FFD36B;
}

.page-blog-latest-bingo-platforms-review__btn-secondary:hover {
  background-color: #FFD36B;
  color: #0A0A0A;
}

.page-blog-latest-bingo-platforms-review__btn-inline {
  margin-top: 20px;
}

.page-blog-latest-bingo-platforms-review__btn-large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-blog-latest-bingo-platforms-review__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Primary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-blog-latest-bingo-platforms-review__sub-title {
  font-size: 1.8rem;
  color: #FFD36B; /* Secondary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-latest-bingo-platforms-review p {
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main color */
}

.page-blog-latest-bingo-platforms-review__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-latest-bingo-platforms-review__list-item {
  background-color: #111111; /* Card BG */
  border-left: 5px solid #F2C14E; /* Primary color accent */
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #FFF6D6;
  font-size: 1.1rem;
}

.page-blog-latest-bingo-platforms-review__list-item strong {
  color: #FFD36B; /* Glow color for strong text */
}

.page-blog-latest-bingo-platforms-review__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-blog-latest-bingo-platforms-review__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(242, 193, 78, 0.3); /* Subtle glow effect */
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

.page-blog-latest-bingo-platforms-review__platform-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  color: #FFF6D6;
}

.page-blog-latest-bingo-platforms-review__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-latest-bingo-platforms-review__card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Primary color for card titles */
  margin: 0;
}

.page-blog-latest-bingo-platforms-review__rating {
  color: #FFD36B; /* Glow color for rating stars */
  font-size: 1.5rem;
}

.page-blog-latest-bingo-platforms-review__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-latest-bingo-platforms-review__feature-list-title {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog-latest-bingo-platforms-review__feature-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-latest-bingo-platforms-review__faq-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-blog-latest-bingo-platforms-review__faq-list {
  margin-top: 30px;
}

.page-blog-latest-bingo-platforms-review__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-bingo-platforms-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2C14E; /* Primary color for FAQ questions */
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-latest-bingo-platforms-review__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-latest-bingo-platforms-review__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

.page-blog-latest-bingo-platforms-review__faq-item.active .page-blog-latest-bingo-platforms-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-bingo-platforms-review__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-blog-latest-bingo-platforms-review__faq-item.active .page-blog-latest-bingo-platforms-review__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-blog-latest-bingo-platforms-review__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-latest-bingo-platforms-review__hero-content {
    padding: 30px;
  }

  .page-blog-latest-bingo-platforms-review__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-latest-bingo-platforms-review__section-title {
    font-size: 2rem;
  }

  .page-blog-latest-bingo-platforms-review__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-bingo-platforms-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-bingo-platforms-review__hero-section {
    min-height: 400px;
  }

  .page-blog-latest-bingo-platforms-review__hero-content {
    padding: 20px;
  }

  .page-blog-latest-bingo-platforms-review__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-latest-bingo-platforms-review__intro-description {
    font-size: 1rem;
  }

  .page-blog-latest-bingo-platforms-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-latest-bingo-platforms-review__btn-primary,
  .page-blog-latest-bingo-platforms-review__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-bingo-platforms-review__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-blog-latest-bingo-platforms-review__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-latest-bingo-platforms-review__list-item {
    padding: 10px;
    font-size: 1rem;
  }

  .page-blog-latest-bingo-platforms-review__platform-card {
    padding: 20px;
  }

  .page-blog-latest-bingo-platforms-review__card-title {
    font-size: 1.5rem;
  }

  .page-blog-latest-bingo-platforms-review__rating {
    font-size: 1.2rem;
  }

  .page-blog-latest-bingo-platforms-review__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-latest-bingo-platforms-review__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-latest-bingo-platforms-review__faq-answer {
    padding: 0 15px;
  }

  .page-blog-latest-bingo-platforms-review__faq-item.active .page-blog-latest-bingo-platforms-review__faq-answer {
    padding: 15px;
  }

  /* Ensure all images are responsive */
  .page-blog-latest-bingo-platforms-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-latest-bingo-platforms-review__overview-section,
  .page-blog-latest-bingo-platforms-review__review-process-section,
  .page-blog-latest-bingo-platforms-review__top-platforms-section,
  .page-blog-latest-bingo-platforms-review__game-types-section,
  .page-blog-latest-bingo-platforms-review__bonuses-section,
  .page-blog-latest-bingo-platforms-review__payments-section,
  .page-blog-latest-bingo-platforms-review__mobile-section,
  .page-blog-latest-bingo-platforms-review__responsible-gaming-section,
  .page-blog-latest-bingo-platforms-review__faq-section,
  .page-blog-latest-bingo-platforms-review__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-latest-bingo-platforms-review__hero-section {
    padding-top: 10px !important; /* Ensure it's small */
  }
}