/* style/blog-understanding-jackpots-at-newba5.css */

/* Custom Colors */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-border-color: #2E7A4E;
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-blog-understanding-jackpots-at-newba5 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f5f5f5; /* Matching body background */
}

/* Sections */
.page-blog-understanding-jackpots-at-newba5__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
  background-color: var(--page-background); /* Deep green background */
}

.page-blog-understanding-jackpots-at-newba5__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for large screens */
  margin-bottom: 30px;
}

.page-blog-understanding-jackpots-at-newba5__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-understanding-jackpots-at-newba5__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  color: var(--page-text-main); /* Light text for dark background */
}

.page-blog-understanding-jackpots-at-newba5__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-gold-color); /* Gold color for main title */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Subtle glow */
}

.page-blog-understanding-jackpots-at-newba5__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--page-text-secondary); /* Secondary light text */
}

.page-blog-understanding-jackpots-at-newba5__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* White background for content for contrast */
  color: #333333; /* Dark text for white background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-understanding-jackpots-at-newba5__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--page-primary-color); /* Brand primary color */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-understanding-jackpots-at-newba5__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--page-deep-green); /* Deep green for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-understanding-jackpots-at-newba5__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-understanding-jackpots-at-newba5__highlight {
  color: var(--page-primary-color);
  font-weight: 700;
}

.page-blog-understanding-jackpots-at-newba5__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-blog-understanding-jackpots-at-newba5__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--page-button-gradient);
  color: #ffffff;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-understanding-jackpots-at-newba5__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* FAQ Section */
.page-blog-understanding-jackpots-at-newba5__faq-list {
  margin-top: 40px;
}

.page-blog-understanding-jackpots-at-newba5__faq-item {
  margin-bottom: 15px;
  background-color: var(--page-card-bg); /* Dark green card background */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--page-border-color);
  color: var(--page-text-main); /* Light text for dark background */
}

.page-blog-understanding-jackpots-at-newba5__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--page-gold-color); /* Gold color for FAQ questions */
  background-color: var(--page-deep-green); /* Deep green background for question */
  border-bottom: 1px solid var(--page-divider-color);
  list-style: none; /* For details/summary */
}

.page-blog-understanding-jackpots-at-newba5__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-understanding-jackpots-at-newba5__faq-qtext {
  flex-grow: 1;
}

.page-blog-understanding-jackpots-at-newba5__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--page-glow-color);
}

.page-blog-understanding-jackpots-at-newba5__faq-item[open] .page-blog-understanding-jackpots-at-newba5__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-understanding-jackpots-at-newba5__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: var(--page-text-secondary); /* Secondary light text */
}

/* CTA Section */
.page-blog-understanding-jackpots-at-newba5__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--page-background); /* Deep green background */
  color: var(--page-text-main); /* Light text */
}

.page-blog-understanding-jackpots-at-newba5__cta-title {
  font-size: 2.8em;
  font-weight: 700;
  color: var(--page-gold-color); /* Gold color for CTA title */
  margin-bottom: 25px;
}

.page-blog-understanding-jackpots-at-newba5__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-understanding-jackpots-at-newba5__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-understanding-jackpots-at-newba5__section-title {
    font-size: 2em;
  }
  .page-blog-understanding-jackpots-at-newba5__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-blog-understanding-jackpots-at-newba5 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-understanding-jackpots-at-newba5__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-understanding-jackpots-at-newba5__hero-content {
    padding: 0 15px;
  }

  .page-blog-understanding-jackpots-at-newba5__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em) !important; /* Ensure H1 is not too large */
  }

  .page-blog-understanding-jackpots-at-newba5__hero-description {
    font-size: 1em;
  }

  .page-blog-understanding-jackpots-at-newba5__content-area {
    padding: 40px 15px;
  }

  .page-blog-understanding-jackpots-at-newba5__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-understanding-jackpots-at-newba5__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-understanding-jackpots-at-newba5__paragraph {
    font-size: 1em;
  }

  /* Image responsiveness */
  .page-blog-understanding-jackpots-at-newba5 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images */
  .page-blog-understanding-jackpots-at-newba5__hero-image-wrapper,
  .page-blog-understanding-jackpots-at-newba5__content-area,
  .page-blog-understanding-jackpots-at-newba5__card,
  .page-blog-understanding-jackpots-at-newba5__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-blog-understanding-jackpots-at-newba5__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-blog-understanding-jackpots-at-newba5__cta-section {
    padding: 60px 15px;
  }
  .page-blog-understanding-jackpots-at-newba5__cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-blog-understanding-jackpots-at-newba5__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-blog-understanding-jackpots-at-newba5__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-blog-understanding-jackpots-at-newba5__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-understanding-jackpots-at-newba5__main-title {
    font-size: clamp(1.5em, 7vw, 2em) !important;
  }
  .page-blog-understanding-jackpots-at-newba5__section-title {
    font-size: 1.5em;
  }
  .page-blog-understanding-jackpots-at-newba5__cta-title {
    font-size: 1.5em;
  }
}