:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f4f4; /* From shared.css body background */
  --border-color: #e0e0e0;
  --card-bg-light: #ffffff;
  --card-bg-dark: rgba(255, 255, 255, 0.1); /* For dark sections */
}

.page-promotions-vip-benefits {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light background */
  line-height: 1.6;
  padding-bottom: 60px; /* Space before footer */
}

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

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

.page-promotions-vip-benefits__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--secondary-color); /* Use dark red for titles on light background */
}

.page-promotions-vip-benefits__section-title--light {
  color: var(--text-light); /* White text for titles on dark background */
}

.page-promotions-vip-benefits__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

.page-promotions-vip-benefits__text-block--light {
  color: var(--text-light);
}

.page-promotions-vip-benefits__text-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-vip-benefits__text-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.page-promotions-vip-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); /* Gradient background for hero */
  color: var(--text-light);
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1; /* Image behind content */
}

.page-promotions-vip-benefits__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0.8; /* Slightly transparent to let background gradient show */
}

.page-promotions-vip-benefits__hero-content {
  position: absolute; /* Content over image */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 80%; /* Adjust width for content over image */
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--primary-color); /* Gold title for impact */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%; /* Ensure button fits */
  box-sizing: border-box;
}

.page-promotions-vip-benefits__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-promotions-vip-benefits__cta-button--primary:hover {
  background: #e6c200; /* Darken primary color */
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-promotions-vip-benefits__introduction-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* VIP Levels Section */
.page-promotions-vip-benefits__levels-section {
  background: var(--secondary-color); /* Dark Red background */
  color: var(--text-light);
}

.page-promotions-vip-benefits__dark-bg {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-promotions-vip-benefits__medium-bg {
  background: var(--primary-color); /* Gold background */
  color: var(--text-light);
}

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

.page-promotions-vip-benefits__card {
  background: var(--card-bg-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-benefits__card-image {
  width: 100%;
  max-width: 250px; /* Adjust size for card images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions-vip-benefits__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-promotions-vip-benefits__card-description {
  font-size: 16px;
  color: var(--text-dark);
}

.page-promotions-vip-benefits__card--light .page-promotions-vip-benefits__card-title {
  color: var(--secondary-color); /* Dark red titles on light cards in dark section */
}

/* Benefits Section */
.page-promotions-vip-benefits__benefits-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

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

.page-promotions-vip-benefits__benefit-card {
  background: var(--card-bg-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-benefits__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-vip-benefits__benefit-icon {
  width: 100%; /* For responsiveness */
  max-width: 200px; /* Enforce minimum 200px requirement */
  min-width: 200px; /* Enforce minimum 200px requirement */
  height: auto;
  min-height: 200px; /* Enforce minimum 200px requirement */
  margin: 0 auto 20px auto; /* Center it */
  display: block;
  object-fit: contain;
  border-radius: 5px;
}

.page-promotions-vip-benefits__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-promotions-vip-benefits__benefit-description {
  font-size: 16px;
  color: var(--text-dark);
}

/* How to Join Section */
.page-promotions-vip-benefits__how-to-join-section {
  background: var(--primary-color); /* Gold background */
  color: var(--text-light);
}

.page-promotions-vip-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__list-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-benefits__list-item strong {
  color: var(--text-light);
}

/* FAQ Section */
.page-promotions-vip-benefits__faq-section {
  background: var(--bg-light);
  color: var(--text-dark);
}