.page-resources-how-to-login-bingo-plus {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

@media (max-width: 768px) {
  .page-resources-how-to-login-bingo-plus {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed, but still use var */
  }
}

.page-resources-how-to-login-bingo-plus__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 500px;
}

.page-resources-how-to-login-bingo-plus__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-how-to-login-bingo-plus__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-how-to-login-bingo-plus__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-login-bingo-plus__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color */
  color: #333333;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-resources-how-to-login-bingo-plus__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-resources-how-to-login-bingo-plus__cta-button--secondary {
  background-color: #0056b3; /* Darker primary color */
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-resources-how-to-login-bingo-plus__cta-button--secondary:hover {
  background-color: #004085;
  border-color: #e0a800;
}

.page-resources-how-to-login-bingo-plus__hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
}

.page-resources-how-to-login-bingo-plus__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-resources-how-to-login-bingo-plus__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-login-bingo-plus__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-how-to-login-bingo-plus__back-link:hover {
  color: #0056b3;
}

.page-resources-how-to-login-bingo-plus__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-resources-how-to-login-bingo-plus__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-login-bingo-plus__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-how-to-login-bingo-plus__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-resources-how-to-login-bingo-plus__image-container img {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure images don't stretch too wide */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-login-bingo-plus__ordered-list,
.page-resources-how-to-login-bingo-plus__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-how-to-login-bingo-plus__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 20px;
  text-indent: -20px;
}

.page-resources-how-to-login-bingo-plus__ordered-list .page-resources-how-to-login-bingo-plus__list-item {
  list-style-type: decimal;
}

.page-resources-how-to-login-bingo-plus__unordered-list .page-resources-how-to-login-bingo-plus__list-item {
  list-style-type: disc;
}

.page-resources-how-to-login-bingo-plus__list-item strong {
  color: #007bff;
}

.page-resources-how-to-login-bingo-plus__cta-group {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-how-to-login-bingo-plus__related-resources-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-how-to-login-bingo-plus__related-resources-item {
  margin-bottom: 10px;
}

.page-resources-how-to-login-bingo-plus__related-resources-item a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-how-to-login-bingo-plus__related-resources-item a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .page-resources-how-to-login-bingo-plus__hero-title {
    font-size: 2.5em;
  }
  .page-resources-how-to-login-bingo-plus__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-login-bingo-plus__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-login-bingo-plus__subsection-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-login-bingo-plus__hero-section {
    padding: 60px 15px;
  }
  .page-resources-how-to-login-bingo-plus__hero-title {
    font-size: 2em;
  }
  .page-resources-how-to-login-bingo-plus__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-login-bingo-plus__cta-button {
    width: 100%;
    margin: 10px 0;
    min-width: unset;
  }
  .page-resources-how-to-login-bingo-plus__content-area {
    margin: 20px auto;
    padding: 15px;
  }
  .page-resources-how-to-login-bingo-plus__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-login-bingo-plus__subsection-title {
    font-size: 1.4em;
  }
  .page-resources-how-to-login-bingo-plus__text-content,
  .page-resources-how-to-login-bingo-plus__list-item {
    font-size: 1em;
  }
  .page-resources-how-to-login-bingo-plus__image-container img {
    max-width: 100%; /* Ensure mobile images do not overflow */
    width: 100%;
    height: auto;
  }
  .page-resources-how-to-login-bingo-plus__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-login-bingo-plus__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-login-bingo-plus__section-title {
    font-size: 1.6em;
  }
  .page-resources-how-to-login-bingo-plus__subsection-title {
    font-size: 1.2em;
  }
}