/* style/resources-latest-betting-strategies.css */
.page-resources-latest-betting-strategies {
  font-family: 'Arial', sans-serif;
  color: #1A1A1A; /* Dark text on light backgrounds */
  line-height: 1.6;
}

.page-resources-latest-betting-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-latest-betting-strategies__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  color: #FFFFFF; /* Light text on dark/gradient background */
  padding: 100px 0;
  text-align: center;
}

.page-resources-latest-betting-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-latest-betting-strategies__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-resources-latest-betting-strategies__cta-button {
  display: inline-block;
  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: 2px solid transparent;
}

.page-resources-latest-betting-strategies__cta-button--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A1A1A; /* Dark text */
  border-color: #FFD700;
}

.page-resources-latest-betting-strategies__cta-button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-resources-latest-betting-strategies__cta-button--secondary {
  background-color: #1A1A1A; /* Dark background */
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-resources-latest-betting-strategies__cta-button--secondary:hover {
  background-color: #333333; /* Slightly lighter dark */
  transform: translateY(-3px);
}

.page-resources-latest-betting-strategies__content-section {
  padding: 60px 0;
}

.page-resources-latest-betting-strategies__bg-dark {
  background-color: #1A1A1A; /* Dark background */
  color: #f0f0f0; /* Light text */
}

.page-resources-latest-betting-strategies__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-latest-betting-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-latest-betting-strategies__section-title--light {
  color: #FFFFFF;
}

.page-resources-latest-betting-strategies__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-resources-latest-betting-strategies__text-content--light {
  color: #f0f0f0;
}

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

.page-resources-latest-betting-strategies__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-betting-strategies__image--small {
  max-width: 600px;
  display: block;
  margin: 20px auto;
}

.page-resources-latest-betting-strategies__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-latest-betting-strategies__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-resources-latest-betting-strategies__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-latest-betting-strategies__list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-latest-betting-strategies__list--numbered {
  list-style: decimal;
  padding-left: 20px;
}

.page-resources-latest-betting-strategies__list--numbered li::before {
  content: none;
}

.page-resources-latest-betting-strategies__list--numbered li {
  padding-left: 0;
}

.page-resources-latest-betting-strategies__strategy-card {
  background-color: #f8f8f8; /* Light background for cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-betting-strategies__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-betting-strategies__strategy-card--alt {
  background-color: #2a2a2a; /* Dark background for alternate cards */
  color: #f0f0f0; /* Light text */
}

.page-resources-latest-betting-strategies__strategy-card--alt .page-resources-latest-betting-strategies__card-title {
  color: #FFD700; /* Gold title */
}

.page-resources-latest-betting-strategies__card-title {
  font-size: 1.6em;
  color: #1A1A1A; /* Dark title */
  margin-bottom: 15px;
}

.page-resources-latest-betting-strategies__card-text {
  font-size: 1em;
  color: #333333; /* Slightly lighter dark text */
}

.page-resources-latest-betting-strategies__strategy-card--alt .page-resources-latest-betting-strategies__card-text {
  color: #cccccc; /* Lighter text on dark background */
}

.page-resources-latest-betting-strategies__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #1A1A1A; /* Dark background for CTA */
  color: #FFFFFF; /* Light text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-latest-betting-strategies__hero-title {
    font-size: 2.5em;
  }

  .page-resources-latest-betting-strategies__hero-subtitle,
  .page-resources-latest-betting-strategies__text-content {
    font-size: 1em;
  }

  .page-resources-latest-betting-strategies__section-title {
    font-size: 2em;
  }

  .page-resources-latest-betting-strategies__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-latest-betting-strategies__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-betting-strategies__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-resources-latest-betting-strategies__hero-section {
    padding: 60px 0;
  }

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

  .page-resources-latest-betting-strategies__cta-button {
    width: 90%;
  }
}