.page-resources-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Body background from shared.css */
}

.page-resources-betting-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-resources-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-betting-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-betting-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-betting-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-betting-guide__section {
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-resources-betting-guide__introduction-section {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-betting-guide__bet-types-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-betting-guide__strategy-section {
  background-color: #f8f8f8;
  color: #333333;
}

.page-resources-betting-guide__guide-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-betting-guide__responsible-gambling-section {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-betting-guide__faq-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-betting-guide__cta-final {
  background-color: #f8f8f8;
  color: #333333;
  padding-bottom: 100px;
}

.page-resources-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-betting-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-resources-betting-guide__introduction-section .page-resources-betting-guide__section-title,
.page-resources-betting-guide__strategy-section .page-resources-betting-guide__section-title,
.page-resources-betting-guide__responsible-gambling-section .page-resources-betting-guide__section-title,
.page-resources-betting-guide__cta-final .page-resources-betting-guide__section-title {
  color: #26A9E0;
}

.page-resources-betting-guide__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-betting-guide__keyword {
  font-weight: bold;
  color: #26A9E0;
}

.page-resources-betting-guide__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  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;
  border: 2px solid transparent;
}

.page-resources-betting-guide__btn-primary:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

.page-resources-betting-guide__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-resources-betting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-betting-guide__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-betting-guide__card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
}

.page-resources-betting-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.page-resources-betting-guide__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-resources-betting-guide__card-text {
  font-size: 1em;
  color: #e0e0e0;
  flex-grow: 1;
}

.page-resources-betting-guide__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-betting-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-betting-guide__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-betting-guide__feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

.page-resources-betting-guide__feature-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-resources-betting-guide__feature-description {
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
}

.page-resources-betting-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-betting-guide__step-card {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: #ffffff;
  height: 100%;
}

.page-resources-betting-guide__step-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-resources-betting-guide__step-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-betting-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-betting-guide__list-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-resources-betting-guide__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-betting-guide__faq-question:hover {
  background-color: #1e87b7;
}

.page-resources-betting-guide__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-resources-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-betting-guide__faq-item.active .page-resources-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #3a3a3a;
  color: #e0e0e0;
}

.page-resources-betting-guide__faq-item.active .page-resources-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px 25px;
}

.page-resources-betting-guide__faq-text {
  margin: 0;
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-betting-guide__inline-link {
  color: #EA7C07;
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-betting-guide__inline-link:hover {
  color: #d16b06;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-betting-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-betting-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-betting-guide__section-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__card-title, .page-resources-betting-guide__feature-title, .page-resources-betting-guide__step-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-resources-betting-guide__hero-section {
    height: 500px;
  }
  .page-resources-betting-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-betting-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-betting-guide__btn-primary, .page-resources-betting-guide__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-resources-betting-guide__section {
    padding: 60px 0;
  }
  .page-resources-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-betting-guide__section-text {
    font-size: 1em;
  }
  .page-resources-betting-guide__cards-grid, .page-resources-betting-guide__features-grid, .page-resources-betting-guide__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-betting-guide__card, .page-resources-betting-guide__feature-card, .page-resources-betting-guide__step-card {
    padding: 20px;
  }
  .page-resources-betting-guide__list-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-resources-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-betting-guide__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-resources-betting-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-betting-guide__section,
  .page-resources-betting-guide__card,
  .page-resources-betting-guide__container,
  .page-resources-betting-guide__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-betting-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }

  /* Mobile button responsiveness */
  .page-resources-betting-guide__cta-button,
  .page-resources-betting-guide__btn-primary,
  .page-resources-betting-guide__btn-secondary,
  .page-resources-betting-guide a[class*="button"],
  .page-resources-betting-guide 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;
  }
  .page-resources-betting-guide__cta-buttons,
  .page-resources-betting-guide__button-group,
  .page-resources-betting-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
}