.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color, #FFFFFF);
}

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

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

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #017439, #005f2f);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-promotions-welcome-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-welcome-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #C30808;
  border-radius: 2px;
}

.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__section-title {
  color: #ffffff;
}

.page-promotions-welcome-bonus__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #017439;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-welcome-bonus__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__text-block,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__sub-title {
  color: #ffffff;
}

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

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

.page-promotions-welcome-bonus__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  max-width: 800px;
}

.page-promotions-welcome-bonus__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-welcome-bonus__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.page-promotions-welcome-bonus__video-wrapper:hover .page-promotions-welcome-bonus__video-overlay {
  opacity: 1;
}

.page-promotions-welcome-bonus__video-cta {
  background-color: #C30808;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__video-cta:hover {
  background-color: #a30606;
}

.page-promotions-welcome-bonus__benefits-section {
  padding: 80px 0;
}

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

.page-promotions-welcome-bonus__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-promotions-welcome-bonus__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions-welcome-bonus__benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__benefit-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__benefit-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-promotions-welcome-bonus__bonus-details-section {
  padding: 80px 0;
}

.page-promotions-welcome-bonus__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-welcome-bonus__list-conditions {
  list-style-type: disc;
  margin-left: 20px;
}

.page-promotions-welcome-bonus__list-conditions li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

.page-promotions-welcome-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-promotions-welcome-bonus__games-section {
  padding: 80px 0;
}

.page-promotions-welcome-bonus__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions-welcome-bonus__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.page-promotions-welcome-bonus__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions-welcome-bonus__game-title {
  font-size: 1.4em;
  color: #017439;
  padding: 15px 20px 0;
  margin: 0;
}

.page-promotions-welcome-bonus__game-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 15px;
  flex-grow: 1;
}

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

.page-promotions-welcome-bonus__faq-section {
  padding: 80px 0;
}

.page-promotions-welcome-bonus__faq-list {
  margin-top: 40px;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

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

.page-promotions-welcome-bonus__faq-title {
  font-size: 1.2em;
  color: #017439;
  margin: 0;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #C30808;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-welcome-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

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

  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-welcome-bonus__grid-two-cols {
    grid-template-columns: 1fr;
  }

  .page-promotions-welcome-bonus__image-wrapper {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-welcome-bonus__hero-section {
    min-height: 500px;
    padding: 30px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-welcome-bonus__text-block,
  .page-promotions-welcome-bonus__list li,
  .page-promotions-welcome-bonus__list-conditions li {
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__games-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-welcome-bonus__benefit-card,
  .page-promotions-welcome-bonus__game-card {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__game-image {
    height: 180px;
  }

  .page-promotions-welcome-bonus__game-title {
    font-size: 1.2em;
  }

  .page-promotions-welcome-bonus__faq-title {
    font-size: 1.1em;
  }

  /* Mobile image responsiveness */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__hero-content,
  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__games-grid,
  .page-promotions-welcome-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Mobile video responsiveness */
  .page-promotions-welcome-bonus video,
  .page-promotions-welcome-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-welcome-bonus__video-wrapper {
    padding-bottom: 75% !important; /* Adjust aspect ratio for better mobile fit if needed, e.g., 4:3 */
  }

  .page-promotions-welcome-bonus__video-overlay {
    font-size: 0.9em;
  }
}