.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--secondary-color); /* Matches body background from shared.css */
}

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

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

.page-vip-club__container--centered {
  max-width: 900px;
}

.page-vip-club__section-title {
  font-size: 38px;
  margin-bottom: 20px;
  color: #017439; /* Primary color for titles */
  font-weight: bold;
}

.page-vip-club__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-vip-club__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0; /* Added for contrast */
  color: #333333;
}

.page-vip-club__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Hero Section */
.page-vip-club__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);
  background: linear-gradient(135deg, #017439, #004d29);
  overflow: hidden;
}

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

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.page-vip-club__hero-content h1 {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  color: #FFFF00; /* Register/Login font color for H1 */
}

.page-vip-club__hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-vip-club__cta-button {
  display: inline-block;
  padding: 18px 45px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button--register {
  background: #C30808;
  color: #FFFF00;
}

.page-vip-club__cta-button--register:hover {
  background: #a80707;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-button--login {
  background: #C30808;
  color: #FFFF00;
}

.page-vip-club__cta-button--login:hover {
  background: #a80707;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__cta-button--learn-more {
  background: #017439;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 18px;
}

.page-vip-club__cta-button--learn-more:hover {
  background: #005a2e;
}

.page-vip-club__cta-button--view-all {
  background: #017439;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 18px;
}

.page-vip-club__cta-button--view-all:hover {
  background: #005a2e;
}

/* Benefits Section */
.page-vip-club__section--benefits {
  background-color: #ffffff;
  color: #333333;
}

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

.page-vip-club__benefit-title {
  font-size: 24px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-text {
  font-size: 16px;
  color: #555555;
}

.page-vip-club__image-full-width {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-top: 60px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* How To Join Section */
.page-vip-club__section--how-to-join {
  background-color: #017439;
  color: #ffffff;
}

.page-vip-club__section--how-to-join .page-vip-club__section-title {
  color: #FFFF00;
}

.page-vip-club__section--how-to-join .page-vip-club__section-description {
  color: #f0f0f0;
}

.page-vip-club__process-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-vip-club__step-item {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__step-title {
  font-size: 26px;
  color: #FFFF00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__step-text {
  font-size: 16px;
  color: #f0f0f0;
}

/* Tiers Section */
.page-vip-club__section--tiers {
  background-color: #ffffff;
  color: #333333;
}

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

.page-vip-club__tier-card {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid #e8e8e8;
}

.page-vip-club__tier-title {
  font-size: 28px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-description {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
  min-height: 70px; /* Ensure consistent height */
}

.page-vip-club__tier-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-vip-club__tier-benefits-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444444;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-benefits-list li::before {
  content: '✓';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Exclusive Games Section */
.page-vip-club__section--exclusive-games {
  background-color: #017439;
  color: #ffffff;
}

.page-vip-club__section--exclusive-games .page-vip-club__section-title {
  color: #FFFF00;
}

.page-vip-club__section--exclusive-games .page-vip-club__section-description {
  color: #f0f0f0;
}

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

.page-vip-club__game-item {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}