.page-resources-betting-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: var(--secondary-color); /* Matches body background from shared.css */
}

.page-resources-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
  overflow: hidden;
}

.page-resources-betting-strategy__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-betting-strategy__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-betting-strategy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-betting-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: rgba(38, 169, 224, 0.9); /* Use primary color with transparency */
  color: #ffffff; /* White text for dark background */
}

.page-resources-betting-strategy__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-betting-strategy__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-betting-strategy__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-betting-strategy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-betting-strategy__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-betting-strategy__btn-primary:hover {
  background: #d46d06;
  border-color: #d46d06;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-strategy__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0; /* Primary color */
  border: 2px solid #26A9E0;
}

.page-resources-betting-strategy__btn-secondary:hover {
  background: #e0f4ff;
  border-color: #1e8dc7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-betting-strategy__section {
  padding: 60px 20px;
  text-align: center;
}

.page-resources-betting-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-resources-betting-strategy__container--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-betting-strategy__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-betting-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #333333;
}

.page-resources-betting-strategy__link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-betting-strategy__link:hover {
  color: #1e8dc7;
  text-decoration: underline;
}

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

.page-resources-betting-strategy__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
}

.page-resources-betting-strategy__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-resources-betting-strategy__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-resources-betting-strategy__content-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-betting-strategy__content-flex--reverse {
  flex-direction: row-reverse;
}

.page-resources-betting-strategy__text-block {
  flex: 1;
  min-width: 300px;
}

.page-resources-betting-strategy__image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-resources-betting-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-resources-betting-strategy__sub-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-betting-strategy__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-resources-betting-strategy__dark-bg .page-resources-betting-strategy__section-title,
.page-resources-betting-strategy__dark-bg .page-resources-betting-strategy__list-item p {
  color: #ffffff;
}

.page-resources-betting-strategy__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-resources-betting-strategy__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-resources-betting-strategy__icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #FFFFFF;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-betting-strategy__main-title {
    font-size: 2.2em;
  }

  .page-resources-betting-strategy__intro-text {
    font-size: 1.1em;
  }

  .page-resources-betting-strategy__section-title {
    font-size: 1.8em;
  }

  .page-resources-betting-strategy__content-flex {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-betting-strategy__content-flex--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-resources-betting-strategy__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-betting-strategy__hero-content {
    padding: 25px;
    border-radius: 8px;
  }

  .page-resources-betting-strategy__main-title {
    font-size: 1.8em;
  }

  .page-resources-betting-strategy__intro-text {
    font-size: 1em;
  }

  .page-resources-betting-strategy__cta-group {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-betting-strategy__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-betting-strategy__section {
    padding: 40px 15px;
  }

  .page-resources-betting-strategy__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-resources-betting-strategy__paragraph {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-resources-betting-strategy__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-betting-strategy__card {
    padding: 20px;
    border-radius: 8px;
  }

  .page-resources-betting-strategy__card-image {
    height: 200px;
  }

  .page-resources-betting-strategy__card-title {
    font-size: 1.3em;
  }

  .page-resources-betting-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .page-resources-betting-strategy__list-item {
    font-size: 1em;
  }

  .page-resources-betting-strategy__icon {
    font-size: 1.3em;
    margin-right: 10px;
  }

  /* Ensure all images are responsive */
  .page-resources-betting-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-resources-betting-strategy__section,
  .page-resources-betting-strategy__card,
  .page-resources-betting-strategy__container,
  .page-resources-betting-strategy__hero-container,
  .page-resources-betting-strategy__cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-betting-strategy__hero-container.page-resources-betting-strategy__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-betting-strategy__main-title {
    font-size: 1.5em;
  }

  .page-resources-betting-strategy__section-title {
    font-size: 1.4em;
  }

  .page-resources-betting-strategy__hero-content {
    padding: 20px;
  }
}