/* style/promotions-welcome-bonus.css */

/* Global styles for the page content, ensuring proper contrast */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333; /* Default text color for light backgrounds */
  background-color: #f8f8f8;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2E36 0%, #0A2E36 60%, #E0B400 100%); /* Main color blend */
  color: #ffffff; /* Light text for dark background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #E0B400; /* Auxiliary color for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

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

/* General Section Styles */
.page-promotions-welcome-bonus__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-promotions-welcome-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.2em;
  color: #0A2E36; /* Main color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-welcome-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400; /* Auxiliary color for accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-welcome-bonus__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.page-promotions-welcome-bonus__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

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

.page-promotions-welcome-bonus__list--terms {
  list-style: decimal inside;
  margin-left: 0;
}

/* CTA Button Styles */
.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary color for primary CTA */
  color: #0A2E36; /* Dark text for auxiliary background */
  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;
  border: none;
  cursor: pointer;
}

.page-promotions-welcome-bonus__cta-button:hover {
  background-color: #f5c700; /* Slightly lighter gold on hover */
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus__cta-button--secondary {
  background-color: #0A2E36;
  color: #E0B400; /* Auxiliary color for text on main color background */
  border: 2px solid #E0B400;
}

.page-promotions-welcome-bonus__cta-button--secondary:hover {
  background-color: #1a424a;
  border-color: #f5c700;
}

.page-promotions-welcome-bonus__cta-button--final {
  margin-top: 40px;
  font-size: 1.3em;
  padding: 18px 35px;
}

/* How to Claim Section */
.page-promotions-welcome-bonus__how-to-claim .page-promotions-welcome-bonus__section-title {
  color: #0A2E36;
}

.page-promotions-welcome-bonus__steps-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__steps-image {
  flex: 1;
  min-width: 300px;
}

.page-promotions-welcome-bonus__steps-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__ordered-list {
  flex: 2;
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0;
}

.page-promotions-welcome-bonus__ordered-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
  font-size: 1.1em;
  color: #333;
}

.page-promotions-welcome-bonus__ordered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0A2E36; /* Main color for step numbers */
  color: #E0B400; /* Auxiliary color for text on step numbers */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-welcome-bonus__bonus-card {
  background-color: #f0f4f8; /* Lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-welcome-bonus__card-title {
  font-size: 1.6em;
  color: #0A2E36; /* Main color for card titles */
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__bonus-card p {
  font-size: 1em;
  color: #555;
}

/* Terms and Conditions Section */
.page-promotions-welcome-bonus__terms-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__terms-image {
  flex: 1;
  min-width: 300px;
}

.page-promotions-welcome-bonus__terms-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__list--terms {
  flex: 2;
  padding-left: 0;
}

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

.page-promotions-welcome-bonus__advantage-card {
  background-color: #f0f4f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-welcome-bonus__advantage-card .page-promotions-welcome-bonus__card-title {
  color: #0A2E36;
}

.page-promotions-welcome-bonus__why-image {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__why-image img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* App Download Section */
.page-promotions-welcome-bonus__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  background-color: #0A2E36; /* Dark background for this section */
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
}

.page-promotions-welcome-bonus__app-content .page-promotions-welcome-bonus__section-title {
  color: #E0B400; /* Auxiliary color for title on dark background */
}

.page-promotions-welcome-bonus__app-text {
  flex: 2;
  min-width: 300px;
}

.page-promotions-welcome-bonus__app-text p, .page-promotions-welcome-bonus__app-text li {
  color: #e0e0e0;
}

.page-promotions-welcome-bonus__app-text .page-promotions-welcome-bonus__list {
  list-style: disc inside;
  margin-left: 20px;
}

.page-promotions-welcome-bonus__app-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-promotions-welcome-bonus__app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-welcome-bonus__faq-question {
  background-color: #0A2E36; /* Dark background for question */
  color: #E0B400; /* Auxiliary color for question text */
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #ffffff; /* Light background for answer */
  color: #333;
}

.page-promotions-welcome-bonus__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
}

.page-promotions-welcome-bonus__faq-question.active + .page-promotions-welcome-bonus__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Conclusion Section */
.page-promotions-welcome-bonus__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-promotions-welcome-bonus__conclusion .page-promotions-welcome-bonus__section-title {
  color: #0A2E36;
}

.page-promotions-welcome-bonus__conclusion p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.15em;
}

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

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

  .page-promotions-welcome-bonus__steps-container,
  .page-promotions-welcome-bonus__terms-container,
  .page-promotions-welcome-bonus__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-welcome-bonus__steps-image, 
  .page-promotions-welcome-bonus__terms-image, 
  .page-promotions-welcome-bonus__app-image {
    order: -1; /* Image appears above text on mobile */
  }

  .page-promotions-welcome-bonus__ordered-list li {
    padding-left: 40px;
  }

  .page-promotions-welcome-bonus__ordered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__why-image img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero {
    padding: 60px 15px;
  }

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

  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__section {
    padding: 40px 15px;
  }

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

  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__cta-button--final {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-promotions-welcome-bonus__app-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 1.5em;
  }

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

  .page-promotions-welcome-bonus__list, .page-promotions-welcome-bonus__ordered-list {
    margin-left: 0;
  }
  
  .page-promotions-welcome-bonus__ordered-list li {
    padding-left: 35px;
  }

  .page-promotions-welcome-bonus__ordered-list li::before {
    width: 28px;
    height: 28px;
    font-size: 0.9em;
  }

  .page-promotions-welcome-bonus__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px;
  }
}