:root {
  --primary-color: #F2C14E; /* Main color */
  --secondary-color: #FFD36B; /* Auxiliary color */
  --card-bg: #111111; /* Card Background */
  --body-bg: #0A0A0A; /* Page Background */
  --text-main: #FFF6D6; /* Main Text Color */
  --border-color: #3A2A12; /* Border Color */
  --glow-color: #FFD36B; /* Glow Color */
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Gradient */
}

/* Base styles for the page content */
.page-promotions-welcome-bonus {
  background-color: var(--body-bg); /* Dark background */
  color: var(--text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions-welcome-bonus h1,
.page-promotions-welcome-bonus h2,
.page-promotions-welcome-bonus h3 {
  color: var(--text-main); /* Headings use light text */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-welcome-bonus h1 {
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
  line-height: 1.2;
}

.page-promotions-welcome-bonus h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.3;
}

.page-promotions-welcome-bonus h3 {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
}

.page-promotions-welcome-bonus p {
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus ul,
.page-promotions-welcome-bonus ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-promotions-welcome-bonus li {
  margin-bottom: 8px;
}

/* Section styling */
.page-promotions-welcome-bonus__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus__section:nth-of-type(even) {
  background-color: var(--card-bg); /* Alternate section background */
}

/* HERO Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--body-bg);
}

.page-promotions-welcome-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop */
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 15px var(--glow-color); /* Add glow effect */
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-promotions-welcome-bonus__hero-content h1 {
  color: var(--text-main);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.page-promotions-welcome-bonus__hero-content p {
  color: var(--text-main);
  font-size: 18px;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff; /* White text for button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Card-like styling for content blocks */
.page-promotions-welcome-bonus__card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Step-by-step guide */
.page-promotions-welcome-bonus__steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-promotions-welcome-bonus__steps-list li {
  background-color: var(--card-bg);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions-welcome-bonus__steps-list li h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__steps-list li p {
  margin-bottom: 0;
}

/* FAQ Section */
details.page-promotions-welcome-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
  font-weight: bold;
}
details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.page-promotions-welcome-bonus__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-promotions-welcome-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions-welcome-bonus__faq-item .page-promotions-welcome-bonus__faq-answer {
  padding: 0 25px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
}
.page-promotions-welcome-bonus__faq-answer p {
  margin-bottom: 0;
}

/* Other promotional links/buttons */
.page-promotions-welcome-bonus__promo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__promo-buttons .page-promotions-welcome-bonus__cta-button {
  margin-top: 0; /* Override default margin for individual buttons */
}


/* Responsive styles */
@media (max-width: 768px) {
  .page-promotions-welcome-bonus__section {
    padding: 40px 15px;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-welcome-bonus__hero-image img {
    border-radius: 4px;
  }
  
  .page-promotions-welcome-bonus__hero-content h1 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-promotions-welcome-bonus__hero-content p {
    font-size: 16px;
  }

  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important; /* Button responsiveness */
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsiveness for all images */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  /* Container responsiveness for all containers */
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__hero-container,
  .page-promotions-welcome-bonus__promo-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-welcome-bonus__promo-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
  }

  .page-promotions-welcome-bonus__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .page-promotions-welcome-bonus__steps-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question { 
    padding: 15px; 
  }
  .page-promotions-welcome-bonus__faq-qtext { 
    font-size: 15px; 
  }
  details.page-promotions-welcome-bonus__faq-item .page-promotions-welcome-bonus__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Contrast Fixes */
.page-promotions-welcome-bonus__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions-welcome-bonus__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}