/* style/vip-program.css */

/* --- Base Styles and Color Contrast --- */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: transparent; /* Inherit from body or shared, ensuring contrast */
}

.page-vip-program h1,
.page-vip-program h2,
.page-vip-program h3,
.page-vip-program h4,
.page-vip-program h5,
.page-vip-program h6 {
  color: #FFD700; /* Gold for titles */
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-vip-program p {
  margin-bottom: 15px;
  color: #f0f0f0; /* Default light text */
}

.page-vip-program a {
  color: #1E90FF; /* Blue for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-program a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-vip-program__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
  padding: 60px 20px;
}

.page-vip-program__dark-bg h2,
.page-vip-program__dark-bg h3 {
  color: #FFD700; /* Gold titles on dark background */
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color */
  color: #000000; /* Black text for contrast 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 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-program__cta-button:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-vip-program__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* --- Section Layouts --- */
.page-vip-program__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- 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); /* Fixed header spacing */
  background-color: #000; /* Ensure dark background */
}

.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 rgba(0, 0, 0, 0.4);
}

.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 rgba(0, 0, 0, 0.3);
}

.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.5);
  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-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(30, 144, 255, 0.8); /* Using auxiliary color */
  border-radius: 5px;
  white-space: nowrap;
}

.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: #FFD700; /* Primary color */
  color: #000000; /* Black text for contrast */
  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 rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-vip-program__play-now-button:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-vip-program__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* --- Title Section --- */
.page-vip-program__title-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #0d0d0d; /* Dark background */
  color: #ffffff;
}

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

.page-vip-program__main-title {
  font-size: 3em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-program__title-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* --- VIP Intro Section --- */
.page-vip-program__intro-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #0d0d0d; /* Dark background */
    color: #f0f0f0;
}

.page-vip-program__intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-vip-program__intro-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-program__intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-vip-program__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-program__feature-icon {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-vip-program__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-vip-program__feature-description {
    color: #cccccc;
}

/* --- VIP Tiers Section --- */
.page-vip-program__tiers-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #1a1a1a; /* Darker background */
    color: #f0f0f0;
}

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

.page-vip-program__tiers-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-program__tiers-description {
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #cccccc;
}

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

.page-vip-program__tier-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-vip-program__tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-vip-program__tier-name {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-program__tier-requirement {
    font-size: 0.9em;
    color: #1E90FF;
    margin-bottom: 20px;
}

.page-vip-program__tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    width: 100%;
}

.page-vip-program__tier-benefits li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1em;
}

.page-vip-program__tier-image {
    width: 100%;
    height: auto;
    max-width: 250px; /* Example size for tier image */
    margin-top: auto; /* Push image to bottom if content varies */
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-vip-program__cta-center {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* --- How To Section --- */
.page-vip-program__how-to-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #0d0d0d; /* Dark background */
    color: #f0f0f0;
}

.page-vip-program__how-to-container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-vip-program__how-to-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-vip-program__how-to-description {
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #cccccc;
}

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

.page-vip-program__step-item {
    background-color: rgba(30, 144, 255, 0.1); /* Auxiliary color with transparency */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-vip-program__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFD700; /* Gold for step numbers */
    color: #000000;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-vip-program__step-text {
    color: #cccccc;
}

/* --- FAQ Section --- */
.page-vip-program__faq-section {
  padding: 80px 20px;
  background-color: #1a1a1a; /* Darker background */
  color: #f0f0f0;
}

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

.page-vip-program__faq-main-title {
  text-align: center;
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 40px;
}