/* style/resources-onbet-vip-advantages.css */
.page-resources-onbet-vip-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-resources-onbet-vip-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-onbet-vip-advantages__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0; /* Brand color for hero background */
}

.page-resources-onbet-vip-advantages__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-onbet-vip-advantages__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-onbet-vip-advantages__hero-section > .page-resources-onbet-vip-advantages__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-resources-onbet-vip-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-onbet-vip-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-onbet-vip-advantages__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-onbet-vip-advantages__btn-primary,
.page-resources-onbet-vip-advantages__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, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-onbet-vip-advantages__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-onbet-vip-advantages__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-resources-onbet-vip-advantages__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-onbet-vip-advantages__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* General Section Styling */
.page-resources-onbet-vip-advantages__content-section,
.page-resources-onbet-vip-advantages__video-section,
.page-resources-onbet-vip-advantages__cta-section,
.page-resources-onbet-vip-advantages__faq-section {
  padding: 60px 0;
}

.page-resources-onbet-vip-advantages__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.page-resources-onbet-vip-advantages__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Color Schemes for Sections */
.page-resources-onbet-vip-advantages__dark-bg {
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-resources-onbet-vip-advantages__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Feature Grid */
.page-resources-onbet-vip-advantages__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-onbet-vip-advantages__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-resources-onbet-vip-advantages__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-onbet-vip-advantages__feature-icon {
  width: 100%;
  max-width: 150px; /* Adjusted to be > 100px but still visually an icon */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-resources-onbet-vip-advantages__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-onbet-vip-advantages__card-text {
  font-size: 1em;
  color: #555555;
}

/* Video Section */
.page-resources-onbet-vip-advantages__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  margin: 0 auto;
}

.page-resources-onbet-vip-advantages__video,
.page-resources-onbet-vip-advantages__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-resources-onbet-vip-advantages__video-link {
  cursor: pointer;
}

/* CTA Section */
.page-resources-onbet-vip-advantages__cta-section {
  text-align: center;
}

.page-resources-onbet-vip-advantages__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-resources-onbet-vip-advantages__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-onbet-vip-advantages__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-onbet-vip-advantages__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-onbet-vip-advantages__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-onbet-vip-advantages__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-resources-onbet-vip-advantages__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-onbet-vip-advantages__faq-item.active .page-resources-onbet-vip-advantages__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-onbet-vip-advantages__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #e0e0e0;
}

.page-resources-onbet-vip-advantages__faq-item.active .page-resources-onbet-vip-advantages__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-onbet-vip-advantages__faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-onbet-vip-advantages__hero-title {
    font-size: 3em;
  }
  .page-resources-onbet-vip-advantages__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-onbet-vip-advantages {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-onbet-vip-advantages__container {
    padding: 0 15px;
  }

  .page-resources-onbet-vip-advantages__hero-section {
    padding: 60px 15px;
    min-height: 500px;
  }

  .page-resources-onbet-vip-advantages__hero-title {
    font-size: 2.5em;
  }

  .page-resources-onbet-vip-advantages__hero-description {
    font-size: 1em;
  }

  .page-resources-onbet-vip-advantages__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-onbet-vip-advantages__btn-primary,
  .page-resources-onbet-vip-advantages__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-onbet-vip-advantages__content-section,
  .page-resources-onbet-vip-advantages__video-section,
  .page-resources-onbet-vip-advantages__cta-section,
  .page-resources-onbet-vip-advantages__faq-section {
    padding: 40px 0;
  }

  .page-resources-onbet-vip-advantages__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-resources-onbet-vip-advantages__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-onbet-vip-advantages__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-onbet-vip-advantages__feature-card {
    padding: 25px;
  }

  .page-resources-onbet-vip-advantages__feature-icon {
    max-width: 120px;
  }

  .page-resources-onbet-vip-advantages__card-title {
    font-size: 1.3em;
  }

  .page-resources-onbet-vip-advantages__video-wrapper {
    padding-bottom: 56.25%;
  }

  .page-resources-onbet-vip-advantages video,
  .page-resources-onbet-vip-advantages__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-onbet-vip-advantages__video-section,
  .page-resources-onbet-vip-advantages__video-container,
  .page-resources-onbet-vip-advantages__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-onbet-vip-advantages__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-onbet-vip-advantages__faq-question,
  .page-resources-onbet-vip-advantages__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure all images are responsive */
  .page-resources-onbet-vip-advantages img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-onbet-vip-advantages__section,
  .page-resources-onbet-vip-advantages__card,
  .page-resources-onbet-vip-advantages__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-onbet-vip-advantages__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

/* Ensure no image filters are used */
.page-resources-onbet-vip-advantages img {
  filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Specific contrast adjustments if needed */
.page-resources-onbet-vip-advantages__hero-section .page-resources-onbet-vip-advantages__hero-title,
.page-resources-onbet-vip-advantages__hero-section .page-resources-onbet-vip-advantages__hero-description {
  color: #ffffff; /* Ensure white text on dark background */
}

.page-resources-onbet-vip-advantages__dark-bg .page-resources-onbet-vip-advantages__section-title,
.page-resources-onbet-vip-advantages__dark-bg .page-resources-onbet-vip-advantages__section-intro,
.page-resources-onbet-vip-advantages__dark-bg .page-resources-onbet-vip-advantages__faq-question h3,
.page-resources-onbet-vip-advantages__dark-bg .page-resources-onbet-vip-advantages__faq-answer p {
  color: #ffffff; /* Ensure white text on dark background */
}

.page-resources-onbet-vip-advantages__light-bg .page-resources-onbet-vip-advantages__section-title,
.page-resources-onbet-vip-advantages__light-bg .page-resources-onbet-vip-advantages__section-intro {
  color: #333333; /* Ensure dark text on light background */
}

.page-resources-onbet-vip-advantages__card-title {
  color: #26A9E0; /* Brand color for titles in light cards */
}

.page-resources-onbet-vip-advantages__card-text {
  color: #555555; /* Dark grey for body text in light cards */
}