/* style/resources-vin68-bonus-guide.css */
.page-resources-vin68-bonus-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-resources-vin68-bonus-guide__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #203A5A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-resources-vin68-bonus-guide__hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* General Section Styling */
.page-resources-vin68-bonus-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vin68-bonus-guide__section:last-of-type {
  border-bottom: none;
}

.page-resources-vin68-bonus-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* CTA Buttons */
.page-resources-vin68-bonus-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-resources-vin68-bonus-guide__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-vin68-bonus-guide__small-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-vin68-bonus-guide__large-button {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-vin68-bonus-guide__login-button {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-resources-vin68-bonus-guide__login-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Image Styling */
.page-resources-vin68-bonus-guide__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-vin68-bonus-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Offer Cards */
.page-resources-vin68-bonus-guide__offer-card {
  background-color: #1A2B47; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-vin68-bonus-guide__offer-card:hover {
  transform: translateY(-5px);
}

.page-resources-vin68-bonus-guide__offer-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-resources-vin68-bonus-guide__offer-card p {
  margin-bottom: 15px;
  color: #C0C0C0;
}

/* Lists */
.page-resources-vin68-bonus-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-vin68-bonus-guide__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-resources-vin68-bonus-guide__list--bullets li {
  list-style: disc;
  margin-left: 20px;
  background: none;
  padding-left: 0;
}

.page-resources-vin68-bonus-guide__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  padding: 0;
  color: #E0E0E0;
}

.page-resources-vin68-bonus-guide__numbered-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-resources-vin68-bonus-guide__faq-item {
  background-color: #1A2B47;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-vin68-bonus-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-vin68-bonus-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-resources-vin68-bonus-guide__faq-question.active::after {
  content: '-';
}

.page-resources-vin68-bonus-guide__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-resources-vin68-bonus-guide__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-vin68-bonus-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-vin68-bonus-guide__hero-description {
    font-size: 1em;
  }

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

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

  .page-resources-vin68-bonus-guide__offer-title {
    font-size: 1.5em;
  }

  .page-resources-vin68-bonus-guide__faq-question {
    font-size: 1.2em;
  }
}

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

  .page-resources-vin68-bonus-guide__hero-description {
    font-size: 0.9em;
  }

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

  .page-resources-vin68-bonus-guide__cta-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .page-resources-vin68-bonus-guide__login-button {
    margin-top: 10px;
  }

  .page-resources-vin68-bonus-guide__offer-card {
    padding: 20px;
  }

  .page-resources-vin68-bonus-guide__offer-title {
    font-size: 1.3em;
  }

  .page-resources-vin68-bonus-guide__list li {
    padding-left: 25px;
  }
}