.page-resources-32win-latest-bonuses {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds, WCAG AA with #000080 */
  background-color: #1a1a1a; /* Very dark gray for overall page background */
  line-height: 1.6;
}

.page-resources-32win-latest-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-32win-latest-bonuses__hero {
  background: linear-gradient(135deg, #000080 0%, #330033 50%, #000080 100%); /* Deep navy to dark purple gradient */
  color: #FFD700;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-resources-32win-latest-bonuses__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,gradient,luxury]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-32win-latest-bonuses__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-32win-latest-bonuses__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFD700; /* Gold for main title, excellent contrast with dark background */
}

.page-resources-32win-latest-bonuses__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0; /* Slightly lighter than E0E0E0 for better visibility on dark gradient */
}

.page-resources-32win-latest-bonuses__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-32win-latest-bonuses__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-resources-32win-latest-bonuses__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Navy text on gold, excellent contrast */
}

.page-resources-32win-latest-bonuses__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-32win-latest-bonuses__button--secondary {
  background-color: #000080; /* Navy button */
  color: #FFD700; /* Gold text on navy, excellent contrast */
  border: 2px solid #FFD700;
}

.page-resources-32win-latest-bonuses__button--secondary:hover {
  background-color: #000066;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-32win-latest-bonuses__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-32win-latest-bonuses__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  opacity: 0.6;
  z-index: 0;
}

.page-resources-32win-latest-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.section-padding {
  padding: 60px 0;
}

.section-bg-dark {
  background-color: #000066; /* Slightly lighter navy for contrast with #1a1a1a main background */
}

.page-resources-32win-latest-bonuses__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings, excellent contrast */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-32win-latest-bonuses__text-content {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-32win-latest-bonuses__intro .page-resources-32win-latest-bonuses__text-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-32win-latest-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-32win-latest-bonuses__card {
  background-color: #1a1a1a; /* Dark background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-32win-latest-bonuses__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-resources-32win-latest-bonuses__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-32win-latest-bonuses__card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-32win-latest-bonuses__card-description {
  font-size: 1em;
  color: #B0B0B0; /* Light gray for description, good contrast with #1a1a1a */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources-32win-latest-bonuses__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  background-color: #FFD700;
  color: #000080;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-32win-latest-bonuses__card-button:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-resources-32win-latest-bonuses__how-to-claim .page-resources-32win-latest-bonuses__text-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-32win-latest-bonuses__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 40px auto;
}

.page-resources-32win-latest-bonuses__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-32win-latest-bonuses__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #000080; /* Navy on gold, excellent contrast */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-32win-latest-bonuses__steps-list li strong {
  color: #FFD700;
}

.page-resources-32win-latest-bonuses__steps-list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-32win-latest-bonuses__steps-list li a:hover {
  color: #E6C200;
}

.page-resources-32win-latest-bonuses__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-resources-32win-latest-bonuses__terms .page-resources-32win-latest-bonuses__text-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-32win-latest-bonuses__terms-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-resources-32win-latest-bonuses__terms-list li {
  margin-bottom: 20px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-32win-latest-bonuses__terms-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFD700;
  font-size: 1.5em;
  line-height: 1;
}

.page-resources-32win-latest-bonuses__terms-list li strong {
  color: #FFD700;
}

.page-resources-32win-latest-bonuses__faq-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-32win-latest-bonuses__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions, excellent contrast */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-32win-latest-bonuses__faq-answer {
  font-size: 1.05em;
  color: #B0B0B0; /* Light gray for answer text, good contrast with #1a1a1a */
}

.page-resources-32win-latest-bonuses__final-cta {
  text-align: center;
  padding: 80px 0;
}

.page-resources-32win-latest-bonuses__final-cta-content {
  max-width: 900px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-32win-latest-bonuses__title {
    font-size: 2.8em;
  }

  .page-resources-32win-latest-bonuses__subtitle {
    font-size: 1.2em;
  }

  .page-resources-32win-latest-bonuses__heading {
    font-size: 2em;
  }

  .page-resources-32win-latest-bonuses__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-32win-latest-bonuses__hero {
    padding: 80px 0 200px; /* More space for image at bottom */
  }

  .page-resources-32win-latest-bonuses__hero-image-wrapper {
    bottom: -100px; /* Adjust for smaller screens */
  }

  .page-resources-32win-latest-bonuses__title {
    font-size: 2.2em;
  }

  .page-resources-32win-latest-bonuses__subtitle {
    font-size: 1.1em;
  }

  .page-resources-32win-latest-bonuses__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-32win-latest-bonuses__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-32win-latest-bonuses__heading {
    font-size: 1.8em;
  }

  .page-resources-32win-latest-bonuses__steps-list li,
  .page-resources-32win-latest-bonuses__terms-list li {
    font-size: 1em;
    padding-left: 50px;
  }

  .page-resources-32win-latest-bonuses__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-resources-32win-latest-bonuses__faq-question {
    font-size: 1.2em;
  }

  .section-padding {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-resources-32win-latest-bonuses__hero {
    padding: 60px 0 150px;
  }
  .page-resources-32win-latest-bonuses__hero-image-wrapper {
    bottom: -80px;
  }
  .page-resources-32win-latest-bonuses__title {
    font-size: 1.8em;
  }
  .page-resources-32win-latest-bonuses__subtitle {
    font-size: 1em;
  }
  .page-resources-32win-latest-bonuses__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-resources-32win-latest-bonuses__heading {
    font-size: 1.5em;
  }
  .page-resources-32win-latest-bonuses__grid {
    grid-template-columns: 1fr;
  }
  .page-resources-32win-latest-bonuses__card {
    padding: 20px;
  }
  .page-resources-32win-latest-bonuses__steps-list li,
  .page-resources-32win-latest-bonuses__terms-list li {
    padding-left: 40px;
  }
  .page-resources-32win-latest-bonuses__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-resources-32win-latest-bonuses__faq-item {
    padding: 20px;
  }
  .page-resources-32win-latest-bonuses__faq-question {
    font-size: 1.1em;
  }
}