:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg-color: #111111;
  --background-color: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

.page-blog-bingo-newbie-guide {
  color: var(--text-main); /* #FFF6D6 */
  background-color: var(--background-color); /* #0A0A0A */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-blog-bingo-newbie-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color); /* #F2C14E */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-bingo-newbie-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-bingo-newbie-guide__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-main); /* #FFF6D6 */
}

.page-blog-bingo-newbie-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-bingo-newbie-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-bingo-newbie-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text contrast */
}

.page-blog-bingo-newbie-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #ffffff; /* Explicit white for hero content */
}

.page-blog-bingo-newbie-guide__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--glow-color); /* #FFD36B */
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-bingo-newbie-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-bingo-newbie-guide__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}