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

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

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

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

.page-vip-club__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-vip-club__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club__section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-vip-club__section:nth-of-type(even) {
  background-color: #2a2a2a; /* Slightly different background for visual separation */
}

.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added padding for mobile content safety */
  box-sizing: border-box;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Brand primary color for titles */
}

.page-vip-club__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-club__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-vip-club__btn-primary:hover {
  background-color: #005a2e;
}

.page-vip-club__btn-register {
  display: inline-block;
  background-color: #C30808; /* Custom Register color */
  color: #FFFF00; /* Custom Register font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  margin-right: 15px;
}

.page-vip-club__btn-register:hover {
  background-color: #a00606;
}

.page-vip-club__btn-login {
  display: inline-block;
  background-color: #C30808; /* Custom Login color */
  color: #FFFF00; /* Custom Login font color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-vip-club__btn-login:hover {
  background-color: #a00606;
}

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

.page-vip-club__tier-card,
.page-vip-club__benefit-card,
.page-vip-club__support-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(1, 116, 57, 0.3);
}

.page-vip-club__tier-card:hover,
.page-vip-club__benefit-card:hover,
.page-vip-club__support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-vip-club__tier-image,
.page-vip-club__benefit-image,
.page-vip-club__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club__tier-title,
.page-vip-club__benefit-title,
.page-vip-club__support-item-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 10px;
}

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

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-vip-club__step-item {
  background-color: rgba(255, 255, 255, 0.07);
  border-left: 5px solid #017439;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-vip-club__step-item h3 {
  color: #017439;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-vip-club__step-item p {
  color: #f0f0f0;
}

.page-vip-club__security-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-vip-club__security-features li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #f0f0f0;
  border-left: 3px solid #017439;
}

.page-vip-club__security-features li strong {
  color: #ffffff;
}

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

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

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

.page-vip-club__faq-question:hover {
  background-color: #005a2e;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
}

.page-vip-club__faq-answer {
  padding: 0 25px 15px;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 500px; /* Max height for content */
  padding-top: 15px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-question .page-vip-club__faq-toggle {
  content: '−';
}

/* Details tag specific styles */
details.page-vip-club__faq-item > summary {
  list-style: none;
}

details.page-vip-club__faq-item > summary::-webkit-details-marker {
  display: none;
}

details.page-vip-club__faq-item[open] .page-vip-club__faq-answer {
  max-height: none; /* Let content define height */
  padding-top: 15px;
}

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

.page-vip-club__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__tier-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__support-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: 60vh;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile spacing */
  }
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
}