.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Assume --bg-dark is a dark color */
  padding-top: var(--header-offset, 120px); /* Add padding for fixed header */
}

.page-promotions-welcome-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-welcome-bonus__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections */
  color: #ffffff;
}

.page-promotions-welcome-bonus__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions-welcome-bonus__card {
  background-color: #2a2a2a; /* Card background for dark sections */
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__card {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for titles */
  text-transform: uppercase;
}

.page-promotions-welcome-bonus__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__section-intro {
  color: #555555;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: #CC0000; /* Main brand color */
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #ff3333;
  border-color: #ff3333;
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Accent brand color */
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-promotions-welcome-bonus__large-btn {
  padding: 15px 30px;
  font-size: 18px;
}

/* Hero Banner Section */
.page-promotions-welcome-bonus__hero-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #CC0000 0%, #a00000 100%); /* Gradient with main color */
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 48px;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bonus Overview Section */
.page-promotions-welcome-bonus__bonus-overview {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-welcome-bonus__feature-item {
  text-align: center;
}

.page-promotions-welcome-bonus__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__feature-item p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__feature-title {
  color: #CC0000; /* Main color */
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__feature-item p {
  color: #555555;
}

/* How To Claim Section */
.page-promotions-welcome-bonus__how-to-claim {
  padding: 60px 0;
  background-color: #121212; /* Slightly darker dark background */
}

.page-promotions-welcome-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-welcome-bonus__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-welcome-bonus__step-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__step-title {
  font-size: 26px;
  font-weight: bold;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__step-item p {
  font-size: 16px;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__step-item .page-promotions-welcome-bonus__btn-primary {
  margin-top: auto; /* Push button to bottom */
}

/* Terms & Conditions Section */
.page-promotions-welcome-bonus__terms-conditions {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__terms-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-promotions-welcome-bonus__terms-content li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__terms-content li::before {
  content: '✓';
  color: #FFD700; /* Accent color */\  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__terms-content li {
  color: #555555;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__terms-content li::before {
  color: #CC0000; /* Main color */
}

.page-promotions-welcome-bonus__terms-content p {
  font-size: 16px;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__terms-content p {
  color: #555555;
}

/* Why Choose Section */
.page-promotions-welcome-bonus__why-choose {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-promotions-welcome-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-welcome-bonus__benefit-item {
  text-align: center;
}

.page-promotions-welcome-bonus__benefit-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__benefit-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__benefit-item p {
  font-size: 16px;
  color: #e0e0e0;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-welcome-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333333; /* Dark border for dark theme */
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-item {
  border: 1px solid #e0e0e0;
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #222222;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-question {
  background: #ffffff;
}

.page-promotions-welcome-bonus__faq-question:hover {
  background: #333333;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions-welcome-bonus__faq-question:active {
  background: #444444;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-question:active {
  background: #eeeeee;
}

.page-promotions-welcome-bonus__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-question h3 {
  color: #333333;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Accent color */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-toggle {
  color: #CC0000; /* Main color */
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
  color: #CC0000; /* Main color when active */
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-toggle {
  color: #FFD700; /* Accent color when active */
}

.page-promotions-welcome-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1a1a1a; /* Darker background for answer */
  color: #e0e0e0;
  border-radius: 0 0 10px 10px;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-answer {
  background: #f9f9f9;
  color: #555555;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Call to Action Section */
.page-promotions-welcome-bonus__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%); /* Gradient of brand colors */
}

.page-promotions-welcome-bonus__cta-section .page-promotions-welcome-bonus__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-promotions-welcome-bonus__cta-section .page-promotions-welcome-bonus__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__text-center {
  text-align: center;
}

/* General image styling for responsiveness */
.page-promotions-welcome-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 40px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 18px;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 30px;
  }

  .page-promotions-welcome-bonus__section-intro {
    font-size: 16px;
  }

  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .page-promotions-welcome-bonus__feature-title,
  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__benefit-title {
    font-size: 22px;
  }

  .page-promotions-welcome-bonus__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    padding-top: var(--header-offset, 80px) !important; /* Adjust for mobile header offset */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-welcome-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__hero-banner {
    padding: 60px 0;
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-bonus 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-promotions-welcome-bonus__hero-cta .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__hero-cta .page-promotions-welcome-bonus__btn-secondary {
    width: auto !important;
    margin: 0 auto;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .page-promotions-welcome-bonus__section-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-welcome-bonus__feature-item img,
  .page-promotions-welcome-bonus__step-item img,
  .page-promotions-welcome-bonus__benefit-item img {
    
  }

  .page-promotions-welcome-bonus__feature-title,
  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__benefit-title {
    font-size: 20px;
  }

  .page-promotions-welcome-bonus__card {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__terms-content li {
    font-size: 15px;
    padding-left: 20px;
  }

  .page-promotions-welcome-bonus__terms-content li::before {
    font-size: 18px;
  }

  .page-promotions-welcome-bonus__terms-content p {
    font-size: 15px;
  }

  .page-promotions-welcome-bonus__faq-question {
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions-welcome-bonus__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions-welcome-bonus__faq-answer p {
    font-size: 15px;
  }

  .page-promotions-welcome-bonus__cta-section {
    padding: 60px 0;
  }

  .page-promotions-welcome-bonus__large-btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__bonus-overview,
  .page-promotions-welcome-bonus__how-to-claim,
  .page-promotions-welcome-bonus__terms-conditions,
  .page-promotions-welcome-bonus__why-choose,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__cta-section,
  .page-promotions-welcome-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}