/* style/blog-nustar-latest-promotions-guide.css */

/* General Styles */
.page-blog-nustar-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-blog-nustar-latest-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-nustar-latest-promotions-guide__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-nustar-latest-promotions-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF6D6;
  text-align: justify;
}

.page-blog-nustar-latest-promotions-guide__link {
  color: #FFD36B; /* Auxiliary color for links */
  text-decoration: underline;
}

.page-blog-nustar-latest-promotions-guide__link:hover {
  color: #F2C14E; /* Main color on hover */
}

/* Hero Section */
.page-blog-nustar-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-nustar-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  height: 600px; /* Fixed height for desktop hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-blog-nustar-latest-promotions-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-nustar-latest-promotions-guide__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-nustar-latest-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-blog-nustar-latest-promotions-guide__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-nustar-latest-promotions-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-nustar-latest-promotions-guide__btn-primary,
.page-blog-nustar-latest-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-nustar-latest-promotions-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: 2px solid transparent;
}

.page-blog-nustar-latest-promotions-guide__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-nustar-latest-promotions-guide__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-blog-nustar-latest-promotions-guide__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

/* Content Sections */
.page-blog-nustar-latest-promotions-guide__content-section {
  padding: 60px 0;
}

.page-blog-nustar-latest-promotions-guide__dark-bg {
  background-color: #111111; /* Card BG */
}

.page-blog-nustar-latest-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Minimum image height */
}

/* Promo Grid */
.page-blog-nustar-latest-promotions-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nustar-latest-promotions-guide__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-blog-nustar-latest-promotions-guide__card-title {
  font-size: 1.6em;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-nustar-latest-promotions-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Minimum image height */
}

.page-blog-nustar-latest-promotions-guide__card-text {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Steps List */
.page-blog-nustar-latest-promotions-guide__steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nustar-latest-promotions-guide__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-blog-nustar-latest-promotions-guide__step-number {
  background-color: #F2C14E; /* Main color */
  color: #111111;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-blog-nustar-latest-promotions-guide__step-content {
  flex-grow: 1;
}

.page-blog-nustar-latest-promotions-guide__step-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Payment Options */
.page-blog-nustar-latest-promotions-guide__payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Game Categories */
.page-blog-nustar-latest-promotions-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nustar-latest-promotions-guide__game-category-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-blog-nustar-latest-promotions-guide__category-icon {
  width: 48px; /* Larger icon size */
  height: 48px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 48px; 
  min-height: 48px;
}

.page-blog-nustar-latest-promotions-guide__category-title {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-nustar-latest-promotions-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* App Showcase */
.page-blog-nustar-latest-promotions-guide__app-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-nustar-latest-promotions-guide__app-showcase .page-blog-nustar-latest-promotions-guide__image-full-width {
  flex: 1 1 500px;
  margin: 0;
  min-height: 400px;
}

.page-blog-nustar-latest-promotions-guide__app-cta {
  flex: 1 1 300px;
  text-align: center;
}

.page-blog-nustar-latest-promotions-guide__app-cta-title {
  font-size: 2em;
  color: #FFD36B;
  margin-bottom: 20px;
  font-weight: bold;
}

/* FAQ Section */
.page-blog-nustar-latest-promotions-guide__faq-list {
  margin-top: 40px;
}

.page-blog-nustar-latest-promotions-guide__faq-item {
  background-color: #0A0A0A; /* Background */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-nustar-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-blog-nustar-latest-promotions-guide__faq-question:hover {
  background-color: #222222;
}

.page-blog-nustar-latest-promotions-guide__faq-question h3 {
  margin: 0;
  color: #FFF6D6;
  font-size: 1em; /* Adjust to fit within question div */
}

.page-blog-nustar-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-blog-nustar-latest-promotions-guide__faq-item.active .page-blog-nustar-latest-promotions-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-nustar-latest-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #0A0A0A;
}

.page-blog-nustar-latest-promotions-guide__faq-item.active .page-blog-nustar-latest-promotions-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px !important;
}

.page-blog-nustar-latest-promotions-guide__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
  color: #FFF6D6;
}

/* CTA Section (Bottom) */
.page-blog-nustar-latest-promotions-guide__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #F2C14E; /* Main color */
  color: #111111;
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__section-title {
  color: #111111;
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__text-block {
  color: #111111;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__btn-primary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #111111;
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__btn-primary:hover {
  background: #222222;
  color: #F2C14E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__btn-secondary {
  background: #FFD36B;
  color: #111111;
  border: 2px solid #111111;
}

.page-blog-nustar-latest-promotions-guide__cta-section .page-blog-nustar-latest-promotions-guide__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nustar-latest-promotions-guide__hero-image-wrapper {
    height: 500px;
  }
  .page-blog-nustar-latest-promotions-guide__section-title {
    font-size: 2em;
  }
  .page-blog-nustar-latest-promotions-guide__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-blog-nustar-latest-promotions-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-nustar-latest-promotions-guide__hero-image-wrapper {
    height: 350px;
    margin-bottom: 20px;
  }
  .page-blog-nustar-latest-promotions-guide__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-blog-nustar-latest-promotions-guide__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-blog-nustar-latest-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-nustar-latest-promotions-guide__btn-primary,
  .page-blog-nustar-latest-promotions-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-nustar-latest-promotions-guide__content-section {
    padding: 40px 0;
  }
  .page-blog-nustar-latest-promotions-guide__container {
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-nustar-latest-promotions-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-nustar-latest-promotions-guide__text-block {
    font-size: 0.95em;
  }
  .page-blog-nustar-latest-promotions-guide__card {
    padding: 20px;
  }
  .page-blog-nustar-latest-promotions-guide__card-title {
    font-size: 1.4em;
  }
  .page-blog-nustar-latest-promotions-guide__card-image {
    height: 200px;
    min-height: 200px;
  }
  .page-blog-nustar-latest-promotions-guide__steps-list,
  .page-blog-nustar-latest-promotions-guide__payment-options,
  .page-blog-nustar-latest-promotions-guide__game-categories {
    gap: 20px;
  }
  .page-blog-nustar-latest-promotions-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-blog-nustar-latest-promotions-guide__step-number {
    margin-bottom: 10px;
  }
  .page-blog-nustar-latest-promotions-guide__app-showcase {
    flex-direction: column;
    gap: 30px;
  }
  .page-blog-nustar-latest-promotions-guide__app-showcase .page-blog-nustar-latest-promotions-guide__image-full-width {
    min-height: 250px;
  }
  .page-blog-nustar-latest-promotions-guide__app-cta-title {
    font-size: 1.8em;
  }
  .page-blog-nustar-latest-promotions-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-blog-nustar-latest-promotions-guide__faq-answer {
    padding: 0 15px;
  }
  .page-blog-nustar-latest-promotions-guide__faq-item.active .page-blog-nustar-latest-promotions-guide__faq-answer {
    padding: 15px !important;
  }

  /* Image responsiveness */
  .page-blog-nustar-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* All containers with images */
  .page-blog-nustar-latest-promotions-guide__hero-section,
  .page-blog-nustar-latest-promotions-guide__content-section,
  .page-blog-nustar-latest-promotions-guide__card,
  .page-blog-nustar-latest-promotions-guide__app-showcase {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .page-blog-nustar-latest-promotions-guide__cta-section {
    padding: 60px 0;
  }
}