/* style/blog-how-to-get-nextbet-latest-link.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-how-to-get-nextbet-latest-link {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-blog-how-to-get-nextbet-latest-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-get-nextbet-latest-link__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  overflow: hidden;
}

.page-blog-how-to-get-nextbet-latest-link__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-get-nextbet-latest-link__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-nextbet-latest-link__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-get-nextbet-latest-link__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-get-nextbet-latest-link__intro-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* General Section Styles */
.page-blog-how-to-get-nextbet-latest-link__section {
  padding: 60px 0;
}

.page-blog-how-to-get-nextbet-latest-link__section:nth-of-type(even) {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-blog-how-to-get-nextbet-latest-link__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-how-to-get-nextbet-latest-link__section-description {
  font-size: 1.05em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Feature/Card Grid */
.page-blog-how-to-get-nextbet-latest-link__feature-grid,
.page-blog-how-to-get-nextbet-latest-link__content-grid,
.page-blog-how-to-get-nextbet-latest-link__product-grid,
.page-blog-how-to-get-nextbet-latest-link__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-get-nextbet-latest-link__feature-card,
.page-blog-how-to-get-nextbet-latest-link__grid-item,
.page-blog-how-to-get-nextbet-latest-link__product-card,
.page-blog-how-to-get-nextbet-latest-link__promo-card,
.page-blog-how-to-get-nextbet-latest-link__step-card {
  background: rgba(255, 255, 255, 0.1); /* Translucent white for cards */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-get-nextbet-latest-link__feature-card:hover,
.page-blog-how-to-get-nextbet-latest-link__grid-item:hover,
.page-blog-how-to-get-nextbet-latest-link__product-card:hover,
.page-blog-how-to-get-nextbet-latest-link__promo-card:hover,
.page-blog-how-to-get-nextbet-latest-link__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-nextbet-latest-link__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-how-to-get-nextbet-latest-link__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Images within cards/steps */
.page-blog-how-to-get-nextbet-latest-link__step-image,
.page-blog-how-to-get-nextbet-latest-link__product-image,
.page-blog-how-to-get-nextbet-latest-link__promo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensures images fill their space nicely */
}

/* Call to Action Buttons */
.page-blog-how-to-get-nextbet-latest-link__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-how-to-get-nextbet-latest-link__cta-buttons--center {
  margin-top: 50px;
}

.page-blog-how-to-get-nextbet-latest-link__btn-primary,
.page-blog-how-to-get-nextbet-latest-link__btn-secondary,
.page-blog-how-to-get-nextbet-latest-link__btn-small {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
}

.page-blog-how-to-get-nextbet-latest-link__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-get-nextbet-latest-link__btn-primary:hover {
  background-color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-blog-how-to-get-nextbet-latest-link__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-how-to-get-nextbet-latest-link__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-how-to-get-nextbet-latest-link__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push button to bottom of card */
  align-self: center;
  background-color: #EA7C07; /* Login color for small buttons */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-how-to-get-nextbet-latest-link__btn-small:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}

/* Step by Step Section */
.page-blog-how-to-get-nextbet-latest-link__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-get-nextbet-latest-link__step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-blog-how-to-get-nextbet-latest-link__step-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #f0f0f0;
}

.page-blog-how-to-get-nextbet-latest-link__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-how-to-get-nextbet-latest-link__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-get-nextbet-latest-link__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-get-nextbet-latest-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: #26A9E0; /* Brand color for FAQ question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-get-nextbet-latest-link__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-get-nextbet-latest-link__faq-question .page-blog-how-to-get-nextbet-latest-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-how-to-get-nextbet-latest-link__faq-item[open] .page-blog-how-to-get-nextbet-latest-link__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-get-nextbet-latest-link__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Conclusion Section */
.page-blog-how-to-get-nextbet-latest-link__conclusion {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-how-to-get-nextbet-latest-link__hero-section {
    padding: 40px 15px;
  }

  .page-blog-how-to-get-nextbet-latest-link__section {
    padding: 40px 0;
  }

  .page-blog-how-to-get-nextbet-latest-link__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog-how-to-get-nextbet-latest-link__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }

  .page-blog-how-to-get-nextbet-latest-link__feature-grid,
  .page-blog-how-to-get-nextbet-latest-link__content-grid,
  .page-blog-how-to-get-nextbet-latest-link__product-grid,
  .page-blog-how-to-get-nextbet-latest-link__promo-grid,
  .page-blog-how-to-get-nextbet-latest-link__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .page-blog-how-to-get-nextbet-latest-link__feature-card,
  .page-blog-how-to-get-nextbet-latest-link__grid-item,
  .page-blog-how-to-get-nextbet-latest-link__product-card,
  .page-blog-how-to-get-nextbet-latest-link__promo-card,
  .page-blog-how-to-get-nextbet-latest-link__step-card {
    padding: 25px;
  }

  .page-blog-how-to-get-nextbet-latest-link__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-get-nextbet-latest-link__btn-primary,
  .page-blog-how-to-get-nextbet-latest-link__btn-secondary {
    width: 100%;
    max-width: 300px; /* Constrain max width for stacked buttons */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-get-nextbet-latest-link {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-get-nextbet-latest-link__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-get-nextbet-latest-link__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-how-to-get-nextbet-latest-link__section {
    padding: 30px 0;
  }

  .page-blog-how-to-get-nextbet-latest-link__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-how-to-get-nextbet-latest-link__section-title {
    font-size: clamp(1.5em, 5.5vw, 2.2em);
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-get-nextbet-latest-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/content */
  .page-blog-how-to-get-nextbet-latest-link__section,
  .page-blog-how-to-get-nextbet-latest-link__card,
  .page-blog-how-to-get-nextbet-latest-link__container,
  .page-blog-how-to-get-nextbet-latest-link__feature-card,
  .page-blog-how-to-get-nextbet-latest-link__grid-item,
  .page-blog-how-to-get-nextbet-latest-link__product-card,
  .page-blog-how-to-get-nextbet-latest-link__promo-card,
  .page-blog-how-to-get-nextbet-latest-link__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-how-to-get-nextbet-latest-link__cta-button,
  .page-blog-how-to-get-nextbet-latest-link__btn-primary,
  .page-blog-how-to-get-nextbet-latest-link__btn-secondary,
  .page-blog-how-to-get-nextbet-latest-link a[class*="button"],
  .page-blog-how-to-get-nextbet-latest-link a[class*="btn"] {
    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-get-nextbet-latest-link__cta-buttons,
  .page-blog-how-to-get-nextbet-latest-link__button-group,
  .page-blog-how-to-get-nextbet-latest-link__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-blog-how-to-get-nextbet-latest-link__feature-grid,
  .page-blog-how-to-get-nextbet-latest-link__content-grid,
  .page-blog-how-to-get-nextbet-latest-link__product-grid,
  .page-blog-how-to-get-nextbet-latest-link__promo-grid,
  .page-blog-how-to-get-nextbet-latest-link__step-by-step {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-get-nextbet-latest-link__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-how-to-get-nextbet-latest-link__faq-answer {
    padding: 15px;
  }
}