/* style/vip-club.css */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text on dark body background */
  background-color: #121212;
  line-height: 1.6;
}

.page-vip-club a {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club a:hover {
  color: #ffd700;
}

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

.page-vip-club__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #E0B400;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  border-radius: 2px;
}

.page-vip-club__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-club__hero-intro {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Apply header offset here for non-homepage */
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0A2342 0%, #121212 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.page-vip-club__hero-content {
  max-width: 600px;
  padding: 0 20px;
  text-align: left;
  z-index: 1;
}

.page-vip-club__hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #E0B400;
}

.page-vip-club__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-vip-club__hero-cta {
  display: flex;
  gap: 15px;
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.7;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-vip-club__btn-primary:hover {
  background-color: #ffd700;
  border-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

.page-vip-club__btn-secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-vip-club__btn-secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

.page-vip-club__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

/* About VIP Section */
.page-vip-club__dark-section {
  background-color: #0A2342;
  color: #ffffff;
}

.page-vip-club__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-vip-club__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-vip-club__image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* VIP Level Tiers Section */
.page-vip-club__level-tiers {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-vip-club__tier-card {
  background-color: #222222;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club__tier-title {
  font-size: 28px;
  font-weight: 700;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-vip-club__tier-requirement {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 25px;
  min-height: 40px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  width: 100%;
}

.page-vip-club__tier-benefits li {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-vip-club__icon--check {
  color: #E0B400;
  margin-right: 10px;
  font-size: 18px;
  /* Basic checkmark, can be replaced by an actual icon font or SVG */
  content: '✓';
}

.page-vip-club__tier-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content above varies */
  display: block;
}

.page-vip-club__note {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: #cccccc;
}

.page-vip-club__text-link {
  color: #E0B400;
  text-decoration: underline;
}

.page-vip-club__text-link:hover {
  color: #ffd700;
}

/* Exclusive Benefits Section */
.page-vip-club__exclusive-benefits {
  padding: 80px 0;
}

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

.page-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark blue */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-vip-club__benefit-title {
  font-size: 22px;
  font-weight: 600;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-vip-club__benefit-card p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
}

/* How to Join Section */
.page-vip-club__how-to-join {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-vip-club__step-card {
  background-color: #222222;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-vip-club__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E0B400;
  color: #0A2342;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-vip-club__step-title {
  font-size: 24px;
  font-weight: 600;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-vip-club__step-card p {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
}

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

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark blue */
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #0A2342;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-vip-club__faq-question:hover {
  background: #1a3a5e;
}

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

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E0B400;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  color: #ffd700;
}

.page-vip-club__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;
  color: #f0f0f0;
  background-color: #1a3a5e; /* Slightly lighter blue for answer background */
  border-radius: 0 0 8px 8px;
}

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

.page-vip-club__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .page-vip-club__hero-intro {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .page-vip-club__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 30px;
    opacity: 0.5;
  }

  .page-vip-club__hero-image-wrapper img {
    object-position: center;
  }

  .page-vip-club__hero-content {
    text-align: center;
    max-width: 800px;
  }

  .page-vip-club__hero-title {
    font-size: 42px;
  }

  .page-vip-club__hero-description {
    font-size: 16px;
  }

  .page-vip-club__hero-cta {
    justify-content: center;
  }

  .page-vip-club__content-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__image-block {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__container {
    padding: 20px 15px;
  }

  .page-vip-club__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-vip-club__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-vip-club__hero-intro {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }

  .page-vip-club__hero-title {
    font-size: 32px;
  }

  .page-vip-club__hero-description {
    font-size: 15px;
  }

  .page-vip-club__hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__hero-image-wrapper {
    height: 200px;
    margin-top: 20px;
  }

  .page-vip-club__content-grid {
    gap: 20px;
  }

  .page-vip-club__text-block p {
    font-size: 15px;
  }

  .page-vip-club__tiers-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__tier-card,
  .page-vip-club__benefit-card,
  .page-vip-club__step-card {
    padding: 20px;
  }

  .page-vip-club__tier-title {
    font-size: 24px;
  }

  .page-vip-club__tier-requirement {
    font-size: 14px;
  }

  .page-vip-club__tier-benefits li {
    font-size: 15px;
  }

  .page-vip-club__benefit-title {
    font-size: 20px;
  }

  .page-vip-club__benefit-card p {
    font-size: 15px;
  }

  .page-vip-club__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .page-vip-club__step-title {
    font-size: 20px;
  }

  .page-vip-club__step-card p {
    font-size: 15px;
  }

  .page-vip-club__faq-question {
    padding: 15px 20px;
  }

  .page-vip-club__faq-question h3 {
    font-size: 16px;
  }

  .page-vip-club__faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .page-vip-club__faq-answer {
    padding: 0 20px;
  }

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px !important;
  }

  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}