.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Body background is black from shared.css */
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 60px; /* Adjust top padding for fixed header */
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #0A2463 0%, #000000 100%);
  overflow: hidden;
}

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

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

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-vip-club__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* General Section Styles */
.page-vip-club__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-vip-club__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-vip-club__light-bg {
  background-color: #f8f9fa;
  color: #333333;
}

.page-vip-club__light-bg .page-vip-club__section-description {
  color: #555555;
}

.page-vip-club__dark-section {
  background-color: #0A2463;
  color: #ffffff;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__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-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-vip-club__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-vip-club__cta-buttons--center {
  justify-content: center;
  display: flex;
  margin-top: 40px;
}

/* VIP Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
}

.page-vip-club__tiers-section .page-vip-club__section-title {
  color: #0A2463;
}

.page-vip-club__tiers-section .page-vip-club__section-description {
  color: #555555;
}

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

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

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

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

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-vip-club__tier-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-vip-club__tier-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" 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: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #333333;
}

.page-vip-club__tier-note {
  text-align: center;
  margin-top: 60px;
  font-size: 1em;
  color: #666666;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

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

.page-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__benefit-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-club__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.5;
  flex-grow: 1;
}

/* How to Join Section */
.page-vip-club__join-section {
  padding: 80px 0;
}

.page-vip-club__join-section .page-vip-club__section-title {
  color: #0A2463;
}

.page-vip-club__join-section .page-vip-club__section-description {
  color: #555555;
}

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

.page-vip-club__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__step-number {
  width: 60px;
  height: 60px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-vip-club__step-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  flex-grow: 1;
}

.page-vip-club__step-text a {
  color: #0A2463;
  text-decoration: underline;
}

.page-vip-club__step-text a:hover {
  color: #FFD700;
}

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

.page-vip-club__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #0A2463;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-vip-club__faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #ffffff;
}

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-vip-club__cta-container {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: #333333;
  position: relative;
  overflow: hidden;
}

.page-vip-club__cta-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-vip-club__cta-description {
  font-size: 1.15em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__cta-description a {
  color: #0A2463;
  text-decoration: underline;
}

.page-vip-club__cta-description a:hover {
  color: #FFD700;
}

.page-vip-club__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-vip-club__cta-image {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 300px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

.page-vip-club__cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club__section-title {
    font-size: 2.2em;
  }
}

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

  .page-vip-club__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is applied */
  }

  .page-vip-club__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
  }

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

  .page-vip-club__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

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

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

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

  .page-vip-club__tier-title,
  .page-vip-club__benefit-title,
  .page-vip-club__step-title {
    font-size: 1.4em;
  }

  .page-vip-club__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

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

  .page-vip-club__cta-container {
    padding: 40px 20px;
  }

  .page-vip-club__cta-title {
    font-size: 2em;
  }

  .page-vip-club__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Image responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club__hero-image-wrapper,
  .page-vip-club__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.6em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
}