/* style/vip-club.css */
/* Base styles for the VIP Club page */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
  background-color: #0A0A0A; /* Background */
}

/* Sections */
.page-vip-club__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Titles */
.page-vip-club__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F2C14E; /* Primary color for titles */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-vip-club__section-title--light {
  color: #FFF6D6; /* Text Main for light titles on dark background */
}

.page-vip-club__main-title {
  font-size: 48px; /* Will be adjusted by clamp or responsive */
  font-weight: 900;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5); /* Glow */
}

.page-vip-club__card-title,
.page-vip-club__step-title,
.page-vip-club__security-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Text blocks */
.page-vip-club__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__text-block--light {
  color: #FFF6D6;
}

/* HERO Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* Rely on shared body padding-top, use small top padding for layout */
  padding-top: 10px;
  overflow: hidden;
}

.page-vip-club__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width for max-width to work */
}

.page-vip-club__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-vip-club__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.6); /* Glow */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-vip-club__hero-description {
  font-size: 20px;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* CTA Button */
.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A; /* Dark text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border: 2px solid #3A2A12; /* Border */
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__cta-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border-color: #F2C14E;
}

.page-vip-club__cta-wrapper {
  margin-top: 40px;
}

/* Dark Section */
.page-vip-club__dark-section {
  background-color: #111111; /* Card BG */
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

/* Grid Layouts */
.page-vip-club__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

/* Cards */
.page-vip-club__card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
}

.page-vip-club__card--dark {
  background-color: #0A0A0A; /* Darker card for contrast on dark section */
  border: 1px solid #3A2A12;
}

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

/* Lists */
.page-vip-club__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 17px;
  color: #FFF6D6;
}

.page-vip-club__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__list li:before {
  content: '★';
  color: #FFD36B; /* Auxiliary color */
  position: absolute;
  left: 0;
  top: 0;
}

/* Image Full Width */
.page-vip-club__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.4); /* Glow */
  object-fit: cover;
}

/* Step-by-step guide */
.page-vip-club__step-by-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club__step-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #F2C14E; /* Primary color */
  color: #0A0A0A; /* Dark text */
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.7); /* Glow */
}

.page-vip-club__step-description {
  font-size: 16px;
  color: #FFF6D6;
}

.page-vip-club__link {
  color: #FFD36B;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-vip-club__link:hover {
  color: #F2C14E;
}

/* Security Section */
.page-vip-club__security-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__security-icon {
  width: 100px;
  height: auto;
  max-width: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

details.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-vip-club__faq-item summary.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
  font-weight: bold;
}
details.page-vip-club__faq-item summary.page-vip-club__faq-question::-webkit-details-marker {
  display: none;
}
details.page-vip-club__faq-item summary.page-vip-club__faq-question:hover {
  background: #1a1a1a;
}
.page-vip-club__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}
.page-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-vip-club__faq-item .page-vip-club__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF6D6;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: 40px;
  }
  .page-vip-club__section-title {
    font-size: 32px;
  }
  .page-vip-club__text-block {
    font-size: 17px;
  }
  .page-vip-club__cta-button {
    padding: 14px 35px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding-top: 10px !important; /* Fixed header spacing */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__main-title {
    font-size: clamp(30px, 8vw, 40px); /* Use clamp for H1 */
    margin-bottom: 15px;
  }
  .page-vip-club__hero-description {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .page-vip-club__section {
    padding: 40px 15px;
  }
  .page-vip-club__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  .page-vip-club__text-block {
    font-size: 16px;
  }
  .page-vip-club__grid-3-cols,
  .page-vip-club__grid-2-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-club__step-by-step {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-club__step-item {
    width: 100%;
    max-width: 100%;
  }
  .page-vip-club__card,
  .page-vip-club__security-item {
    padding: 25px;
  }
  .page-vip-club__card-title,
  .page-vip-club__step-title,
  .page-vip-club__security-title {
    font-size: 20px;
  }
  .page-vip-club__list {
    font-size: 16px;
  }
  .page-vip-club__image-full-width {
    margin: 30px auto;
  }

  /* Mobile image and button responsive */
  .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__cta-buttons,
  .page-vip-club__button-group,
  .page-vip-club__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-club__cta-button,
  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club a[class*="button"],
  .page-vip-club 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__cta-buttons {
    flex-direction: column; /* Ensure buttons stack vertically */
  }

  details.page-vip-club__faq-item summary.page-vip-club__faq-question { padding: 15px; }
  .page-vip-club__faq-qtext { font-size: 16px; }
  details.page-vip-club__faq-item .page-vip-club__faq-answer { padding: 0 15px 15px; }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .page-vip-club__section-title {
    font-size: 24px;
  }
  .page-vip-club__hero-description {
    font-size: 16px;
  }
  .page-vip-club__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-vip-club__faq-qtext { font-size: 15px; }
}