.page-resources-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text color for dark body background */
  background-color: #0a0a0a; /* Inherited from shared.css, explicitly set for clarity */
}

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

.page-resources-sports-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0A2239; /* Dark blue background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-sports-betting-guide__hero-section .page-resources-sports-betting-guide__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-sports-betting-guide__main-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E6B31E; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-sports-betting-guide__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #f0f0f0;
}

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

.page-resources-sports-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #E6B31E; /* Gold button */
  color: #0A2239;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.page-resources-sports-betting-guide__cta-button--secondary {
  background-color: #0A2239;
  color: #E6B31E;
  border: 2px solid #E6B31E;
}

.page-resources-sports-betting-guide__cta-button--secondary:hover {
  background-color: #1a3a5a;
  color: #ffffff;
  border-color: #ffffff;
}

.page-resources-sports-betting-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-sports-betting-guide__content-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__dark-bg {
  background-color: #0A2239;
  color: #ffffff;
}

.page-resources-sports-betting-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E6B31E; /* Gold accent for section titles */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-guide__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #E6B31E;
}

.page-resources-sports-betting-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #cccccc;
}

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

.page-resources-sports-betting-guide__feature-item,
.page-resources-sports-betting-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for items */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__feature-item:hover,
.page-resources-sports-betting-guide__strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-guide__feature-title,
.page-resources-sports-betting-guide__strategy-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E6B31E; /* Gold accent for item titles */
}

.page-resources-sports-betting-guide__feature-description {
  color: #cccccc;
}

.page-resources-sports-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__steps-list,
.page-resources-sports-betting-guide__bet-types-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-sports-betting-guide__step-item,
.page-resources-sports-betting-guide__bet-type-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__step-title,
.page-resources-sports-betting-guide__bet-type-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E6B31E;
}

.page-resources-sports-betting-guide__step-item p,
.page-resources-sports-betting-guide__bet-type-item p {
  color: #cccccc;
  margin-bottom: 15px;
}

.page-resources-sports-betting-guide__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background-color: #E6B31E;
  color: #0A2239;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-resources-sports-betting-guide__btn-primary:hover {
  background-color: #d0a01a;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-resources-sports-betting-guide__faq-section {
  padding: 60px 0;
  background-color: #0A2239;
  color: #ffffff;
}

.page-resources-sports-betting-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-sports-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1a3a5a; /* Darker blue for question background */
  color: #ffffff;
  border: 1px solid #1a3a5a;
  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-guide__faq-question:hover {
  background: #2a4a6a;
  border-color: #2a4a6a;
}

.page-resources-sports-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #E6B31E; /* Gold for FAQ question text */
}

.page-resources-sports-betting-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E6B31E;
  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: 32px;
  height: 32px;
}

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

.page-resources-sports-betting-guide__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 25px;
  opacity: 0;
  background: #102a4a; /* Slightly lighter dark blue for answer background */
  color: #cccccc;
  border-radius: 0 0 8px 8px;
}

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

.page-resources-sports-betting-guide__faq-answer p {
  margin-bottom: 15px;
  color: #cccccc;
}

.page-resources-sports-betting-guide__faq-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #E6B31E;
  color: #0A2239;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-resources-sports-betting-guide__faq-button:hover {
  background-color: #d0a01a;
}

.page-resources-sports-betting-guide__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-resources-sports-betting-guide__cta-button--large {
  padding: 18px 45px;
  font-size: 1.3em;
  margin-top: 30px;
}

/* General image styling */
.page-resources-sports-betting-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

@media (max-width: 768px) {
  .page-resources-sports-betting-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }
  .page-resources-sports-betting-guide__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-sports-betting-guide__description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-resources-sports-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
    margin: 20px auto;
  }
  .page-resources-sports-betting-guide__cta-button,
  .page-resources-sports-betting-guide__cta-button--large,
  .page-resources-sports-betting-guide__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-sports-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-sports-betting-guide__sub-title {
    font-size: 1.5em;
  }
  .page-resources-sports-betting-guide__text-block {
    font-size: 0.95em;
  }
  .page-resources-sports-betting-guide__features-grid,
  .page-resources-sports-betting-guide__strategies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-sports-betting-guide__feature-item,
  .page-resources-sports-betting-guide__strategy-item {
    padding: 20px;
  }
  .page-resources-sports-betting-guide__feature-title,
  .page-resources-sports-betting-guide__strategy-title {
    font-size: 1.2em;
  }
  .page-resources-sports-betting-guide__step-item,
  .page-resources-sports-betting-guide__bet-type-item {
    padding: 20px;
  }
  .page-resources-sports-betting-guide__step-title,
  .page-resources-sports-betting-guide__bet-type-title {
    font-size: 1.3em;
  }
  .page-resources-sports-betting-guide__faq-question {
    padding: 15px 20px;
  }
  .page-resources-sports-betting-guide__faq-question h3 {
    font-size: 1em;
  }
  .page-resources-sports-betting-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-sports-betting-guide__faq-answer {
    padding: 0 20px;
  }
  .page-resources-sports-betting-guide__faq-item.active .page-resources-sports-betting-guide__faq-answer {
    padding: 15px 20px !important;
  }
  /* Mobile image adaptation */
  .page-resources-sports-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-resources-sports-betting-guide__container,
  .page-resources-sports-betting-guide__content-section,
  .page-resources-sports-betting-guide__faq-section,
  .page-resources-sports-betting-guide__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-resources-sports-betting-guide__hero-section .page-resources-sports-betting-guide__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-sports-betting-guide__hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}