/* style/blog-safe-betting-nn8-homepage.css */

/* Base styles and color contrast for dark body background */
.page-blog-safe-betting-nn8-homepage {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body handles background, this section is transparent by default */
}

.page-blog-safe-betting-nn8-homepage a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-safe-betting-nn8-homepage a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-blog-safe-betting-nn8-homepage__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 60px;
}

.page-blog-safe-betting-nn8-homepage__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-safe-betting-nn8-homepage__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-safe-betting-nn8-homepage__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-blog-safe-betting-nn8-homepage__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-safe-betting-nn8-homepage__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-safe-betting-nn8-homepage__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-safe-betting-nn8-homepage__btn-primary,
.page-blog-safe-betting-nn8-homepage__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt to mobile */
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-safe-betting-nn8-homepage__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-safe-betting-nn8-homepage__btn-primary:hover {
  background-color: #1f8ec6;
  border-color: #1f8ec6;
}

.page-blog-safe-betting-nn8-homepage__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-safe-betting-nn8-homepage__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Content Area */
.page-blog-safe-betting-nn8-homepage__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content for readability */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-top: -40px; /* Pull up to overlap hero slightly */
  position: relative;
  z-index: 2;
}

.page-blog-safe-betting-nn8-homepage__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-safe-betting-nn8-homepage p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-safe-betting-nn8-homepage__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-safe-betting-nn8-homepage__game-list,
.page-blog-safe-betting-nn8-homepage__tips-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-safe-betting-nn8-homepage__game-list li,
.page-blog-safe-betting-nn8-homepage__tips-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-safe-betting-nn8-homepage__game-list strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-blog-safe-betting-nn8-homepage__faq-container {
  margin-top: 30px;
}

.page-blog-safe-betting-nn8-homepage__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-safe-betting-nn8-homepage__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #333333;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-safe-betting-nn8-homepage__faq-item[open] .page-blog-safe-betting-nn8-homepage__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-safe-betting-nn8-homepage__faq-qtext {
  flex-grow: 1;
}

.page-blog-safe-betting-nn8-homepage__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-safe-betting-nn8-homepage__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-safe-betting-nn8-homepage__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-safe-betting-nn8-homepage__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-safe-betting-nn8-homepage__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-betting-nn8-homepage {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-blog-safe-betting-nn8-homepage__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-safe-betting-nn8-homepage__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-safe-betting-nn8-homepage__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-safe-betting-nn8-homepage__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-blog-safe-betting-nn8-homepage__btn-primary,
  .page-blog-safe-betting-nn8-homepage__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-safe-betting-nn8-homepage__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }

  .page-blog-safe-betting-nn8-homepage__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-safe-betting-nn8-homepage img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Enforce min size even on mobile if possible, but responsive takes precedence */
    min-height: 200px;
  }

  .page-blog-safe-betting-nn8-homepage__image-inline {
    margin: 20px auto;
  }

  .page-blog-safe-betting-nn8-homepage__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-safe-betting-nn8-homepage__faq-answer {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  /* Ensure all containers containing images/videos/buttons are responsive */
  .page-blog-safe-betting-nn8-homepage__hero-section,
  .page-blog-safe-betting-nn8-homepage__content-area,
  .page-blog-safe-betting-nn8-homepage__cta-buttons,
  .page-blog-safe-betting-nn8-homepage__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-safe-betting-nn8-homepage__hero-image-wrapper,
  .page-blog-safe-betting-nn8-homepage__video-container,
  .page-blog-safe-betting-nn8-homepage__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-safe-betting-nn8-homepage__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-blog-safe-betting-nn8-homepage__section-title {
    font-size: 1.5rem;
  }
}