.page-vip-privileges-tier-system {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1a1a2e; /* Dark background */
  line-height: 1.6;
}

.page-vip-privileges-tier-system__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-privileges-tier-system__hero-section {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 50%, #FFD700 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-privileges-tier-system__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-vip-privileges-tier-system__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges-tier-system__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-vip-privileges-tier-system__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-vip-privileges-tier-system__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-vip-privileges-tier-system__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-vip-privileges-tier-system__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
}

.page-vip-privileges-tier-system__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0047AB;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-privileges-tier-system__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #e0e0e0;
}

.page-vip-privileges-tier-system__benefits-overview {
  padding: 60px 0;
  background-color: #0d0d1a;
}

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

.page-vip-privileges-tier-system__benefit-item {
  background-color: #0047AB; /* Primary blue for benefit items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-vip-privileges-tier-system__benefit-item:hover {
  transform: translateY(-10px);
}

.page-vip-privileges-tier-system__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-vip-privileges-tier-system__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-privileges-tier-system__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-vip-privileges-tier-system__vip-levels {
  padding: 80px 0;
  background-color: #1a1a2e;
}

.page-vip-privileges-tier-system__level-card {
  background-color: #0028ff; /* Darker blue for level cards */
  border: 1px solid #0047AB;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-vip-privileges-tier-system__level-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-color: #FFD700;
  border-radius: 50%;
  opacity: 0.1;
}

.page-vip-privileges-tier-system__level-title {
  font-size: 2em;
  color: #FFD700; /* Gold for level titles */
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-vip-privileges-tier-system__level-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-vip-privileges-tier-system__level-benefits {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-vip-privileges-tier-system__level-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.page-vip-privileges-tier-system__level-benefits li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-privileges-tier-system__upgrade-info {
  font-style: italic;
  color: #a0a0a0;
  border-top: 1px dashed rgba(255, 215, 0, 0.2);
  padding-top: 15px;
  margin-top: 20px;
}

.page-vip-privileges-tier-system__level-chart-image {
  width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges-tier-system__how-to-upgrade {
  padding: 80px 0;
  background-color: #0d0d1a;
}

.page-vip-privileges-tier-system__upgrade-steps {
  list-style-type: none;
  counter-reset: upgrade-step;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-privileges-tier-system__upgrade-steps li {
  position: relative;
  padding: 25px 0 25px 70px;
  margin-bottom: 20px;
  background-color: #0047AB; /* Primary blue */
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

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

.page-vip-privileges-tier-system__upgrade-steps li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-vip-privileges-tier-system__upgrade-note {
  font-size: 1.1em;
  text-align: center;
  margin-top: 40px;
  color: #a0a0a0;
}

.page-vip-privileges-tier-system__general-privileges {
  padding: 80px 0;
  background-color: #1a1a2e;
}

.page-vip-privileges-tier-system__privileges-list {
  list-style-type: none;
  padding-left: 0;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-vip-privileges-tier-system__privileges-list li {
  background-color: #0028ff; /* Darker blue */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

.page-vip-privileges-tier-system__privileges-list li strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-vip-privileges-tier-system__privileges-list li::before {
  content: '★';
  color: #FFD700; /* Gold star */
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-vip-privileges-tier-system__general-privileges-image {
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-vip-privileges-tier-system__faq {
  padding: 80px 0;
  background-color: #0d0d1a;
}

.page-vip-privileges-tier-system__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-privileges-tier-system__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #0047AB;
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-privileges-tier-system__accordion-header {
  background-color: #0047AB; /* Primary blue */
  color: #FFD700; /* Gold */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-vip-privileges-tier-system__accordion-header:hover {
  background-color: #0056CC;
}

.page-vip-privileges-tier-system__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-privileges-tier-system__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-privileges-tier-system__accordion-content {
  background-color: #0028ff; /* Darker blue */
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-privileges-tier-system__accordion-content p {
  padding: 15px 0;
  color: #c0c0c0;
  margin: 0;
}

.page-vip-privileges-tier-system__cta-bottom {
  background: linear-gradient(45deg, #0047AB, #0028ff, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-vip-privileges-tier-system__cta-bottom .page-vip-privileges-tier-system__section-title {
  color: #ffffff;
}

.page-vip-privileges-tier-system__cta-bottom .page-vip-privileges-tier-system__section-title::after {
  background-color: #FFD700;
}

.page-vip-privileges-tier-system__cta-bottom .page-vip-privileges-tier-system__section-description {
  color: #e0e0e0;
}

.page-vip-privileges-tier-system__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-privileges-tier-system__cta-button--primary {
  background-color: #FFD700;
  color: #0047AB;
}

.page-vip-privileges-tier-system__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-vip-privileges-tier-system__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-privileges-tier-system__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
}

.page-vip-privileges-tier-system__cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-privileges-tier-system__hero-section {
    padding: 60px 0;
  }

  .page-vip-privileges-tier-system__main-title {
    font-size: 2.5em;
  }

  .page-vip-privileges-tier-system__subtitle {
    font-size: 1.1em;
  }

  .page-vip-privileges-tier-system__section-title {
    font-size: 2em;
  }

  .page-vip-privileges-tier-system__section-description {
    font-size: 1em;
  }

  .page-vip-privileges-tier-system__benefit-item {
    padding: 20px;
  }

  .page-vip-privileges-tier-system__benefit-icon {
    width: 60px;
    height: 60px;
  }

  .page-vip-privileges-tier-system__level-title {
    font-size: 1.8em;
  }

  .page-vip-privileges-tier-system__level-benefits li {
    padding-left: 25px;
  }

  .page-vip-privileges-tier-system__level-benefits li::before {
    font-size: 1.2em;
  }

  .page-vip-privileges-tier-system__upgrade-steps li {
    padding: 20px 0 20px 60px;
  }

  .page-vip-privileges-tier-system__upgrade-steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-vip-privileges-tier-system__privileges-list li {
    padding-left: 40px;
  }

  .page-vip-privileges-tier-system__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-vip-privileges-tier-system__accordion-content p {
    padding: 10px 0;
  }

  .page-vip-privileges-tier-system__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-privileges-tier-system__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-vip-privileges-tier-system__hero-section {
    padding: 40px 0;
  }

  .page-vip-privileges-tier-system__main-title {
    font-size: 2em;
  }

  .page-vip-privileges-tier-system__subtitle {
    font-size: 0.95em;
  }

  .page-vip-privileges-tier-system__section-title {
    font-size: 1.8em;
  }

  .page-vip-privileges-tier-system__section-description {
    font-size: 0.9em;
  }

  .page-vip-privileges-tier-system__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-privileges-tier-system__benefit-title {
    font-size: 1.3em;
  }

  .page-vip-privileges-tier-system__level-title {
    font-size: 1.5em;
  }

  .page-vip-privileges-tier-system__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
}