/* style/vip-club-tiers.css */
.page-vip-club-tiers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-vip-club-tiers__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-vip-club-tiers__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-vip-club-tiers__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-vip-club-tiers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-vip-club-tiers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.page-vip-club-tiers__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-vip-club-tiers__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club-tiers__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club-tiers__btn-primary,
.page-vip-club-tiers__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 1.1em;
  box-sizing: border-box;
  text-align: center;
}

.page-vip-club-tiers__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-vip-club-tiers__btn-primary:hover {
  background-color: #02944b;
  border-color: #02944b;
}

.page-vip-club-tiers__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-vip-club-tiers__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

/* Benefits Section */
.page-vip-club-tiers__benefits-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #ffffff;
}

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

.page-vip-club-tiers__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark bg */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-vip-club-tiers__benefit-card:hover {
  transform: translateY(-10px);
}

.page-vip-club-tiers__benefit-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-tiers__benefit-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-tiers__benefit-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Tiers Overview Section */
.page-vip-club-tiers__tiers-overview {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-vip-club-tiers__tier-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(1, 116, 57, 0.5);
  transition: border-color 0.3s ease;
}

.page-vip-club-tiers__tier-card:hover {
  border-color: #017439;
}

.page-vip-club-tiers__tier-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-vip-club-tiers__tier-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club-tiers__tier-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-vip-club-tiers__tier-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club-tiers__tier-benefits-list li {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.95em;
  border-left: 3px solid #017439;
}

/* Upgrade Guide Section */
.page-vip-club-tiers__upgrade-guide {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-vip-club-tiers__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club-tiers__step-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club-tiers__step-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-vip-club-tiers__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-tiers__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-vip-club-tiers__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-vip-club-tiers__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(1, 116, 57, 0.3);
}

.page-vip-club-tiers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439;
  transition: background-color 0.3s ease;
}

.page-vip-club-tiers__faq-question:hover {
  background-color: #02944b;
}

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

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

.page-vip-club-tiers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.02);
}

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

.page-vip-club-tiers__faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* CTA Section */
.page-vip-club-tiers__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.page-vip-club-tiers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-vip-club-tiers__btn-register {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-vip-club-tiers__btn-register:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-vip-club-tiers__btn-login {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-vip-club-tiers__btn-login:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

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

@media (max-width: 768px) {
  .page-vip-club-tiers {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club-tiers__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-vip-club-tiers__main-title {
    font-size: 2.5em;
  }
  .page-vip-club-tiers__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club-tiers__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-tiers__btn-primary,
  .page-vip-club-tiers__btn-secondary,
  .page-vip-club-tiers a[class*="button"],
  .page-vip-club-tiers a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club-tiers__cta-buttons,
  .page-vip-club-tiers__button-group,
  .page-vip-club-tiers__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for mobile CTAs */
  }
  .page-vip-club-tiers__container {
    padding: 0 15px;
  }
  .page-vip-club-tiers__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-tiers__section-description {
    font-size: 1em;
  }
  .page-vip-club-tiers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club-tiers__section,
  .page-vip-club-tiers__card,
  .page-vip-club-tiers__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club-tiers__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  /* Ensure all content area images are at least 200px wide for mobile */
  .page-vip-club-tiers__benefits-grid img,
  .page-vip-club-tiers__tiers-grid img,
  .page-vip-club-tiers__guide-steps img {
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-tiers__main-title {
    font-size: 2em;
  }
  .page-vip-club-tiers__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club-tiers__btn-primary,
  .page-vip-club-tiers__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-club-tiers__benefit-title,
  .page-vip-club-tiers__tier-title {
    font-size: 1.3em;
  }
  .page-vip-club-tiers__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-club-tiers__faq-answer {
    padding: 10px 20px;
  }
}

/* Color Contrast Fixes (if needed, based on analysis) */
.page-vip-club-tiers__dark-bg {
  background: #0a0a0a;
  color: #ffffff;
}

.page-vip-club-tiers__light-bg {
  background: #1a1a1a;
  color: #ffffff;
}

/* Specific button colors from prompt */
.page-vip-club-tiers__btn-register {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-vip-club-tiers__btn-register:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-vip-club-tiers__btn-login {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-vip-club-tiers__btn-login:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}