.page-resources-top-betting-strategies {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure consistency with body background from shared.css */
}

.page-resources-top-betting-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-top-betting-strategies__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding: 120px 20px 60px; /* Adjusted padding-top to account for fixed header */
  background-color: #017439; /* Brand color as background */
  color: #ffffff;
}

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

.page-resources-top-betting-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Special color for hero title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-top-betting-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

.page-resources-top-betting-strategies__btn-primary,
.page-resources-top-betting-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-top-betting-strategies__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-top-betting-strategies__btn-primary:hover {
  background-color: #e02020;
  color: #ffffff;
}

.page-resources-top-betting-strategies__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-resources-top-betting-strategies__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808; /* Register/Login color */
}

/* Content Area */
.page-resources-top-betting-strategies__content-area {
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  padding: 60px 20px;
}

.page-resources-top-betting-strategies__section-title,
.page-resources-top-betting-strategies__sub-section-title {
  color: #017439; /* Brand color for titles */
  margin-bottom: 25px;
  text-align: left;
}

.page-resources-top-betting-strategies__section-title {
  font-size: 2.5em;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 15px;
  margin-top: 40px;
}

.page-resources-top-betting-strategies__sub-section-title {
  font-size: 1.8em;
  margin-top: 30px;
}

.page-resources-top-betting-strategies__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-top-betting-strategies__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-top-betting-strategies__list-item {
  margin-bottom: 10px;
}

.page-resources-top-betting-strategies__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-top-betting-strategies__faq-list {
  margin-top: 40px;
}

.page-resources-top-betting-strategies__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-top-betting-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-resources-top-betting-strategies__faq-question:hover {
  background-color: #f0f0f0;
}

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

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

.page-resources-top-betting-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 1.05em;
}

.page-resources-top-betting-strategies__faq-item.active .page-resources-top-betting-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-top-betting-strategies__faq-answer p {
  margin-bottom: 0;
}

.page-resources-top-betting-strategies__faq-answer a {
  color: #017439;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-top-betting-strategies__hero-title {
    font-size: 3em;
  }
  .page-resources-top-betting-strategies__section-title {
    font-size: 2em;
  }
  .page-resources-top-betting-strategies__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-top-betting-strategies__hero-section {
    padding: var(--header-offset, 120px) 15px 40px;
  }
  .page-resources-top-betting-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-resources-top-betting-strategies__hero-description {
    font-size: 1.1em;
  }
  .page-resources-top-betting-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-top-betting-strategies__btn-primary,
  .page-resources-top-betting-strategies__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-top-betting-strategies__content-area {
    padding: 40px 15px;
  }
  .page-resources-top-betting-strategies__section-title {
    font-size: 1.8em;
    margin-top: 30px;
  }
  .page-resources-top-betting-strategies__sub-section-title {
    font-size: 1.4em;
  }
  .page-resources-top-betting-strategies__text-block,
  .page-resources-top-betting-strategies__list-item {
    font-size: 1em;
  }
  .page-resources-top-betting-strategies__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-top-betting-strategies__faq-answer {
    padding: 0 20px;
  }
  .page-resources-top-betting-strategies__faq-item.active .page-resources-top-betting-strategies__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsive adaptation */
  .page-resources-top-betting-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-top-betting-strategies__section,
  .page-resources-top-betting-strategies__card,
  .page-resources-top-betting-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-top-betting-strategies__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-top-betting-strategies__hero-title {
    font-size: 1.8em;
  }
  .page-resources-top-betting-strategies__hero-description {
    font-size: 0.95em;
  }
  .page-resources-top-betting-strategies__section-title {
    font-size: 1.6em;
  }
  .page-resources-top-betting-strategies__sub-section-title {
    font-size: 1.2em;
  }
}