/* style/vip-club-how-to-join-vip-club.css */
.page-vip-club-how-to-join-vip-club {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #000000; /* Main background color */
  line-height: 1.6;
}

.page-vip-club-how-to-join-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club-how-to-join-vip-club__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000, #333333); /* Dark gradient for hero */
  position: relative;
  overflow: hidden;
}

.page-vip-club-how-to-join-vip-club__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-vip-club-how-to-join-vip-club__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-vip-club-how-to-join-vip-club__hero-description {
  font-size: 1.2em;
  color: #E0E0E0; /* Lighter text for description */
  margin-bottom: 30px;
}

.page-vip-club-how-to-join-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-vip-club-how-to-join-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.1);
}

.page-vip-club-how-to-join-vip-club__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-vip-club-how-to-join-vip-club__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold */
}

.page-vip-club-how-to-join-vip-club__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-vip-club-how-to-join-vip-club__btn--secondary {
  background-color: #DC143C; /* Red accent button */
  color: #FFFFFF; /* White text on red */
}

.page-vip-club-how-to-join-vip-club__btn--secondary:hover {
  background-color: #B21030;
  transform: translateY(-2px);
}

.page-vip-club-how-to-join-vip-club__section {
  padding: 60px 0;
}

.page-vip-club-how-to-join-vip-club__section--benefits {
  background-color: #1a1a1a;
}

.page-vip-club-how-to-join-vip-club__section--levels {
  background-color: #000000;
}

.page-vip-club-how-to-join-vip-club__section--how-to {
  background-color: #1a1a1a;
}

.page-vip-club-how-to-join-vip-club__section--faq {
  background-color: #000000;
}

.page-vip-club-how-to-join-vip-club__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.page-vip-club-how-to-join-vip-club__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

.page-vip-club-how-to-join-vip-club__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-vip-club-how-to-join-vip-club__link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-how-to-join-vip-club__link-inline:hover {
  text-decoration: underline;
}

.page-vip-club-how-to-join-vip-club__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-club-how-to-join-vip-club__benefit-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F8F8F8;
}

.page-vip-club-how-to-join-vip-club__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-how-to-join-vip-club__benefit-card p {
  font-size: 1em;
  color: #CCCCCC;
  flex-grow: 1;
}

.page-vip-club-how-to-join-vip-club__benefit-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

.page-vip-club-how-to-join-vip-club__levels-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.page-vip-club-how-to-join-vip-club__levels-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 600px;
}

.page-vip-club-how-to-join-vip-club__levels-table th,
.page-vip-club-how-to-join-vip-club__levels-table td {
  border: 1px solid #333333;
  padding: 15px;
  text-align: left;
  color: #F8F8F8;
}

.page-vip-club-how-to-join-vip-club__levels-table th {
  background-color: #333333;
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
}

.page-vip-club-how-to-join-vip-club__levels-table tr:nth-child(even) {
  background-color: #1a1a1a;
}

.page-vip-club-how-to-join-vip-club__levels-table tr:hover {
  background-color: #2a2a2a;
}

.page-vip-club-how-to-join-vip-club__level-name {
  font-weight: bold;
  color: #FFD700;
}

.page-vip-club-how-to-join-vip-club__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-vip-club-how-to-join-vip-club__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-how-to-join-vip-club__image--bottom {
  margin-bottom: 40px;
}

.page-vip-club-how-to-join-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-vip-club-how-to-join-vip-club__step-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #F8F8F8;
}

.page-vip-club-how-to-join-vip-club__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  border: 3px solid #FFD700;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-vip-club-how-to-join-vip-club__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-how-to-join-vip-club__step-card p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-vip-club-how-to-join-vip-club__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club-how-to-join-vip-club__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-vip-club-how-to-join-vip-club__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #DC143C;
  transition: transform 0.3s ease;
}

.page-vip-club-how-to-join-vip-club__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-vip-club-how-to-join-vip-club__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-vip-club-how-to-join-vip-club__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 15px;
}

.page-vip-club-how-to-join-vip-club__cta {
  background: linear-gradient(90deg, #DC143C, #FFD700);
  padding: 80px 20px;
  text-align: center;
}

.page-vip-club-how-to-join-vip-club__cta-content {
  max-width: 800px;
}

.page-vip-club-how-to-join-vip-club__cta-title {
  font-size: 2.8em;
  color: #000000; /* Black on gradient */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-vip-club-how-to-join-vip-club__cta-description {
  font-size: 1.2em;
  color: #333333; /* Darker text for contrast */
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club-how-to-join-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club-how-to-join-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club-how-to-join-vip-club__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-how-to-join-vip-club__hero {
    padding: 60px 15px;
  }
  .page-vip-club-how-to-join-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club-how-to-join-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club-how-to-join-vip-club__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-vip-club-how-to-join-vip-club__section {
    padding: 40px 0;
  }
  .page-vip-club-how-to-join-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-how-to-join-vip-club__benefits-grid, .page-vip-club-how-to-join-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-how-to-join-vip-club__levels-table {
    min-width: unset;
  }
  .page-vip-club-how-to-join-vip-club__cta {
    padding: 60px 15px;
  }
  .page-vip-club-how-to-join-vip-club__cta-title {
    font-size: 1.8em;
  }
  .page-vip-club-how-to-join-vip-club__cta-description {
    font-size: 1em;
  }
  .page-vip-club-how-to-join-vip-club__faq-question {
    font-size: 1.1em;
  }
}