/* style/vip-program.css */
.page-vip-program {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* body background is handled by shared.css */
}

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

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

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

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

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

.page-vip-program__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* Hero Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  overflow: hidden;
  color: #ffffff;
  padding: 60px 0; /* General spacing, not for header offset */
}

.page-vip-program__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.4); Removed as per strict filter rules */
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* Added for readability on potentially bright images */
}

.page-vip-program__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

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

.page-vip-program__btn-primary,
.page-vip-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-vip-program__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-program__btn-primary:hover {
  background-color: #1a7fb3;
  border-color: #1a7fb3;
}

.page-vip-program__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-vip-program__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* VIP Levels Grid */
.page-vip-program__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__level-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-vip-program__level-card:hover {
  transform: translateY(-10px);
}

.page-vip-program__level-icon {
  width: 200px; /* Adjusted to meet minimum size requirement */
  height: 200px; /* Adjusted to meet minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 5px solid #26A9E0;
}

.page-vip-program__level-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program__level-description {
  font-size: 1em;
  color: #555555;
}

.page-vip-program__callout-text {
  font-size: 1.1em;
  margin-top: 50px;
  color: inherit;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid */
.page-vip-program__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-vip-program__benefit-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.page-vip-program__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Video Section */
.page-vip-program__video-section {
  padding: 80px 0;
  background-color: #121212;
  color: #ffffff;
}

.page-vip-program__video-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-vip-program__video-cta-text {
  font-size: 1.2em;
  margin-top: 20px;
  color: #f0f0f0;
}

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

/* How to Join Section */
.page-vip-program__how-to-join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-program__step-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-vip-program__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-vip-program__step-description a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__step-description a:hover {
  text-decoration: underline;
}

.page-vip-program__image-wrapper {
  margin-top: 50px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-program__content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsible Gaming Section */
.page-vip-program__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  text-align: left;
}

.page-vip-program__responsible-text {
  flex: 1;
  min-width: 300px;
  color: #f0f0f0;
}

.page-vip-program__responsible-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-program__responsible-text a:hover {
  text-decoration: underline;
}