.page-resources-sports-betting-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Assuming body background is black from shared.css */
}

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

/* Hero Section */
.page-resources-sports-betting-strategies__hero-section {
  background-color: #0A192F;
  padding: 80px 0 60px;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
}

.page-resources-sports-betting-strategies__main-title {
  font-size: 44px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-sports-betting-strategies__description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-resources-sports-betting-strategies__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-sports-betting-strategies__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-strategies__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-strategies__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-strategies__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-resources-sports-betting-strategies__content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-sports-betting-strategies__content-section.page-resources-sports-betting-strategies__dark-bg {
  background-color: #0A192F;
  color: #ffffff;
}

.page-resources-sports-betting-strategies__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-sports-betting-strategies__sub-title {
  font-size: 28px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-sports-betting-strategies__text-block {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-resources-sports-betting-strategies__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-sports-betting-strategies__list-item {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-resources-sports-betting-strategies__list-item::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-sports-betting-strategies__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-sports-betting-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-resources-sports-betting-strategies__faq-section {
  padding: 60px 0;
}

.page-resources-sports-betting-strategies__faq-list {
  margin-top: 40px;
}

.page-resources-sports-betting-strategies__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A2A40; /* Slightly lighter dark background for FAQ item */
}

.page-resources-sports-betting-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A192F;
  border: 1px solid #1A2A40;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-sports-betting-strategies__faq-question:hover {
  background: #1A2A40;
  border-color: #FFD700;
}

.page-resources-sports-betting-strategies__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-resources-sports-betting-strategies__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-sports-betting-strategies__faq-item.active .page-resources-sports-betting-strategies__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-resources-sports-betting-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background-color: #1A2A40;
  color: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-resources-sports-betting-strategies__faq-item.active .page-resources-sports-betting-strategies__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
}

.page-resources-sports-betting-strategies__faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #f0f0f0;
}

/* CTA Section (final) */
.page-resources-sports-betting-strategies__cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-sports-betting-strategies__main-title {
    font-size: 38px;
  }
  .page-resources-sports-betting-strategies__section-title {
    font-size: 32px;
  }
  .page-resources-sports-betting-strategies__sub-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-strategies__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-sports-betting-strategies__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-resources-sports-betting-strategies__description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-resources-sports-betting-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-sports-betting-strategies__cta-button {
    width: 100% !important;
    font-size: 16px;
    padding: 12px 25px;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-sports-betting-strategies__content-section,
  .page-resources-sports-betting-strategies__faq-section,
  .page-resources-sports-betting-strategies__cta-section {
    padding: 40px 0;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-sports-betting-strategies__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-sports-betting-strategies__sub-title {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-sports-betting-strategies__text-block,
  .page-resources-sports-betting-strategies__list-item {
    font-size: 16px;
  }

  .page-resources-sports-betting-strategies__image-wrapper {
    margin: 30px 0;
  }

  .page-resources-sports-betting-strategies__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-sports-betting-strategies__faq-question {
    padding: 15px;
    flex-wrap: wrap;
    border-radius: 6px;
  }

  .page-resources-sports-betting-strategies__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }

  .page-resources-sports-betting-strategies__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-resources-sports-betting-strategies__faq-answer {
    padding: 0 15px;
  }

  .page-resources-sports-betting-strategies__faq-item.active .page-resources-sports-betting-strategies__faq-answer {
    padding: 15px !important;
  }

  .page-resources-sports-betting-strategies__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-strategies__main-title {
    font-size: 28px;
  }
  .page-resources-sports-betting-strategies__section-title {
    font-size: 24px;
  }
  .page-resources-sports-betting-strategies__sub-title {
    font-size: 20px;
  }
  .page-resources-sports-betting-strategies__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}