/* style/vip-club.css */
:root {
  --primary-color: #1A2B4C;
  --secondary-color: #FFD700;
  --text-on-dark: #ffffff;
  --text-on-light: #333333;
  --light-bg: #f8f9fa;
  --dark-bg-card: rgba(255, 255, 255, 0.1);
}

/* Base styles for the page content, ensuring contrast with body background */
.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: var(--text-on-dark); /* Default text color for dark body background */
  background-color: transparent; /* Main content background is transparent to show body bg */
  line-height: 1.6;
  padding-bottom: 80px; /* Space for footer */
}

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

/* Video Section */
.page-vip-club__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Adjust for fixed header */
  background: #0d0d0d; /* Slightly lighter than body for contrast */
}

.page-vip-club__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-club__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-club__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-vip-club__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-vip-club__video-link:hover .page-vip-club__video-overlay {
  opacity: 1;
}

.page-vip-club__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8);
  border-radius: 50px;
  white-space: nowrap;
}

.page-vip-club__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-vip-club__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold color */
  color: var(--text-on-light); /* Dark text on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-vip-club__play-now-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-vip-club__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

/* Hero Section */
.page-vip-club__hero-section {
  text-align: center;
  padding: 80px 0;
  background: var(--primary-color); /* Dark blue background */
  color: var(--text-on-dark);
}

.page-vip-club__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-club__title-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-on-dark);
}

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

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-vip-club__btn-primary {
  background: var(--secondary-color);
  color: var(--text-on-light);
  border: 2px solid var(--secondary-color);
}

.page-vip-club__btn-primary:hover {
  background: #e6c200;
  color: var(--text-on-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-vip-club__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-on-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Brand Section */
.page-vip-club__brand-section {
  padding: 80px 0;
  background: var(--light-bg); /* Light background for brand section */
  color: var(--text-on-light);
}

.page-vip-club__brand-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--primary-color);
}

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

.page-vip-club__brand-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club__brand-item:hover {
  transform: translateY(-5px);
}

.page-vip-club__brand-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-vip-club__brand-item p {
  font-size: 16px;
  color: var(--text-on-light);
  line-height: 1.7;
}

.page-vip-club__brand-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background: var(--primary-color); /* Dark background for FAQ */
  color: var(--text-on-dark);
}

.page-vip-club__faq-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--secondary-color);
}

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

.page-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-bg-card); /* Semi-transparent white on dark background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--dark-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-vip-club__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-vip-club__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-on-dark);
  pointer-events: none;
}

.page-vip-club__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  color: var(--secondary-color);
  transform: rotate(45deg); /* Plus to X */
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-on-dark);
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-vip-club__faq-answer a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-vip-club__faq-answer a:hover {
  color: #e6c200;
}

/* Blog Section */
.page-vip-club__blog-section {
  padding: 80px 0;
  background: var(--light-bg);
  color: var(--text-on-light);
}

.page-vip-club__blog-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--primary-color);
}

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

.page-vip-club__blog-item {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-club__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-vip-club__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-vip-club__blog-item-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 15px 20px 10px;
  margin: 0;
}

.page-vip-club__blog-item-excerpt {
  font-size: 15px;
  color: #666;
  padding: 0 20px 15px;
  margin: 0;
  height: 75px; /* Limit excerpt height */
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-vip-club__blog-item-date {
  display: block;
  font-size: 13px;
  color: #999;
  padding: 0 20px 20px;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__main-title {
    font-size: 42px;
  }
  .page-vip-club__brand-title,
  .page-vip-club__faq-title,
  .page-vip-club__blog-title {
    font-size: 34px;
  }
  .page-vip-club__brand-content {
    gap: 30px;
  }
  .page-vip-club__blog-list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-vip-club__video-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-vip-club__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-vip-club__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-club__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }

  .page-vip-club__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain; /* Use contain to ensure video is fully visible */
  }

  .page-vip-club__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .page-vip-club__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-vip-club__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__hero-section,
  .page-vip-club__brand-section,
  .page-vip-club__faq-section,
  .page-vip-club__blog-section {
    padding: 50px 0;
  }

  .page-vip-club__container {
    padding: 0 15px;
  }

  .page-vip-club__main-title {
    font-size: 32px;
  }

  .page-vip-club__title-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

  .page-vip-club__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-vip-club__brand-title,
  .page-vip-club__faq-title,
  .page-vip-club__blog-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-vip-club__brand-item {
    padding: 25px;
  }

  .page-vip-club__brand-item h3 {
    font-size: 20px;
  }

  .page-vip-club__brand-item p {
    font-size: 15px;
  }

  .page-vip-club__brand-image {
    height: 150px; /* Adjust height for mobile */
  }

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

  .page-vip-club__faq-question h3 {
    font-size: 16px;
  }

  .page-vip-club__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

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

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px 20px !important;
  }

  .page-vip-club__blog-image {
    height: 180px;
  }

  .page-vip-club__blog-item-title {
    font-size: 18px;
  }

  .page-vip-club__blog-item-excerpt {
    font-size: 14px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 28px;
  }
  .page-vip-club__brand-title,
  .page-vip-club__faq-title,
  .page-vip-club__blog-title {
    font-size: 24px;
  }
  .page-vip-club__play-now-button,
  .page-vip-club__cta-button {
    font-size: 15px !important;
    padding: 10px 25px !important;
  }
}

/* Global image responsiveness for all images */
.page-vip-club img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .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__brand-item,
  .page-vip-club__blog-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
  }

  /* Override for specific elements that have narrower padding on desktop */
  .page-vip-club__faq-list {
    padding-left: 0;
    padding-right: 0;
  }
}