/* style/blog-the-history-of-bingo.css */
.page-blog-the-history-of-bingo {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-blog-the-history-of-bingo__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A; /* Ensure consistent dark background */
  overflow: hidden;
}

.page-blog-the-history-of-bingo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-the-history-of-bingo__hero-content {
  position: absolute;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-the-history-of-bingo__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-the-history-of-bingo__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  line-height: 1.5;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-the-history-of-bingo__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Dark text for contrast on bright button */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-the-history-of-bingo__hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-the-history-of-bingo__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Consistent dark background */
  color: #FFF6D6;
}

.page-blog-the-history-of-bingo__article {
  line-height: 1.8;
}

.page-blog-the-history-of-bingo__article-meta {
  font-size: 0.9em;
  color: rgba(255, 246, 214, 0.7);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-the-history-of-bingo__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Main Color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-the-history-of-bingo__sub-section-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #FFD36B; /* Accent Color */
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.page-blog-the-history-of-bingo__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #FFF6D6;
  text-align: justify;
}

.page-blog-the-history-of-bingo__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 800px; /* Example content image size */
}

.page-blog-the-history-of-bingo__cta-section {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-the-history-of-bingo__cta-title {
  font-size: clamp(1.5em, 2.8vw, 2.2em);
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-blog-the-history-of-bingo__cta-text {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-the-history-of-bingo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-the-history-of-bingo__btn-primary,
.page-blog-the-history-of-bingo__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-the-history-of-bingo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-blog-the-history-of-bingo__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-the-history-of-bingo__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-blog-the-history-of-bingo__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Dark text on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-the-history-of-bingo__faq-list {
  margin-top: 50px;
  border-top: 1px solid #3A2A12; /* Border */
  padding-top: 20px;
}

.page-blog-the-history-of-bingo__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-the-history-of-bingo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.1em;
  background-color: #111111;
  border-bottom: 1px solid transparent; /* To prevent double border when active */
}

.page-blog-the-history-of-bingo__faq-item.active .page-blog-the-history-of-bingo__faq-question {
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-blog-the-history-of-bingo__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1); /* Subtle hover effect */
}

.page-blog-the-history-of-bingo__faq-title {
  margin: 0;
  font-size: 1em;
  color: #FFF6D6;
}

.page-blog-the-history-of-bingo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Main Color */
}

.page-blog-the-history-of-bingo__faq-item.active .page-blog-the-history-of-bingo__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-the-history-of-bingo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #111111;
}

.page-blog-the-history-of-bingo__faq-item.active .page-blog-the-history-of-bingo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-blog-the-history-of-bingo__faq-answer p {
  margin-bottom: 0;
  font-size: 0.95em;
  color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-the-history-of-bingo {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-the-history-of-bingo__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-blog-the-history-of-bingo__hero-content {
    padding: 15px;
  }

  .page-blog-the-history-of-bingo__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-the-history-of-bingo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-the-history-of-bingo__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-the-history-of-bingo__content-area {
    padding: 30px 15px;
  }

  .page-blog-the-history-of-bingo__image-in-content {
    margin: 30px auto;
  }

  .page-blog-the-history-of-bingo__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-the-history-of-bingo__sub-section-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-the-history-of-bingo__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-the-history-of-bingo__cta-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .page-blog-the-history-of-bingo__cta-title {
    font-size: 1.6em;
    margin-bottom: 10px;
  }

  .page-blog-the-history-of-bingo__cta-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-the-history-of-bingo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-the-history-of-bingo__btn-primary,
  .page-blog-the-history-of-bingo__btn-secondary {
    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;
  }

  .page-blog-the-history-of-bingo__faq-list {
    margin-top: 30px;
  }

  .page-blog-the-history-of-bingo__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-blog-the-history-of-bingo__faq-answer {
    padding: 0 15px;
  }

  .page-blog-the-history-of-bingo__faq-item.active .page-blog-the-history-of-bingo__faq-answer {
    padding: 15px;
  }

  .page-blog-the-history-of-bingo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-the-history-of-bingo__hero-image {
    filter: brightness(0.5) !important; /* More dim for better mobile text contrast */
  }

  .page-blog-the-history-of-bingo__section,
  .page-blog-the-history-of-bingo__card,
  .page-blog-the-history-of-bingo__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}