/* style/resources-vip-privileges-deep-dive.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-resources-vip-privileges-deep-dive {
  color: #f0f0f0; /* Light text for dark body background */
  background: var(--dark-bg-1); /* Inherit from shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Spacing for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-resources-vip-privileges-deep-dive {
    padding-top: 100px; /* Spacing for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Highlight color */
.page-resources-vip-privileges-deep-dive .highlight {
  color: #FFD700; /* Gold color */
  font-weight: bold;
}

/* Hero Banner Section */
.page-resources-vip-privileges-deep-dive__hero-banner {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(26, 26, 26, 0.8)), url('[GALLERY:banner:f16878 vip, đặc quyền, sòng bạc trực tuyến, tiền thưởng]') center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-vip-privileges-deep-dive__hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.page-resources-vip-privileges-deep-dive__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-vip-privileges-deep-dive__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-vip-privileges-deep-dive__subtitle {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-resources-vip-privileges-deep-dive__cta-button {
  display: inline-block;
  background: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-vip-privileges-deep-dive__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* General Section Styles */
.page-resources-vip-privileges-deep-dive__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vip-privileges-deep-dive__section:last-of-type {
  border-bottom: none;
}

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

.page-resources-vip-privileges-deep-dive__container--center {
  text-align: center;
}

.page-resources-vip-privileges-deep-dive__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-resources-vip-privileges-deep-dive__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
  color: #cccccc;
}

.page-resources-vip-privileges-deep-dive__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-vip-privileges-deep-dive__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-resources-vip-privileges-deep-dive__text-block {
  flex: 1;
  min-width: 0; /* Allow flex item to shrink */
}

.page-resources-vip-privileges-deep-dive__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-resources-vip-privileges-deep-dive__image-block {
  flex: 1;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-vip-privileges-deep-dive__image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-resources-vip-privileges-deep-dive__image-block img:hover {
  transform: scale(1.05);
}

.page-resources-vip-privileges-deep-dive__inline-button {
  display: inline-block;
  background: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text for gold button */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-vip-privileges-deep-dive__inline-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* VIP Levels Grid */
.page-resources-vip-privileges-deep-dive__vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vip-privileges-deep-dive__vip-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #f0f0f0;
}

.page-resources-vip-privileges-deep-dive__vip-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-vip-privileges-deep-dive__vip-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%; /* Ensure responsive */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vip-privileges-deep-dive__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-resources-vip-privileges-deep-dive__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-resources-vip-privileges-deep-dive__card-list li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  color: #cccccc;
}

.page-resources-vip-privileges-deep-dive__card-list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

.page-resources-vip-privileges-deep-dive__note {
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  color: #cccccc;
}

.page-resources-vip-privileges-deep-dive__note a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-vip-privileges-deep-dive__note a:hover {
  text-decoration: underline;
}

/* Styled List for Benefits */
.page-resources-vip-privileges-deep-dive__styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-vip-privileges-deep-dive__styled-list li {
  margin-bottom: 15px;
  font-size: 17px;
  position: relative;
  padding-left: 35px;
  color: #f0f0f0;
}

.page-resources-vip-privileges-deep-dive__styled-list li strong {
  color: #FFD700;
}

.page-resources-vip-privileges-deep-dive__styled-list li::before {
  content: '⭐'; /* Star icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1.6;
}

/* Feature Grid for Security */
.page-resources-vip-privileges-deep-dive__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vip-privileges-deep-dive__feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #f0f0f0;
}

.page-resources-vip-privileges-deep-dive__feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-vip-privileges-deep-dive__feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-resources-vip-privileges-deep-dive__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-vip-privileges-deep-dive__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-vip-privileges-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #f0f0f0;
}

.page-resources-vip-privileges-deep-dive__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-resources-vip-privileges-deep-dive__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-resources-vip-privileges-deep-dive__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-vip-privileges-deep-dive__faq-item.active .page-resources-vip-privileges-deep-dive__faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-resources-vip-privileges-deep-dive__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #cccccc;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
}

.page-resources-vip-privileges-deep-dive__faq-item.active .page-resources-vip-privileges-deep-dive__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-resources-vip-privileges-deep-dive__faq-answer p {
  margin-bottom: 10px;
}

.page-resources-vip-privileges-deep-dive__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-vip-privileges-deep-dive__faq-answer a:hover {
  text-decoration: underline;
}

/* Bottom CTA Section */
.page-resources-vip-privileges-deep-dive__section--cta-bottom {
  padding: 80px 20px;
  text-align: center;
}

.page-resources-vip-privileges-deep-dive__cta-button--large {
  padding: 18px 40px;
  font-size: 24px;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-vip-privileges-deep-dive__main-title {
    font-size: 40px;
  }

  .page-resources-vip-privileges-deep-dive__subtitle {
    font-size: 20px;
  }

  .page-resources-vip-privileges-deep-dive__section-title {
    font-size: 32px;
  }

  .page-resources-vip-privileges-deep-dive__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-resources-vip-privileges-deep-dive__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-resources-vip-privileges-deep-dive__image-block {
    max-width: 100%;
  }

  .page-resources-vip-privileges-deep-dive__vip-grid,
  .page-resources-vip-privileges-deep-dive__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-vip-privileges-deep-dive__hero-banner {
    padding: 60px 15px;
  }

  .page-resources-vip-privileges-deep-dive__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-resources-vip-privileges-deep-dive__subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .page-resources-vip-privileges-deep-dive__cta-button {
    padding: 12px 25px;
    font-size: 18px;
  }

  .page-resources-vip-privileges-deep-dive__section {
    padding: 40px 0;
  }

  .page-resources-vip-privileges-deep-dive__container {
    padding: 0 15px !important; /* Mobile padding */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-vip-privileges-deep-dive__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-vip-privileges-deep-dive__section-description {
    font-size: 16px;
    margin: -10px auto 30px auto;
  }

  .page-resources-vip-privileges-deep-dive__text-block p {
    font-size: 16px;
  }

  .page-resources-vip-privileges-deep-dive__image-block {
    border-radius: 8px;
  }

  .page-resources-vip-privileges-deep-dive__vip-card,
  .page-resources-vip-privileges-deep-dive__feature-card {
    padding: 20px;
  }

  .page-resources-vip-privileges-deep-dive__card-title {
    font-size: 20px;
  }

  .page-resources-vip-privileges-deep-dive__card-list li,
  .page-resources-vip-privileges-deep-dive__styled-list li {
    font-size: 15px;
  }

  .page-resources-vip-privileges-deep-dive__faq-question {
    padding: 15px 20px;
  }

  .page-resources-vip-privileges-deep-dive__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-vip-privileges-deep-dive__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
    margin-left: 15px;
  }

  .page-resources-vip-privileges-deep-dive__faq-answer {
    padding: 0 20px;
    font-size: 15px;
  }

  .page-resources-vip-privileges-deep-dive__faq-item.active .page-resources-vip-privileges-deep-dive__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-vip-privileges-deep-dive__cta-button--large {
    padding: 15px 30px;
    font-size: 20px;
  }

  /* Ensure images within any container are responsive */
  .page-resources-vip-privileges-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-resources-vip-privileges-deep-dive__main-title {
    font-size: 28px;
  }

  .page-resources-vip-privileges-deep-dive__subtitle {
    font-size: 16px;
  }

  .page-resources-vip-privileges-deep-dive__section-title {
    font-size: 24px;
  }

  .page-resources-vip-privileges-deep-dive__vip-grid,
  .page-resources-vip-privileges-deep-dive__feature-grid {
    grid-template-columns: 1fr;
  }
}