/* style/blog-9club-sports-betting-guide.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-9club-sports-betting-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main, #F2FFF6); /* Text Main */
  background-color: var(--background, #08160F); /* Background */
  line-height: 1.6;
  font-size: 18px;
}

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

.page-blog-9club-sports-betting-guide__section-title {
  color: var(--gold, #F2C14E);
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-blog-9club-sports-betting-guide__paragraph {
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-blog-9club-sports-betting-guide__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-9club-sports-betting-guide__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-9club-sports-betting-guide__list-item {
  margin-bottom: 10px;
}

/* CTA Button Styles */
.page-blog-9club-sports-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-9club-sports-betting-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-9club-sports-betting-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Hero Section */
.page-blog-9club-sports-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-9club-sports-betting-guide__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-blog-9club-sports-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-9club-sports-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  background-color: var(--card-b-g, #11271B); /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-9club-sports-betting-guide__main-title {
  color: var(--gold, #F2C14E);
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive H1 font size */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-9club-sports-betting-guide__lead-text {
  color: var(--text-secondary, #A7D9B8); /* Text Secondary */
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* General Section Spacing */
.page-blog-9club-sports-betting-guide__introduction-section,
.page-blog-9club-sports-betting-guide__why-choose-section,
.page-blog-9club-sports-betting-guide__odds-types-section,
.page-blog-9club-sports-betting-guide__getting-started-section,
.page-blog-9club-sports-betting-guide__strategies-section,
.page-blog-9club-sports-betting-guide__download-app-section,
.page-blog-9club-sports-betting-guide__faq-section,
.page-blog-9club-sports-betting-guide__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-9club-sports-betting-guide__conclusion-section {
  border-bottom: none;
  text-align: center;
}

/* Why Choose Section */
.page-blog-9club-sports-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-9club-sports-betting-guide__feature-item {
  background-color: var(--card-b-g, #11271B); /* Card BG */
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-9club-sports-betting-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-9club-sports-betting-guide__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-9club-sports-betting-guide__feature-title {
  color: var(--text-main, #F2FFF6); /* Text Main */
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-9club-sports-betting-guide__feature-description {
  color: var(--text-secondary, #A7D9B8); /* Text Secondary */
  font-size: 0.95em;
}

/* Content Image */
.page-blog-9club-sports-betting-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Download App Section */
.page-blog-9club-sports-betting-guide__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-9club-sports-betting-guide__app-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-9club-sports-betting-guide__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-9club-sports-betting-guide__app-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-9club-sports-betting-guide__faq-list {
  margin-top: 40px;
}

.page-blog-9club-sports-betting-guide__faq-item {
  background-color: var(--card-b-g, #11271B); /* Card BG */
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-9club-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main, #F2FFF6); /* Text Main */
  background-color: var(--deep-green, #0A4B2C); /* Deep Green */
  border-bottom: 1px solid var(--divider, #1E3A2A);
}

.page-blog-9club-sports-betting-guide__faq-question:hover {
  background-color: var(--deep-green, #0A4B2C);
  opacity: 0.9;
}

.page-blog-9club-sports-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-9club-sports-betting-guide__faq-answer {
  padding: 0 25px;
  color: var(--text-secondary, #A7D9B8); /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-9club-sports-betting-guide__faq-item[open] .page-blog-9club-sports-betting-guide__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-blog-9club-sports-betting-guide__faq-item[open] .page-blog-9club-sports-betting-guide__faq-question {
  border-bottom: none;
}

/* Ensure details summary marker is hidden */
.page-blog-9club-sports-betting-guide__faq-item summary {
  list-style: none;
}

.page-blog-9club-sports-betting-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-9club-sports-betting-guide__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-blog-9club-sports-betting-guide__main-title {
    font-size: clamp(2em, 4.5vw, 3.2em);
  }

  .page-blog-9club-sports-betting-guide__lead-text {
    font-size: 1.2em;
  }

  .page-blog-9club-sports-betting-guide__section-title {
    font-size: 2.2em;
  }
}

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

  .page-blog-9club-sports-betting-guide__container,
  .page-blog-9club-sports-betting-guide__hero-section,
  .page-blog-9club-sports-betting-guide__introduction-section,
  .page-blog-9club-sports-betting-guide__why-choose-section,
  .page-blog-9club-sports-betting-guide__odds-types-section,
  .page-blog-9club-sports-betting-guide__getting-started-section,
  .page-blog-9club-sports-betting-guide__strategies-section,
  .page-blog-9club-sports-betting-guide__download-app-section,
  .page-blog-9club-sports-betting-guide__faq-section,
  .page-blog-9club-sports-betting-guide__conclusion-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-9club-sports-betting-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-9club-sports-betting-guide__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-blog-9club-sports-betting-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-9club-sports-betting-guide__lead-text {
    font-size: 1.1em;
  }

  .page-blog-9club-sports-betting-guide__cta-button,
  .page-blog-9club-sports-betting-guide__btn-primary,
  .page-blog-9club-sports-betting-guide a[class*="button"],
  .page-blog-9club-sports-betting-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-9club-sports-betting-guide__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-9club-sports-betting-guide__feature-item {
    padding: 25px;
  }

  .page-blog-9club-sports-betting-guide__app-content {
    flex-direction: column;
  }

  .page-blog-9club-sports-betting-guide__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-9club-sports-betting-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-9club-sports-betting-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-blog-9club-sports-betting-guide__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-blog-9club-sports-betting-guide__section-title {
    font-size: 1.8em;
  }

  .page-blog-9club-sports-betting-guide__hero-content {
    margin-top: -30px;
  }
}