.page-betting-strategy-guides {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-betting-strategy-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  background-color: #003366; /* Dark blue background for hero */
  overflow: hidden;
}

.page-betting-strategy-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-betting-strategy-guides__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-betting-strategy-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-betting-strategy-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-strategy-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategy-guides__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-betting-strategy-guides__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-strategy-guides__introduction-section,
.page-betting-strategy-guides__fundamentals-section,
.page-betting-strategy-guides__casino-strategies-section,
.page-betting-strategy-guides__sports-betting-section,
.page-betting-strategy-guides__advanced-tips-section {
  padding: 60px 0;
}

.page-betting-strategy-guides__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-strategy-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-betting-strategy-guides__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-betting-strategy-guides__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-betting-strategy-guides__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-strategy-guides__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  width: 400px; /* Example display width */
  height: 300px; /* Example display height */
  object-fit: cover;
}

.page-betting-strategy-guides__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-betting-strategy-guides__card-description {
  font-size: 1em;
  color: #555555;
}

.page-betting-strategy-guides__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 800px; /* Example display width */
  height: 600px; /* Example display height */
  object-fit: cover;
}

.page-betting-strategy-guides__detail-pages {
  margin-top: 40px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.page-betting-strategy-guides__detail-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 25px;
  text-align: center;
}

.page-betting-strategy-guides__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-betting-strategy-guides__detail-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-betting-strategy-guides__detail-card-title a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-betting-strategy-guides__detail-card-title a:hover {
  color: #FFD700;
}

.page-betting-strategy-guides__detail-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  text-align: left;
}

.page-betting-strategy-guides__detail-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-betting-strategy-guides__detail-card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-strategy-guides__cta-banner {
  background-color: #003366;
  color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-betting-strategy-guides__cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,215,0,0.1) 0%, rgba(0,51,102,0.1) 100%);
  z-index: 0;
}

.page-betting-strategy-guides__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-betting-strategy-guides__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-betting-strategy-guides__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-betting-strategy-guides__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-betting-strategy-guides__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-betting-strategy-guides__cta-button--secondary {
  background-color: #004d99;
  color: #ffffff;
}

.page-betting-strategy-guides__cta-button--secondary:hover {
  background-color: #003b7a;
}

.page-betting-strategy-guides__cta-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  width: 500px; /* Example display width */
  height: 375px; /* Example display height */
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-betting-strategy-guides__hero-title {
    font-size: 2.5em;
  }
  .page-betting-strategy-guides__hero-description {
    font-size: 1.1em;
  }
  .page-betting-strategy-guides__section-title {
    font-size: 2em;
  }
  .page-betting-strategy-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-betting-strategy-guides__card {
    padding: 20px;
  }
  .page-betting-strategy-guides__card img,
  .page-betting-strategy-guides__image-full-width,
  .page-betting-strategy-guides__cta-image {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
  }
  .page-betting-strategy-guides__cta-banner {
    padding: 40px 20px;
  }
  .page-betting-strategy-guides__cta-title {
    font-size: 2em;
  }
  .page-betting-strategy-guides__cta-button {
    margin: 10px 0;
  }
  .page-betting-strategy-guides__cta-banner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-betting-strategy-guides__hero-title {
    font-size: 2em;
  }
  .page-betting-strategy-guides__hero-description {
    font-size: 1em;
  }
  .page-betting-strategy-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-strategy-guides__section-title {
    font-size: 1.8em;
  }
  .page-betting-strategy-guides__paragraph,
  .page-betting-strategy-guides__card-description,
  .page-betting-strategy-guides__detail-card-description {
    font-size: 0.95em;
  }
  .page-betting-strategy-guides__cta-title {
    font-size: 1.8em;
  }
  .page-betting-strategy-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}