.page-blog-how-to-identify-online-betting-scams {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-blog-how-to-identify-online-betting-scams__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-how-to-identify-online-betting-scams__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-how-to-identify-online-betting-scams__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-identify-online-betting-scams__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  margin-top: 150px; /* Ensure text is below header offset */
}

.page-blog-how-to-identify-online-betting-scams__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-identify-online-betting-scams__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-identify-online-betting-scams__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-identify-online-betting-scams__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-identify-online-betting-scams__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-identify-online-betting-scams__btn-secondary {
  background: var(--card-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.page-blog-how-to-identify-online-betting-scams__btn-secondary:hover {
  background: var(--gold);
  color: var(--card-bg);
}

.page-blog-how-to-identify-online-betting-scams__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  color: var(--text-main);
}

.page-blog-how-to-identify-online-betting-scams__container {
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-online-betting-scams__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--divider);
}

.page-blog-how-to-identify-online-betting-scams__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-identify-online-betting-scams__mini-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-blog-how-to-identify-online-betting-scams__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-how-to-identify-online-betting-scams__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-online-betting-scams__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-identify-online-betting-scams__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-identify-online-betting-scams__faq-item {
  background-color: var(--deep-green);
  border: 1px solid var(--divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-identify-online-betting-scams__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
  list-style: none;
}

.page-blog-how-to-identify-online-betting-scams__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-identify-online-betting-scams__faq-item[open] > .page-blog-how-to-identify-online-betting-scams__faq-question {
  background-color: var(--primary-color);
  border-bottom-color: var(--divider);
}

.page-blog-how-to-identify-online-betting-scams__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
}

.page-blog-how-to-identify-online-betting-scams__faq-answer {
  padding: 0 20px 15px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-blog-how-to-identify-online-betting-scams__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
  background-color: var(--deep-green);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-online-betting-scams__cta-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-identify-online-betting-scams {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-identify-online-betting-scams__hero-content {
    padding: 20px 15px;
    margin-top: 100px; /* Adjust for smaller screens */
  }

  .page-blog-how-to-identify-online-betting-scams__main-title {
    font-size: 2rem;
  }

  .page-blog-how-to-identify-online-betting-scams__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-identify-online-betting-scams__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-identify-online-betting-scams__content-area, 
  .page-blog-how-to-identify-online-betting-scams__container, 
  .page-blog-how-to-identify-online-betting-scams__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-identify-online-betting-scams img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-how-to-identify-online-betting-scams__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-how-to-identify-online-betting-scams__faq-answer {
    padding: 0 15px 12px;
  }

  .page-blog-how-to-identify-online-betting-scams__cta-text {
    font-size: 1.2rem;
  }
}