/* style/blog-nbet-latest-promotions-guide.css */
:root {
  --nbet-primary: #11A84E;
  --nbet-secondary: #22C768;
  --nbet-bg-card: #11271B;
  --nbet-bg-dark: #08160F;
  --nbet-text-main: #F2FFF6;
  --nbet-text-secondary: #A7D9B8;
  --nbet-border: #2E7A4E;
  --nbet-glow: #57E38D;
  --nbet-gold: #F2C14E;
  --nbet-divider: #1E3A2A;
  --nbet-deep-green: #0A4B2C;
  --nbet-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-nbet-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--nbet-text-main);
  background-color: var(--nbet-bg-dark); /* Ensure text contrast with body background */
}

.page-blog-nbet-latest-promotions-guide__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 */
  background-color: var(--nbet-bg-dark);
  overflow: hidden;
}

.page-blog-nbet-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for image wrapper */
  margin-bottom: 30px;
}

.page-blog-nbet-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-nbet-latest-promotions-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-blog-nbet-latest-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: var(--nbet-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-nbet-latest-promotions-guide__intro-text {
  font-size: 1.1em;
  color: var(--nbet-text-secondary);
  margin-bottom: 30px;
}

.page-blog-nbet-latest-promotions-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-nbet-latest-promotions-guide__btn-primary,
.page-blog-nbet-latest-promotions-guide__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  flex-grow: 1;
  max-width: 250px;
}

.page-blog-nbet-latest-promotions-guide__btn-primary {
  background: var(--nbet-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-nbet-latest-promotions-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  opacity: 0.9;
}

.page-blog-nbet-latest-promotions-guide__btn-secondary {
  background: transparent;
  color: var(--nbet-text-main);
  border: 2px solid var(--nbet-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-nbet-latest-promotions-guide__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nbet-secondary);
  border-color: var(--nbet-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-nbet-latest-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--nbet-bg-dark);
}

.page-blog-nbet-latest-promotions-guide__dark-section {
  background-color: var(--nbet-bg-card);
  padding: 50px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-nbet-latest-promotions-guide__section-title {
  font-size: 2.2em;
  color: var(--nbet-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-blog-nbet-latest-promotions-guide__sub-title {
  font-size: 1.6em;
  color: var(--nbet-secondary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-nbet-latest-promotions-guide__text-block p {
  margin-bottom: 15px;
  color: var(--nbet-text-main);
}

.page-blog-nbet-latest-promotions-guide__text-block strong {
  color: var(--nbet-gold);
}

.page-blog-nbet-latest-promotions-guide__list,
.page-blog-nbet-latest-promotions-guide__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--nbet-text-main);
}

.page-blog-nbet-latest-promotions-guide__ordered-list {
  list-style-type: decimal;
}

.page-blog-nbet-latest-promotions-guide__list li,
.page-blog-nbet-latest-promotions-guide__ordered-list li {
  margin-bottom: 10px;
  color: var(--nbet-text-secondary);
}

.page-blog-nbet-latest-promotions-guide__nested-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
  color: var(--nbet-text-secondary);
}

.page-blog-nbet-latest-promotions-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Base responsive for images */
}

.page-blog-nbet-latest-promotions-guide__faq-list {
  margin-top: 30px;
}

.page-blog-nbet-latest-promotions-guide__faq-item {
  background-color: var(--nbet-bg-card);
  border: 1px solid var(--nbet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--nbet-text-main);
}

.page-blog-nbet-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--nbet-text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-blog-nbet-latest-promotions-guide__faq-item[open] > .page-blog-nbet-latest-promotions-guide__faq-question,
.page-blog-nbet-latest-promotions-guide__faq-question:hover {
  background-color: var(--nbet-deep-green);
}

.page-blog-nbet-latest-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nbet-latest-promotions-guide__faq-question::marker {
  display: none;
}

.page-blog-nbet-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--nbet-secondary);
}

.page-blog-nbet-latest-promotions-guide__faq-item[open] .page-blog-nbet-latest-promotions-guide__faq-toggle {
  color: var(--nbet-gold);
}

.page-blog-nbet-latest-promotions-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: var(--nbet-text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nbet-latest-promotions-guide__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-nbet-latest-promotions-guide__section-title {
    font-size: 2em;
  }
  .page-blog-nbet-latest-promotions-guide__sub-title {
    font-size: 1.4em;
  }
  .page-blog-nbet-latest-promotions-guide__btn-primary,
  .page-blog-nbet-latest-promotions-guide__btn-secondary {
    max-width: 200px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-blog-nbet-latest-promotions-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-nbet-latest-promotions-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-nbet-latest-promotions-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-blog-nbet-latest-promotions-guide__intro-text {
    font-size: 1em;
  }
  .page-blog-nbet-latest-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
  }
  .page-blog-nbet-latest-promotions-guide__btn-primary,
  .page-blog-nbet-latest-promotions-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-blog-nbet-latest-promotions-guide__content-area,
  .page-blog-nbet-latest-promotions-guide__dark-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-nbet-latest-promotions-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-nbet-latest-promotions-guide__sub-title {
    font-size: 1.2em;
  }
  .page-blog-nbet-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-blog-nbet-latest-promotions-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-nbet-latest-promotions-guide__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }
  .page-blog-nbet-latest-promotions-guide__hero-image-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-blog-nbet-latest-promotions-guide__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-nbet-latest-promotions-guide__main-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }
  .page-blog-nbet-latest-promotions-guide__section-title {
    font-size: 1.6em;
  }
  .page-blog-nbet-latest-promotions-guide__btn-primary,
  .page-blog-nbet-latest-promotions-guide__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
}