/* style/vip-club.css */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: 100px; /* Spacing for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: 80px; /* Spacing for fixed header on mobile */
  }
}

.page-vip-club__section {
  padding: 60px 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-vip-club__section:last-of-type {
  border-bottom: none;
}

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

.page-vip-club__section-title {
  font-size: 3em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-vip-club__section-subtitle {
  font-size: 1.2em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-highlight {
  color: #FFA500; /* Orange accent */
}

/* HERO Section */
.page-vip-club__hero-section {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 80px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.page-vip-club__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-vip-club__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #e0e0e0;
}

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

.page-vip-club__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Buttons */
.page-vip-club__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-vip-club__btn--primary {
  background-color: #FFA500;
  color: #003366;
  border-color: #FFA500;
}

.page-vip-club__btn--primary:hover {
  background-color: #ffc14d;
  border-color: #ffc14d;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 165, 0, 0.3);
}

.page-vip-club__btn--secondary {
  background-color: transparent;
  color: #FFA500;
  border-color: #FFA500;
}

.page-vip-club__btn--secondary:hover {
  background-color: #FFA500;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 165, 0, 0.3);
}

/* Benefits Grid */
.page-vip-club__section--benefits {
  background-color: #1a1a1a;
}

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

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

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

.page-vip-club__benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__benefit-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-vip-club__benefit-description {
  font-size: 1em;
  color: #cccccc;
}

/* VIP Tiers Section */
.page-vip-club__section--tiers {
  background-color: #003366;
}

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

.page-vip-club__tier-card {
  background-color: #004080;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 3px solid transparent;
  color: #ffffff;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: #FFA500;
}

.page-vip-club__tier-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__tier-title {
  font-size: 2em;
  color: #FFA500;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-vip-club__tier-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-vip-club__btn--tier {
  background-color: #FFA500;
  color: #003366;
  border-color: #FFA500;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-vip-club__btn--tier:hover {
  background-color: #ffc14d;
  border-color: #ffc14d;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 165, 0, 0.3);
}

/* Exclusive Games Section */
.page-vip-club__section--exclusive-games {
  background-color: #1a1a1a;
}

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

.page-vip-club__game-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 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;
}

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

.page-vip-club__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-vip-club__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-vip-club__game-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-vip-club__game-description {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__btn--game {
  background-color: #003366;
  color: #FFA500;
  border-color: #003366;
  padding: 10px 20px;
  font-size: 0.95em;
  width: fit-content;
  margin-top: auto;
  align-self: center;
}

.page-vip-club__btn--game:hover {
  background-color: #004080;
  border-color: #004080;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-vip-club__section--faq {
  background-color: #003366;
}

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

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #004080;
  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: 18px 25px;
  background: #004080;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-question:hover {
  background-color: #004d99;
}

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #ffffff;
}

.page-vip-club__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #FFA500;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.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: #e0e0e0;
  background-color: #003a73;
}

.page-vip-club__faq-answer p {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

/* FAQ active state */
.page-vip-club__faq-item.active .page-vip-club__faq-question {
  background-color: #004d99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(180deg);
  color: #ffffff;
}

/* Call to Action Section */
.page-vip-club__section--cta {
  background: linear-gradient(90deg, #003366, #001a33);
  text-align: center;
  padding: 80px 0;
}

.page-vip-club__cta-content {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}

.page-vip-club__cta-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-vip-club__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__section-title {
    font-size: 2.5em;
  }
  .page-vip-club__section-subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-vip-club__hero-content {
    max-width: 100%;
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-vip-club__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-club__hero-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-vip-club__section {
    padding: 40px 0;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__section-subtitle {
    font-size: 0.95em;
  }
  .page-vip-club__benefit-card, .page-vip-club__tier-card, .page-vip-club__game-card {
    padding: 25px;
  }
  .page-vip-club__benefit-title {
    font-size: 1.4em;
  }
  .page-vip-club__tier-title {
    font-size: 1.8em;
  }
  .page-vip-club__game-title {
    font-size: 1.3em;
  }
  .page-vip-club__faq-question {
    padding: 15px 20px;
  }
  .page-vip-club__faq-question h3 {
    font-size: 1em;
  }
  .page-vip-club__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }
  .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__cta-title {
    font-size: 2em;
  }
  .page-vip-club__cta-description {
    font-size: 1em;
  }
  .page-vip-club__cta-actions {
    flex-direction: column;
  }
  /* Mobile image adaptation */
  .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,
  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__game-card,
  .page-vip-club__faq-item,
  .page-vip-club__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-vip-club__hero-image-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
  .page-vip-club__benefits-grid, .page-vip-club__tiers-grid, .page-vip-club__game-cards-grid {
    grid-template-columns: 1fr;
  }
}