/* style/resources-go99-sports-betting-strategy.css */

/* Base styles for the page content, considering body background is dark (#0a0a0a) */
.page-resources-go99-sports-betting-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Inherit body background or use transparent */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

/* Hero Section */
.page-resources-go99-sports-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  min-height: 600px;
  padding: 80px 20px;
  overflow: hidden; /* Ensure image doesn't overflow */
  background-color: #017439; /* Use primary brand color for hero background */
}

.page-resources-go99-sports-betting-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Make background image subtle */
}

.page-resources-go99-sports-betting-strategy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-go99-sports-betting-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-go99-sports-betting-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* General Sections */
.page-resources-go99-sports-betting-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-resources-go99-sports-betting-strategy__section-title {
  font-size: 2.5em;
  color: #017439; /* Primary brand color for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-go99-sports-betting-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #C30808; /* Red for emphasis */
  margin: 10px auto 0;
}

.page-resources-go99-sports-betting-strategy__sub-section-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-go99-sports-betting-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for general content on dark background */
}

.page-resources-go99-sports-betting-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-go99-sports-betting-strategy__list li {
  margin-bottom: 10px;
}

.page-resources-go99-sports-betting-strategy__list strong {
  color: #017439; /* Highlight strong text with brand color */
}

/* Images in content */
.page-resources-go99-sports-betting-strategy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Card Grid */
.page-resources-go99-sports-betting-strategy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-go99-sports-betting-strategy__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff; /* Light text on card background */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-go99-sports-betting-strategy__card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-resources-go99-sports-betting-strategy__card-title {
  font-size: 1.5em;
  color: #017439; /* Primary brand color for card titles */
  margin-bottom: 15px;
}

.page-resources-go99-sports-betting-strategy__card-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* CTA Buttons */
.page-resources-go99-sports-betting-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-resources-go99-sports-betting-strategy__cta-buttons--centered {
  justify-content: center;
}

.page-resources-go99-sports-betting-strategy__btn-primary,
.page-resources-go99-sports-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-align: center;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box; /* Button responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-resources-go99-sports-betting-strategy__btn-primary {
  background-color: #C30808; /* Red for action buttons */
  color: #FFFF00; /* Yellow text for contrast */
  border: 2px solid #C30808;
}

.page-resources-go99-sports-betting-strategy__btn-primary:hover {
  background-color: #e02a2a;
  transform: translateY(-3px);
}

.page-resources-go99-sports-betting-strategy__btn-secondary {
  background-color: transparent;
  color: #017439; /* Primary brand color for secondary text */
  border: 2px solid #017439;
}

.page-resources-go99-sports-betting-strategy__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-resources-go99-sports-betting-strategy__faq-container {
  max-width: 800px;
  margin: 50px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ container */
}

.page-resources-go99-sports-betting-strategy__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-go99-sports-betting-strategy__faq-item:last-child {
  border-bottom: none;
}

.page-resources-go99-sports-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-go99-sports-betting-strategy__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-go99-sports-betting-strategy__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-resources-go99-sports-betting-strategy__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

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

.page-resources-go99-sports-betting-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
}

.page-resources-go99-sports-betting-strategy__faq-item.active .page-resources-go99-sports-betting-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-go99-sports-betting-strategy__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-go99-sports-betting-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-go99-sports-betting-strategy__section-title {
    font-size: 2em;
  }
  .page-resources-go99-sports-betting-strategy__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-go99-sports-betting-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-go99-sports-betting-strategy__hero-section {
    min-height: 500px;
    padding: 60px 15px;
  }
  .page-resources-go99-sports-betting-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-resources-go99-sports-betting-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-go99-sports-betting-strategy__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-resources-go99-sports-betting-strategy__btn-primary,
  .page-resources-go99-sports-betting-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-go99-sports-betting-strategy__content-area {
    padding: 40px 15px;
  }
  .page-resources-go99-sports-betting-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-go99-sports-betting-strategy__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-go99-sports-betting-strategy__card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-go99-sports-betting-strategy__content-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-go99-sports-betting-strategy__faq-container {
    margin: 30px 0;
    border-radius: 0;
  }
  .page-resources-go99-sports-betting-strategy__faq-question,
  .page-resources-go99-sports-betting-strategy__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-go99-sports-betting-strategy__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-resources-go99-sports-betting-strategy__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .page-resources-go99-sports-betting-strategy video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-resources-go99-sports-betting-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-resources-go99-sports-betting-strategy__section-title {
    font-size: 1.5em;
  }
  .page-resources-go99-sports-betting-strategy__faq-question h3 {
    font-size: 1.1em;
  }
}