/* style/betting-strategies.css */

/* Base styles for the page content */
.page-betting-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background */
}

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

.page-betting-strategies__section {
  padding: 60px 0;
}

.page-betting-strategies__section-title {
  font-size: 32px;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-betting-strategies__text-block {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.page-betting-strategies__text-block--center {
  text-align: center;
}

.page-betting-strategies__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.page-betting-strategies__list li {
  margin-bottom: 10px;
}

/* HERO Section */
.page-betting-strategies__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); /* Fades from primary to white */
  color: #ffffff; /* White text for gradient background */
}

.page-betting-strategies__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-betting-strategies__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-betting-strategies__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-betting-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-betting-strategies__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-strategies__intro-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategies__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-strategies__cta-button:hover {
  background: #d46c06;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Grid for sections with image and text */
.page-betting-strategies__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-betting-strategies__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-betting-strategies__image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure images don't shrink too much */
}