/* style/blog-understanding-online-jackpots.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-understanding-online-jackpots {
  color: #ffffff; /* Body background is dark (var(--black-color)), so text should be light */
  background-color: transparent; /* Rely on body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-understanding-online-jackpots__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-understanding-online-jackpots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: rgba(0, 0, 0, 0.5); /* Slightly darken background for text contrast */
  color: #ffffff;
}

.page-blog-understanding-online-jackpots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
  margin-bottom: 20px;
}

.page-blog-understanding-online-jackpots__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-understanding-online-jackpots__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 15px;
}

.page-blog-understanding-online-jackpots__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-understanding-online-jackpots__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-blog-understanding-online-jackpots__btn-primary,
.page-blog-understanding-online-jackpots__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-understanding-online-jackpots__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-understanding-online-jackpots__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-understanding-online-jackpots__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-understanding-online-jackpots__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-understanding-online-jackpots__content-area {
  background-color: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-understanding-online-jackpots__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-blog-understanding-online-jackpots__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-understanding-online-jackpots__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-understanding-online-jackpots__keyword {
  color: #EA7C07;
  font-weight: 700;
}

.page-blog-understanding-online-jackpots__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-understanding-online-jackpots__link:hover {
  color: #1e87c0;
}

.page-blog-understanding-online-jackpots__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-understanding-online-jackpots__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-blog-understanding-online-jackpots__list-item {
  margin-bottom: 10px;
}

.page-blog-understanding-online-jackpots__dark-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff; /* White text for brand color background */
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
}

.page-blog-understanding-online-jackpots__cta-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-understanding-online-jackpots__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
}

.page-blog-understanding-online-jackpots__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-blog-understanding-online-jackpots__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-understanding-online-jackpots__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-understanding-online-jackpots__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #333333;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-blog-understanding-online-jackpots__faq-item summary:hover {
  background-color: #e5e5e5;
}

.page-blog-understanding-online-jackpots__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-understanding-online-jackpots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-understanding-online-jackpots__faq-qtext {
  flex-grow: 1;
}

.page-blog-understanding-online-jackpots__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  line-height: 1;
}

.page-blog-understanding-online-jackpots__faq-answer {
  padding: 20px;
  background-color: #ffffff;
  font-size: 1.1em;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-understanding-online-jackpots__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }
  .page-blog-understanding-online-jackpots__section-title {
    font-size: 2em;
  }
  .page-blog-understanding-online-jackpots__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-understanding-online-jackpots__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-understanding-online-jackpots__hero-content {
    padding: 0 15px;
  }
  .page-blog-understanding-online-jackpots__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-understanding-online-jackpots__hero-description {
    font-size: 1em;
  }
  .page-blog-understanding-online-jackpots__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Constrain button group width */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-understanding-online-jackpots__btn-primary,
  .page-blog-understanding-online-jackpots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-understanding-online-jackpots__content-area,
  .page-blog-understanding-online-jackpots__dark-section {
    padding: 30px 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-understanding-online-jackpots__section-title {
    font-size: 1.8em;
  }
  .page-blog-understanding-online-jackpots__paragraph,
  .page-blog-understanding-online-jackpots__list-item {
    font-size: 1em;
  }
  .page-blog-understanding-online-jackpots__cta-title {
    font-size: 1.8em;
  }
  .page-blog-understanding-online-jackpots__cta-description {
    font-size: 1em;
  }
  .page-blog-understanding-online-jackpots__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-understanding-online-jackpots__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }
  /* All images must be responsive */
  .page-blog-understanding-online-jackpots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-understanding-online-jackpots__article-image,
  .page-blog-understanding-online-jackpots__cta-image {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Ensure all containers containing images/buttons/videos are responsive */
  .page-blog-understanding-online-jackpots__section,
  .page-blog-understanding-online-jackpots__card,
  .page-blog-understanding-online-jackpots__container,
  .page-blog-understanding-online-jackpots__hero-section,
  .page-blog-understanding-online-jackpots__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}