.page-vip-privileges {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-vip-privileges__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  text-align: justify;
}

.page-vip-privileges__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-privileges__text-block a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-vip-privileges__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  box-sizing: border-box;
}

.page-vip-privileges__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-privileges__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(139, 0, 0, 0.5)); /* Dark red and black overlay */
  z-index: 2;
}

.page-vip-privileges__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-vip-privileges__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-vip-privileges__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
  line-height: 1.5;
}

.page-vip-privileges__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-vip-privileges__btn-primary,
.page-vip-privileges__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #121212; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-vip-privileges__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-vip-privileges__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-vip-privileges__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212; /* Dark text for gold background */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-vip-privileges__intro-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

/* Tiers Section */
.page-vip-privileges__tiers-section {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background */
}

.page-vip-privileges__dark-bg .page-vip-privileges__section-title,
.page-vip-privileges__dark-bg .page-vip-privileges__text-block,
.page-vip-privileges__dark-bg .page-vip-privileges__tier-title,
.page-vip-privileges__dark-bg .page-vip-privileges__tier-description,
.page-vip-privileges__dark-bg .page-vip-privileges__tier-features li,
.page-vip-privileges__dark-bg .page-vip-privileges__faq-title,
.page-vip-privileges__dark-bg .page-vip-privileges__faq-answer p {
  color: #ffffff;
}

.page-vip-privileges__dark-bg .page-vip-privileges__faq-question {
  background-color: rgba(255, 255, 255, 0.08);
}

.page-vip-privileges__dark-bg .page-vip-privileges__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-vip-privileges__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges__tier-card {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-privileges__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-vip-privileges__tier-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-privileges__tier-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-privileges__tier-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-vip-privileges__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-privileges__tier-features 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: 28px;
  margin-bottom: 10px;
  color: #e0e0e0;
  font-size: 0.95em;
}

/* Exclusive Offers Section */
.page-vip-privileges__exclusive-offers-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-vip-privileges__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges__offer-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-vip-privileges__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-privileges__offer-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-privileges__offer-description {
  font-size: 1em;
  color: #cccccc;
}

/* Support Section */
.page-vip-privileges__support-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-vip-privileges__support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-vip-privileges__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-privileges__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-privileges__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-privileges__feature-description {
  font-size: 1em;
  color: #cccccc;
}

/* Join Section */
.page-vip-privileges__join-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-vip-privileges__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-vip-privileges__join-steps li {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-vip-privileges__join-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700; /* Gold */
  color: #121212;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-vip-privileges__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-privileges__step-description {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-privileges__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-vip-privileges__faq-section {
  padding: 60px 0;
  background-color: #0a0a0a;
}

.page-vip-privileges__faq-list {
  margin-top: 40px;
}

.page-vip-privileges__faq-item {
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly darker for question background */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-vip-privileges__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
  font-weight: normal;
}

.page-vip-privileges__faq-toggle {
  font-size: 1.8em;
  color: #FFD700;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-privileges__faq-item.active .page-vip-privileges__faq-toggle {
  transform: rotate(45deg);
  color: #8B0000; /* Dark red when active */
}

.page-vip-privileges__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

.page-vip-privileges__faq-item.active .page-vip-privileges__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-vip-privileges__faq-answer p {
  margin-bottom: 15px;
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-privileges__hero-title {
    font-size: 3em;
  }
  .page-vip-privileges__hero-description {
    font-size: 1.3em;
  }
  .page-vip-privileges__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-privileges {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-privileges__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-privileges__hero-title {
    font-size: 2.2em;
  }
  .page-vip-privileges__hero-description {
    font-size: 1.1em;
  }
  .page-vip-privileges__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-privileges__btn-primary,
  .page-vip-privileges__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-privileges__container {
    padding: 0 15px !important;
  }
  .page-vip-privileges__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-vip-privileges__tiers-grid,
  .page-vip-privileges__offers-grid,
  .page-vip-privileges__support-features {
    grid-template-columns: 1fr;
  }
  .page-vip-privileges__tier-card,
  .page-vip-privileges__offer-card,
  .page-vip-privileges__feature-item,
  .page-vip-privileges__join-steps li,
  .page-vip-privileges__faq-item {
    padding: 20px;
  }
  .page-vip-privileges__tier-image,
  .page-vip-privileges__offer-image,
  .page-vip-privileges__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-privileges__hero-image,
  .page-vip-privileges__intro-section img,
  .page-vip-privileges__tiers-section img,
  .page-vip-privileges__exclusive-offers-section img,
  .page-vip-privileges__support-section img,
  .page-vip-privileges__join-section img,
  .page-vip-privileges__faq-section img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-privileges__join-steps li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .page-vip-privileges__join-steps li {
    padding-left: 20px;
    text-align: center;
  }
  .page-vip-privileges__step-title,
  .page-vip-privileges__step-description {
    text-align: center;
  }
  .page-vip-privileges__faq-question {
    padding: 15px 20px;
  }
  .page-vip-privileges__faq-answer {
    padding: 0 20px;
  }
  .page-vip-privileges__faq-item.active .page-vip-privileges__faq-answer {
    padding: 10px 20px;
  }
}