/* style/blog-online-sports-betting-guide.css */
.page-blog-online-sports-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color from custom palette */
  background-color: var(--bg-color, #08160F); /* Default background color from custom palette */
}

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

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

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

.page-blog-online-sports-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-online-sports-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -80px; /* Pull content up slightly over the image for better flow, not overlapping text on image */
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-online-sports-betting-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow color */
}

.page-blog-online-sports-betting-guide__description {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-blog-online-sports-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-sports-betting-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow effect on hover */
}

.page-blog-online-sports-betting-guide__cta-button--secondary {
  background: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-online-sports-betting-guide__cta-button--secondary:hover {
  background: var(--deep-green, #0A4B2C);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-online-sports-betting-guide__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-online-sports-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #2AD16F, #13994A);
  border-radius: 2px;
}

.page-blog-online-sports-betting-guide__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid var(--glow, #57E38D);
  padding-left: 15px;
}

.page-blog-online-sports-betting-guide__paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-blog-online-sports-betting-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-online-sports-betting-guide__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-online-sports-betting-guide__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--glow, #57E38D);
  font-weight: bold;
}

.page-blog-online-sports-betting-guide__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  counter-reset: my-counter;
}

.page-blog-online-sports-betting-guide__ordered-list .page-blog-online-sports-betting-guide__list-item {
  counter-increment: my-counter;
}

.page-blog-online-sports-betting-guide__ordered-list .page-blog-online-sports-betting-guide__list-item::before {
  content: counter(my-counter) '.';
  color: var(--gold, #F2C14E);
  font-weight: bold;
  font-size: 1.2em;
  left: 0;
}

.page-blog-online-sports-betting-guide__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* FAQ Section */
.page-blog-online-sports-betting-guide__faq-section {
  padding: 60px 0;
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-online-sports-betting-guide__faq-list {
  margin-top: 40px;
}

.page-blog-online-sports-betting-guide__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-sports-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-online-sports-betting-guide__faq-question:hover {
  background-color: rgba(87, 227, 141, 0.1);
}

.page-blog-online-sports-betting-guide__faq-item[open] .page-blog-online-sports-betting-guide__faq-question {
  background-color: rgba(87, 227, 141, 0.15);
}

.page-blog-online-sports-betting-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-online-sports-betting-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--glow, #57E38D);
  margin-left: 15px;
}

.page-blog-online-sports-betting-guide__faq-item[open] .page-blog-online-sports-betting-guide__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-online-sports-betting-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

/* Ensure summary marker is hidden for consistent custom toggle */
.page-blog-online-sports-betting-guide__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-online-sports-betting-guide__faq-item summary::marker {
  display: none;
}

.page-blog-online-sports-betting-guide__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-online-sports-betting-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-online-sports-betting-guide__section-title {
    font-size: 2rem;
  }
}

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

  .page-blog-online-sports-betting-guide__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }

  .page-blog-online-sports-betting-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-online-sports-betting-guide__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-online-sports-betting-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-online-sports-betting-guide__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-online-sports-betting-guide__paragraph,
  .page-blog-online-sports-betting-guide__list-item {
    font-size: 0.95rem;
  }

  .page-blog-online-sports-betting-guide__cta-button,
  .page-blog-online-sports-betting-guide__cta-button--small {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-online-sports-betting-guide__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to prevent buttons from touching edges */
  }

  .page-blog-online-sports-betting-guide__container {
    padding: 0 15px;
  }

  /* Image responsiveness */
  .page-blog-online-sports-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-online-sports-betting-guide__section,
  .page-blog-online-sports-betting-guide__card,
  .page-blog-online-sports-betting-guide__container,
  .page-blog-online-sports-betting-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-online-sports-betting-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-blog-online-sports-betting-guide__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-online-sports-betting-guide__hero-content {
    padding: 20px 10px;
  }
  .page-blog-online-sports-betting-guide__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-blog-online-sports-betting-guide__section-title {
    font-size: 1.6rem;
  }
  .page-blog-online-sports-betting-guide__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-online-sports-betting-guide__paragraph,
  .page-blog-online-sports-betting-guide__list-item {
    font-size: 0.9rem;
  }
}