/* style/vip-club.css */
.page-vip-club {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* inherited from body, which is dark */
}

.page-vip-club__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0, #0056b3);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.page-vip-club__hero-content {
  z-index: 10;
  max-width: 900px;
  padding: 20px;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

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

.page-vip-club__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-vip-club__btn-primary {
  background: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-vip-club__btn-primary:hover {
  background: #d46b00;
  transform: translateY(-2px);
}

.page-vip-club__btn-secondary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-club__btn-secondary:hover {
  background: #1e87c2;
  transform: translateY(-2px);
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-vip-club__section {
  padding: 80px 0;
  position: relative;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-vip-club__section:nth-of-type(even) {
  background-color: #1a1a1a; /* Alternate dark background */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #26A9E0;
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
}

.page-vip-club__image-content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-vip-club__image-block-img {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  object-fit: cover;
}

.page-vip-club__text-block {
  flex: 1;
  max-width: 50%;
}

.page-vip-club__text-block-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-vip-club__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-vip-club__benefit-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-vip-club__list-icon {
  color: #EA7C07;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-vip-club__vip-tiers .page-vip-club__section-description {
  margin-bottom: 40px;
}

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

.page-vip-club__tier-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-vip-club__tier-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons round */
  border: 3px solid #26A9E0;
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: #EA7C07;
  margin-bottom: 15px;
}

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

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin-top: auto;
}

.page-vip-club__tier-benefits li {
  background: rgba(255,255,255,0.05);
  padding: 8px 15px;
  border-radius: 5px;
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-vip-club__exclusive-benefits .page-vip-club__section-description {
  margin-bottom: 40px;
}

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

.page-vip-club__benefit-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(38, 169, 224, 0.1);
  padding: 10px;
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-club__benefit-desc {
  font-size: 0.95em;
  color: #cccccc;
}

.page-vip-club__how-to-join .page-vip-club__section-description {
  margin-bottom: 40px;
}

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

.page-vip-club__step-card {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-left: 5px solid #26A9E0;
}

.page-vip-club__step-title {
  font-size: 1.6em;
  color: #EA7C07;
  margin-bottom: 15px;
}

.page-vip-club__step-desc {
  font-size: 1em;
  color: #cccccc;
}

.page-vip-club__step-desc a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-vip-club__step-desc a:hover {
  color: #EA7C07;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-vip-club__faq-section {
  background-color: #0d0d0d;
}

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

.page-vip-club__faq-item {
  background: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #26A9E0;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: #1e87c2;
}

.page-vip-club__faq-title {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

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

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

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

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 30px;
}

.page-vip-club__faq-answer p {
  margin: 0;
}

.page-vip-club__cta-final {
  padding: 100px 0;
  background: linear-gradient(90deg, #26A9E0, #0056b3);
  color: #ffffff;
  text-align: center;
}

.page-vip-club__cta-final .page-vip-club__section-title {
  color: #ffffff;
  font-size: 3em;
}

.page-vip-club__cta-final .page-vip-club__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-club__cta-final .page-vip-club__cta-buttons {
  margin-top: 30px;
}

.page-vip-club__cta-final .page-vip-club__btn-primary {
  background: #EA7C07;
  border-color: #EA7C07;
}

.page-vip-club__cta-final .page-vip-club__btn-primary:hover {
  background: #d46b00;
  border-color: #d46b00;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__image-content-block {
    flex-direction: column;
    text-align: center;
  }

  .page-vip-club__image-block-img,
  .page-vip-club__text-block {
    max-width: 100%;
  }

  .page-vip-club__image-block-img {
    margin-bottom: 30px;
  }

  .page-vip-club__tier-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    min-height: 500px;
  }

  .page-vip-club__hero-title {
    font-size: 2.5em;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}