/* style/vip-program.css */

/* Base styles for the VIP Program page */
.page-vip-program {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches body background for consistency */
}

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

.page-vip-program__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-program__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-vip-program__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-program__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:vip_program,sunwin,luxury,exclusive_benefits,giftcode]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-program__hero-section .page-vip-program__container {
  z-index: 1;
  position: relative;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-program__hero-image {
  display: none; /* Hero image is used as background in CSS, not as a standalone img tag */
}

.page-vip-program__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  font-weight: bold;
}

.page-vip-program__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* For dark sections */
}

.page-vip-program__vip-levels .page-vip-program__section-description,
.page-vip-program__giftcode-section .page-vip-program__section-description,
.page-vip-program__faq-section .page-vip-program__section-description {
  color: #333333; /* For light sections */
}

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

.page-vip-program__vip-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-vip-program__vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.page-vip-program__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-program__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__card-text {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-vip-program__eligibility-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-vip-program__criteria-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-vip-program__item-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-program__eligibility-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-program__giftcode-section {
  background-color: #f5f5f5;
  color: #333333;
}

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

.page-vip-program__giftcode-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-vip-program__giftcode-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.page-vip-program__support-section {
  background-color: #0a0a0a;
  color: #ffffff;
}

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