/* style/vip-club.css */

/* --- General Styles --- */
.page-vip-club {
  font-family: Arial, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

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

.page-vip-club__section-description {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* --- Buttons --- */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsiveness */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
  text-align: center;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-vip-club__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-vip-club__btn-secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-vip-club__btn-secondary:hover {
  background: #F4F7FB;
  color: #2F6BFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* --- Hero Section --- */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: #F4F7FB; /* Light background */
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust as needed for hero image container */
  margin-bottom: 30px;
  overflow: hidden; /* Ensure image doesn't overflow */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-vip-club__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #1F2D3D;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

/* --- Benefits Section --- */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

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

.page-vip-club__benefit-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

.page-vip-club__benefit-icon {
  width: 100%; /* Ensure large images are responsive */
  max-width: 150px; /* Example max-width for benefit icons, but actual images are larger */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px; /* Slightly rounded corners for icons */
}

.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #2F6BFF; /* Main color for titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-text {
  font-size: 1em;
  color: #333333;
}

/* --- Tiers Section --- */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Dark background */
  color: #FFFFFF; /* Light text */
}

.page-vip-club__tiers-section .page-vip-club__section-title,
.page-vip-club__tiers-section .page-vip-club__section-description {
  color: #FFFFFF;
}

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

.page-vip-club__tier-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #D6E2FF;
  color: #1F2D3D; /* Dark text on light card background */
}

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

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

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club__tier-features li {
  font-size: 0.95em;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-features li::before {
  content: '✔';
  color: #6FA3FF; /* Auxiliary color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

/* --- How to Join Section --- */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

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

.page-vip-club__step-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-vip-club__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club__step-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-text {
  font-size: 1em;
  color: #333333;
}

.page-vip-club__link-inline {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-vip-club__link-inline:hover {
  color: #6FA3FF;
}

/* --- Responsible Gaming Section --- */
.page-vip-club__responsible-gaming-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

.page-vip-club__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-vip-club__responsible-list li {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-vip-club__responsible-list li::before {
  content: '•';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-vip-club__responsible-text {
  font-size: 1em;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* --- FAQ Section --- */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

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

.page-vip-club__faq-item {
  background: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #1F2D3D;
  cursor: pointer;
  background-color: #f8faff; /* Slightly different background for question */
  border-bottom: 1px solid #D6E2FF;
}

.page-vip-club__faq-question::-webkit-details-marker {
  display: none;
}

.page-vip-club__faq-question::marker {
  display: none;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item[open] .page-vip-club__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-vip-club__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #333333;
  line-height: 1.6;
}

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

/* --- Final CTA Section --- */
.page-vip-club__cta-final {
  padding: 80px 0;
  background-color: #2F6BFF; /* Dark background */
  color: #FFFFFF; /* Light text */
  text-align: center;
}

.page-vip-club__cta-final .page-vip-club__section-title,
.page-vip-club__cta-final .page-vip-club__section-description {
  color: #FFFFFF;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
}

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

  .page-vip-club__hero-section,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__responsible-gaming-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final {
    padding: 40px 0;
  }

  .page-vip-club__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }

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

  .page-vip-club__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  /* Images responsiveness */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers containing images, videos, or buttons */
  .page-vip-club__container,
  .page-vip-club__hero-image-wrapper,
  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__faq-list,
  .page-vip-club__hero-content,
  .page-vip-club__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }

  /* Buttons responsiveness */
  .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;
    /* Remove horizontal padding as container handles it */
    padding-left: 15px; /* Added back to ensure button text doesn't touch edges */
    padding-right: 15px; /* Added back to ensure button text doesn't touch edges */
  }

  .page-vip-club__cta-bottom {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-vip-club__benefit-card,
  .page-vip-club__tier-card,
  .page-vip-club__step-card {
    padding: 25px;
  }

  .page-vip-club__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-vip-club__faq-answer {
    padding: 15px 20px;
  }
}