.page-resources-o-xbet-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background is from shared.css */
}

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

.page-resources-o-xbet-sports-betting-guide__text-center {
  text-align: center;
}

/* Hero Section */
.page-resources-o-xbet-sports-betting-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 60px 0;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-o-xbet-sports-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-resources-o-xbet-sports-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-o-xbet-sports-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-resources-o-xbet-sports-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-o-xbet-sports-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styles */
.page-resources-o-xbet-sports-betting-guide__content-section {
  padding: 60px 0;
  background-color: #1e1e1e;
  color: #ffffff;
}

.page-resources-o-xbet-sports-betting-guide__dark-bg {
  background-color: #121212;
  color: #ffffff;
}

.page-resources-o-xbet-sports-betting-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-o-xbet-sports-betting-guide__subsection-title {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 10px;
  display: inline-block;
}

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

/* Images */
.page-resources-o-xbet-sports-betting-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* No filter property to change color */
}

/* CTA Buttons */
.page-resources-o-xbet-sports-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-o-xbet-sports-betting-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-o-xbet-sports-betting-guide__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-3px);
}

.page-resources-o-xbet-sports-betting-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-o-xbet-sports-betting-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-resources-o-xbet-sports-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-o-xbet-sports-betting-guide__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-o-xbet-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #333333;
  transition: background-color 0.3s ease;
}

.page-resources-o-xbet-sports-betting-guide__faq-question:hover {
  background-color: #26A9E0;
}

.page-resources-o-xbet-sports-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-resources-o-xbet-sports-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #e0e0e0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-resources-o-xbet-sports-betting-guide__faq-item.active .page-resources-o-xbet-sports-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-o-xbet-sports-betting-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px; /* Add some padding to the bottom of the paragraph within the answer */
  color: #e0e0e0;
}

/* Bottom CTA */
.page-resources-o-xbet-sports-betting-guide__cta-bottom {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-resources-o-xbet-sports-betting-guide__cta-bottom .page-resources-o-xbet-sports-betting-guide__section-title {
  color: #ffffff;
}

.page-resources-o-xbet-sports-betting-guide__cta-bottom .page-resources-o-xbet-sports-betting-guide__text-block {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-o-xbet-sports-betting-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-o-xbet-sports-betting-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-o-xbet-sports-betting-guide__section-title {
    font-size: 2em;
  }
  .page-resources-o-xbet-sports-betting-guide__subsection-title {
    font-size: 1.5em;
  }
  .page-resources-o-xbet-sports-betting-guide__text-block {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-o-xbet-sports-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-o-xbet-sports-betting-guide__hero-section {
    min-height: 60vh;
    padding: 40px 0;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  
  .page-resources-o-xbet-sports-betting-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-o-xbet-sports-betting-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-o-xbet-sports-betting-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 auto;
  }
  
  .page-resources-o-xbet-sports-betting-guide__container {
    padding: 0 15px;
  }

  .page-resources-o-xbet-sports-betting-guide__content-section {
    padding: 40px 0;
  }

  .page-resources-o-xbet-sports-betting-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-o-xbet-sports-betting-guide__subsection-title {
    font-size: 1.3em;
  }

  /* Responsive images */
  .page-resources-o-xbet-sports-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-o-xbet-sports-betting-guide__hero-image-wrapper,
  .page-resources-o-xbet-sports-betting-guide__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-o-xbet-sports-betting-guide__hero-content {
    padding: 15px;
  }

  .page-resources-o-xbet-sports-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-resources-o-xbet-sports-betting-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-o-xbet-sports-betting-guide__faq-item.active .page-resources-o-xbet-sports-betting-guide__faq-answer {
    padding: 10px 15px;
  }

  .page-resources-o-xbet-sports-betting-guide__cta-bottom {
    padding: 50px 0;
  }
}