.page-vip-privileges {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  line-height: 1.6;
}

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

.page-vip-privileges__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-privileges__dark-bg {
  background-color: #1a1a2e; /* Body background color */
  color: #ffffff;
}

.page-vip-privileges__light-bg {
  background-color: #0d0d1e; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-vip-privileges__section-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-vip-privileges__sub-title {
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.3;
}

.page-vip-privileges__section-description,
.page-vip-privileges__description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-privileges__hero-section {
  padding-top: 0; /* Ensures no double padding with body padding-top */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Adjust as needed for visual impact */
}

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

.page-vip-privileges__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-vip-privileges__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-vip-privileges__main-title {
  font-size: clamp(2.5em, 5vw, 4em); /* Responsive font size for H1 */
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 25px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-vip-privileges__hero-content .page-vip-privileges__description {
  font-size: 1.25em;
  margin-bottom: 40px;
  color: #f8f8f8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-vip-privileges__btn-primary,
.page-vip-privileges__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-privileges__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-vip-privileges__btn-primary:hover {
  background-color: #d66b00;
  border-color: #d66b00;
  transform: translateY(-2px);
}

.page-vip-privileges__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-vip-privileges__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-vip-privileges__vip-levels .page-vip-privileges__container,
.page-vip-privileges__how-to-join .page-vip-privileges__container {
  text-align: left;
}

.page-vip-privileges__image-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-vip-privileges__content-text {
    flex: 1;
}

.page-vip-privileges__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-vip-privileges__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-vip-privileges__benefit-item {
  background: rgba(38, 169, 224, 0.1);
  border-left: 4px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.05em;
}

.page-vip-privileges__benefit-item strong {
  color: #26A9E0;
}

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

.page-vip-privileges__feature-card.page-vip-privileges__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(38, 169, 224, 0.2);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
  color: #f0f0f0;
}

.page-vip-privileges__feature-card.page-vip-privileges__card:hover {
  transform: translateY(-5px);
  background: rgba(38, 169, 224, 0.15);
}

.page-vip-privileges__feature-card .page-vip-privileges__card-title {
  color: #26A9E0;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-vip-privileges__image-wrapper--bottom {
    margin-top: 60px;
}

.page-vip-privileges__how-to-join .page-vip-privileges__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges__step-card.page-vip-privileges__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(38, 169, 224, 0.2);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #f0f0f0;
}

.page-vip-privileges__step-number {
  font-size: 3em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1;
}

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

.page-vip-privileges__cta-buttons--center {
  margin-top: 50px;
}

.page-vip-privileges__faq-section .page-vip-privileges__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-vip-privileges__faq-item.page-vip-privileges__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(38, 169, 224, 0.2);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-vip-privileges__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  list-style: none; /* For details/summary */
}

.page-vip-privileges__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-privileges__faq-qtext {
  flex-grow: 1;
}

.page-vip-privileges__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-vip-privileges__faq-item[open] .page-vip-privileges__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-privileges__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-vip-privileges__faq-answer p {
    margin: 0;
    padding-top: 10px; /* Add some space above the answer text */
}

.page-vip-privileges__cta-bottom .page-vip-privileges__section-description {
    margin-bottom: 30px;
}

.page-vip-privileges__cta-bottom .page-vip-privileges__cta-buttons {
    margin-bottom: 40px;
}

.page-vip-privileges img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-vip-privileges__section-title {
    font-size: 2.5em;
  }
  .page-vip-privileges__sub-title {
    font-size: 2em;
  }
  .page-vip-privileges__hero-content {
    padding: 60px 20px;
  }
  .page-vip-privileges__main-title {
    font-size: clamp(2em, 4.5vw, 3.5em);
  }
  .page-vip-privileges__image-content-wrapper {
      flex-direction: column;
      text-align: center;
  }
  .page-vip-privileges__content-text {
      margin-bottom: 30px;
  }
  .page-vip-privileges__image-wrapper {
      max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-vip-privileges__section {
    padding: 40px 0;
  }
  .page-vip-privileges__container {
    padding: 0 15px;
  }
  .page-vip-privileges__section-title {
    font-size: 2em;
  }
  .page-vip-privileges__sub-title {
    font-size: 1.8em;
  }
  .page-vip-privileges__section-description,
  .page-vip-privileges__description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-vip-privileges__hero-section {
    min-height: 450px;
  }
  .page-vip-privileges__hero-content {
    padding: 40px 15px;
  }
  .page-vip-privileges__main-title {
    font-size: clamp(1.8em, 8vw, 2.8em);
    margin-bottom: 20px;
  }
  .page-vip-privileges__hero-content .page-vip-privileges__description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-vip-privileges__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-privileges__btn-primary,
  .page-vip-privileges__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-vip-privileges__image-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-vip-privileges__content-text {
      margin-bottom: 20px;
  }
  .page-vip-privileges__image-wrapper {
      max-width: 100%;
  }
  .page-vip-privileges__benefit-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-vip-privileges__why-vip .page-vip-privileges__features-grid,
  .page-vip-privileges__how-to-join .page-vip-privileges__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-privileges__feature-card.page-vip-privileges__card,
  .page-vip-privileges__step-card.page-vip-privileges__card {
    padding: 25px;
  }
  .page-vip-privileges__feature-card .page-vip-privileges__card-title {
    font-size: 1.4em;
  }
  .page-vip-privileges__step-number {
    font-size: 2.5em;
  }
  .page-vip-privileges__step-card .page-vip-privileges__card-title {
    font-size: 1.3em;
  }
  .page-vip-privileges__faq-question {
    font-size: 1.05em;
    padding: 15px;
  }
  .page-vip-privileges__faq-answer {
    padding: 0 15px 15px;
  }
  .page-vip-privileges img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Specific override for logo-item if it existed, ensuring it's not affected by general img rules */
  /* This page does not have a logo carousel, so no .page-vip-privileges__logo-item to exclude. */
  .page-vip-privileges__section,
  .page-vip-privileges__card,
  .page-vip-privileges__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding for sections/containers to prevent content from touching edges */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-privileges__hero-section { 
    padding-top: 0 !important; 
    padding-left: 0 !important; 
    padding-right: 0 !important; 
  }
  .page-vip-privileges__hero-content { 
    padding-left: 15px !important; 
    padding-right: 15px !important; 
  }
  .page-vip-privileges__cta-buttons { 
    padding-left: 15px; 
    padding-right: 15px; 
    flex-wrap: wrap !important; 
    gap: 10px; 
  }
}