.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-vip-club-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-vip-club-section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-vip-club-section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-vip-club-text-link {
  color: #8B0000; /* Deep Red for text links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-vip-club-text-link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-vip-club-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary Gold */
  color: #8B0000; /* Deep Red for text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.page-vip-club-cta-button:hover {
  background-color: #8B0000; /* Deep Red on hover */
  color: #FFD700; /* Gold text on deep red */
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club-cta-button--secondary {
  background-color: #8B0000; /* Secondary Deep Red */
  color: #FFD700; /* Gold text on deep red */
  border-color: #8B0000;
}

.page-vip-club-cta-button--secondary:hover {
  background-color: #FFD700; /* Primary Gold on hover */
  color: #8B0000; /* Deep Red text on gold */
  border-color: #8B0000;
}

/* Hero Section */
.page-vip-club-hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Deep Red gradient */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-vip-club-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-vip-club-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-vip-club-hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-vip-club-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  line-height: 1.8;
}

.page-vip-club-hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-vip-club-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Benefits Section */
.page-vip-club-benefits-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.page-vip-club-benefit-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-benefit-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-vip-club-card-title {
  font-size: 1.6em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-benefit-card p {
  color: #666666;
  font-size: 1em;
}

/* Tiers Section */
.page-vip-club-tiers-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

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

.page-vip-club-tier-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-vip-club-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #FFD700;
}

.page-vip-club-tier-card--highlight {
  border-color: #FFD700;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(145deg, #fff, #ffe899);
}

.page-vip-club-tier-card--highlight:hover {
  border-color: #8B0000;
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.page-vip-club-tier-badge {
  width: 180px; /* Increased size */
  height: 180px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-vip-club-tier-card h3 {
  font-size: 1.8em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-club-tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club-tier-card ul li {
  padding: 8px 0;
  color: #666666;
  font-size: 1em;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.page-vip-club-tier-card ul li:last-child {
  border-bottom: none;
}

.page-vip-club-tier-card ul li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  margin-right: 10px;
  font-weight: bold;
}

/* Join Section */
.page-vip-club-join-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.page-vip-club-step-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-club-step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700; /* Primary Gold */
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-vip-club-step-card h3 {
  font-size: 1.6em;
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

.page-vip-club-step-card p {
  color: #666666;
  font-size: 1em;
}

.page-vip-club-action-area {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-vip-club-faq-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
}

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

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #fff8e1; /* Light gold tint on hover */
  border-color: #FFD700;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
  font-weight: bold;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold toggle */
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #8B0000; /* Deep Red when active */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-color: #e0e0e0;
}

.faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-vip-club-cta-bottom-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Deep Red to Gold gradient */
  text-align: center;
  color: #ffffff;
}

.page-vip-club-cta-bottom-section .page-vip-club-section-title {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-vip-club-cta-bottom-section .page-vip-club-section-description {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-cta-bottom-section .page-vip-club-cta-button {
  background-color: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
}

.page-vip-club-cta-bottom-section .page-vip-club-cta-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-hero-title {
    font-size: 3em;
  }
  .page-vip-club-section-title {
    font-size: 2em;
  }
  .page-vip-club-hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-hero-section {
    padding: 60px 15px;
  }
  .page-vip-club-hero-container {
    flex-direction: column;
    gap: 30px;
  }
  .page-vip-club-hero-title {
    font-size: 2.5em;
  }
  .page-vip-club-hero-description {
    font-size: 1em;
  }
  .page-vip-club-cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-vip-club-section-title {
    font-size: 1.8em;
  }
  .page-vip-club-section-description {
    font-size: 0.95em;
  }
  .page-vip-club-benefits-grid, .page-vip-club-tiers-grid, .page-vip-club-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-benefit-card, .page-vip-club-tier-card, .page-vip-club-step-card {
    padding: 25px;
  }
  .page-vip-club-benefit-icon, .page-vip-club-tier-badge {
    width: 120px;
    height: 120px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-hero-title {
    font-size: 2em;
  }
  .page-vip-club-hero-description {
    font-size: 0.9em;
  }
  .page-vip-club-section-title {
    font-size: 1.5em;
  }
  .page-vip-club-cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-vip-club-hero-content .page-vip-club-cta-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px; /* Limit width for stacked buttons */
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}