:root {
  --primary-color: #0A1930;
  --secondary-color: #E0B34F;
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* General page styling */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default light text for dark background body */
  background-color: transparent; /* Body handles primary-color */
  padding-bottom: 60px; /* Space above footer */
}

/* Video Section */
.page-vip-program__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: var(--primary-color); /* Dark background for this section */
  color: var(--text-light);
}

.page-vip-program__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-program__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-program__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.page-vip-program__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 var(--shadow-light);
}

.page-vip-program__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-program__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.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

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

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

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

.page-vip-program__play-now-button:hover {
  background: #c79e43; /* Darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}

/* Title Section (H1 + CTA) */
.page-vip-program__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-vip-program__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-program__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Highlight H1 with secondary color */
}

.page-vip-program__title-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.page-vip-program__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-light);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-program__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color); /* Dark text on light button */
}

.page-vip-program__btn-primary:hover {
  background: #c79e43; /* Darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}

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

.page-vip-program__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}

/* Content Section */
.page-vip-program__content-section {
  padding: 60px 20px;
  background-color: var(--text-light); /* Light background */
  color: var(--text-dark); /* Dark text */
}

.page-vip-program__content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-program__content-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-vip-program__content-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.page-vip-program__content-section p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
}

.page-vip-program__content-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-vip-program__content-section a:hover {
  color: var(--secondary-color);
}

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

.page-vip-program__benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-vip-program__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-program__benefit-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 200px; /* Adjust max-width for smaller card images */
  height: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}