/* style/blog-nextbet-registration-guide.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-nextbet-registration-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-blog-nextbet-registration-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-nextbet-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-nextbet-registration-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
}

.page-blog-nextbet-registration-guide__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-blog-nextbet-registration-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-nextbet-registration-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-nextbet-registration-guide__list-item {
  font-size: 1.05em;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-blog-nextbet-registration-guide__list-item::before {
  content: '✔';
  color: #26A9E0; /* Brand color for list markers */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Hero Section */
.page-blog-nextbet-registration-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  min-height: 500px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-nextbet-registration-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-blog-nextbet-registration-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-blog-nextbet-registration-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-nextbet-registration-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Buttons */
.page-blog-nextbet-registration-guide__btn-primary,
.page-blog-nextbet-registration-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-blog-nextbet-registration-guide__btn-primary {
  background-color: #26A9E0; /* Brand color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-nextbet-registration-guide__btn-primary:hover {
  background-color: #1a88bb;
  border-color: #1a88bb;
  transform: translateY(-2px);
}

.page-blog-nextbet-registration-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0; /* Brand color */
  border: 2px solid #26A9E0;
}

.page-blog-nextbet-registration-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Section specific styles */
.page-blog-nextbet-registration-guide__intro-section {
  background-color: transparent;
}

.page-blog-nextbet-registration-guide__steps-section {
  background-color: #1f1f1f; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-blog-nextbet-registration-guide__steps-section .page-blog-nextbet-registration-guide__section-title,
.page-blog-nextbet-registration-guide__steps-section .page-blog-nextbet-registration-guide__sub-title {
  color: #26A9E0;
}

.page-blog-nextbet-registration-guide__steps-section .page-blog-nextbet-registration-guide__paragraph,
.page-blog-nextbet-registration-guide__steps-section .page-blog-nextbet-registration-guide__list-item {
  color: #f0f0f0;
}

.page-blog-nextbet-registration-guide__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-blog-nextbet-registration-guide__step-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-blog-nextbet-registration-guide__step-description {
  font-size: 1.05em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-blog-nextbet-registration-guide__step-image,
.page-blog-nextbet-registration-guide__image-content {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-nextbet-registration-guide__verification-section {
  background-color: transparent;
}

.page-blog-nextbet-registration-guide__benefits-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF; /* White text for brand color background */
}

.page-blog-nextbet-registration-guide__benefits-section .page-blog-nextbet-registration-guide__section-title,
.page-blog-nextbet-registration-guide__benefits-section .page-blog-nextbet-registration-guide__sub-title {
  color: #FFFFFF;
}

.page-blog-nextbet-registration-guide__benefits-section .page-blog-nextbet-registration-guide__paragraph,
.page-blog-nextbet-registration-guide__benefits-section .page-blog-nextbet-registration-guide__list-item {
  color: #f0f0f0;
}

.page-blog-nextbet-registration-guide__benefits-section .page-blog-nextbet-registration-guide__list-item::before {
  color: #FFFFFF;
}

/* FAQ Section */
.page-blog-nextbet-registration-guide__faq-section {
  background-color: #1f1f1f; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-blog-nextbet-registration-guide__faq-section .page-blog-nextbet-registration-guide__section-title {
  color: #26A9E0;
}

.page-blog-nextbet-registration-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-blog-nextbet-registration-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-nextbet-registration-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-blog-nextbet-registration-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nextbet-registration-guide__faq-question .page-blog-nextbet-registration-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-nextbet-registration-guide__faq-item[open] .page-blog-nextbet-registration-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-nextbet-registration-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
  text-align: left;
}

.page-blog-nextbet-registration-guide__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
}

/* Conclusion Section */
.page-blog-nextbet-registration-guide__conclusion-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF;
}

.page-blog-nextbet-registration-guide__conclusion-section .page-blog-nextbet-registration-guide__section-title {
  color: #FFFFFF;
}

.page-blog-nextbet-registration-guide__conclusion-section .page-blog-nextbet-registration-guide__paragraph {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nextbet-registration-guide__section-title {
    font-size: 2em;
  }
  .page-blog-nextbet-registration-guide__sub-title {
    font-size: 1.6em;
  }
  .page-blog-nextbet-registration-guide__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-nextbet-registration-guide__section {
    padding: 40px 0;
  }
  .page-blog-nextbet-registration-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-nextbet-registration-guide__sub-title {
    font-size: 1.4em;
  }
  .page-blog-nextbet-registration-guide__paragraph,
  .page-blog-nextbet-registration-guide__list-item,
  .page-blog-nextbet-registration-guide__step-description,
  .page-blog-nextbet-registration-guide__faq-answer {
    font-size: 1em;
  }
  .page-blog-nextbet-registration-guide__hero-section {
    min-height: 400px;
    padding: 10px 15px 40px;
  }
  .page-blog-nextbet-registration-guide__hero-content {
    padding: 15px;
  }
  .page-blog-nextbet-registration-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-nextbet-registration-guide__btn-primary,
  .page-blog-nextbet-registration-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: calc(100% - 30px); /* Account for padding */
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-blog-nextbet-registration-guide__container,
  .page-blog-nextbet-registration-guide__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-nextbet-registration-guide img,
  .page-blog-nextbet-registration-guide__image-content,
  .page-blog-nextbet-registration-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-nextbet-registration-guide__section,
  .page-blog-nextbet-registration-guide__card,
  .page-blog-nextbet-registration-guide__container,
  .page-blog-nextbet-registration-guide__step-card,
  .page-blog-nextbet-registration-guide__faq-item,
  .page-blog-nextbet-registration-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-nextbet-registration-guide__list {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-nextbet-registration-guide__list-item {
    padding-left: 20px;
  }
  .page-blog-nextbet-registration-guide__video-section { /* Video section specific for mobile */
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-blog-nextbet-registration-guide__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-nextbet-registration-guide__section-title {
    font-size: 1.5em;
  }
  .page-blog-nextbet-registration-guide__sub-title {
    font-size: 1.2em;
  }
  .page-blog-nextbet-registration-guide__hero-description {
    font-size: 0.95em;
  }
  .page-blog-nextbet-registration-guide__btn-primary,
  .page-blog-nextbet-registration-guide__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}

/* Color contrast fixes for specific elements if needed */
.page-blog-nextbet-registration-guide__light-bg {
  background: #1f1f1f; /* Adjusted to be dark as body background is dark */
  color: #ffffff;
}

.page-blog-nextbet-registration-guide__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

/* Ensure all text in general content areas is light on dark backgrounds */
.page-blog-nextbet-registration-guide__content-area p,
.page-blog-nextbet-registration-guide__content-area li {
  color: #f0f0f0;
}