.page-resources-69vin-bonus-guide {
  font-family: 'Arial', sans-serif;
  color: #E5E7EB; /* Light gray for main text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-resources-69vin-bonus-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-69vin-bonus-guide__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4c 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-69vin-bonus-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-69vin-bonus-guide__hero-subtitle {
  font-size: 1.5em;
  color: #E5E7EB;
  margin-bottom: 40px;
}

.page-resources-69vin-bonus-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A202C; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-69vin-bonus-guide__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-69vin-bonus-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-69vin-bonus-guide__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
}

.page-resources-69vin-bonus-guide__introduction,
.page-resources-69vin-bonus-guide__bonus-types,
.page-resources-69vin-bonus-guide__claim-process,
.page-resources-69vin-bonus-guide__terms-conditions,
.page-resources-69vin-bonus-guide__tips,
.page-resources-69vin-bonus-guide__faq,
.page-resources-69vin-bonus-guide__conclusion {
  padding: 60px 0;
}

.page-resources-69vin-bonus-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-69vin-bonus-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-69vin-bonus-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #B0B3B8; /* Slightly lighter gray for body text */
}

.page-resources-69vin-bonus-guide__text-content .highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-69vin-bonus-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-69vin-bonus-guide__image--small {
  max-width: 600px;
}

.page-resources-69vin-bonus-guide__image--full-width {
  width: 100%;
}

.page-resources-69vin-bonus-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-69vin-bonus-guide__grid-item {
  background-color: #2D3748; /* Darker background for grid items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-resources-69vin-bonus-guide__grid-item:hover {
  transform: translateY(-5px);
  background-color: #3A4354;
}

.page-resources-69vin-bonus-guide__item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-69vin-bonus-guide__item-text {
  color: #B0B3B8;
  font-size: 1em;
}

.page-resources-69vin-bonus-guide__item-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-resources-69vin-bonus-guide__step-list {
  list-style: none;
  padding: 0;
}

.page-resources-69vin-bonus-guide__step-list li {
  background-color: #2D3748;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-resources-69vin-bonus-guide__step-list li:before {
  content: counters(step-counter, '.') '. ';
  counter-increment: step-counter;
  position: absolute;
  left: -15px;
  top: 30px;
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-resources-69vin-bonus-guide__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  margin-left: 35px;
}

.page-resources-69vin-bonus-guide__step-text {
  color: #B0B3B8;
  font-size: 1.1em;
  margin-left: 35px;
}

.page-resources-69vin-bonus-guide__action-link {
  display: inline-block;
  margin-top: 20px;
  margin-left: 35px;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-69vin-bonus-guide__action-link:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-69vin-bonus-guide__sub-list {
  list-style: disc;
  margin-left: 60px;
  color: #B0B3B8;
}

.page-resources-69vin-bonus-guide__sub-list li strong {
  color: #FFD700;
}

.page-resources-69vin-bonus-guide__bullet-list {
  list-style: none;
  padding: 0;
}

.page-resources-69vin-bonus-guide__bullet-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #B0B3B8;
  position: relative;
  padding-left: 45px;
}

.page-resources-69vin-bonus-guide__bullet-list li strong {
  color: #FFD700;
}

.page-resources-69vin-bonus-guide__bullet-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.page-resources-69vin-bonus-guide__faq .page-resources-69vin-bonus-guide__section-title {
  margin-bottom: 30px;
}

.page-resources-69vin-bonus-guide__accordion-item {
  background-color: #2D3748;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-69vin-bonus-guide__accordion-header {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-resources-69vin-bonus-guide__accordion-header:hover {
  background-color: #3A4354;
}

.page-resources-69vin-bonus-guide__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-69vin-bonus-guide__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-69vin-bonus-guide__accordion-content {
  padding: 0 25px 20px;
  color: #B0B3B8;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-69vin-bonus-guide__accordion-content p {
  margin-bottom: 10px;
}

.page-resources-69vin-bonus-guide__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

@media (max-width: 768px) {
  .page-resources-69vin-bonus-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-69vin-bonus-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-69vin-bonus-guide__section-title {
    font-size: 2em;
  }

  .page-resources-69vin-bonus-guide__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-69vin-bonus-guide__step-list li:before {
    left: 10px;
    top: 20px;
  }

  .page-resources-69vin-bonus-guide__step-title,
  .page-resources-69vin-bonus-guide__step-text,
  .page-resources-69vin-bonus-guide__action-link {
    margin-left: 50px;
  }

  .page-resources-69vin-bonus-guide__sub-list {
    margin-left: 70px;
  }
}

@media (max-width: 480px) {
  .page-resources-69vin-bonus-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-69vin-bonus-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-69vin-bonus-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-69vin-bonus-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-69vin-bonus-guide__item-title {
    font-size: 1.3em;
  }

  .page-resources-69vin-bonus-guide__step-title {
    font-size: 1.5em;
  }

  .page-resources-69vin-bonus-guide__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-69vin-bonus-guide__accordion-header::after {
    right: 20px;
  }

  .page-resources-69vin-bonus-guide__accordion-content {
    padding: 0 20px 15px;
  }
}