.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: var(--color-deep-navy); /* From shared.css, assuming dark */
}

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

.page-vip-club__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #F2C14E, transparent);
  border-radius: 2px;
}

.page-vip-club__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #AFC4E8; /* Text Secondary */
}

.page-vip-club__text-block strong {
  color: #F3F8FF;
}

.page-vip-club__text-center {
  text-align: center;
}

.page-vip-club__mt-40 {
  margin-top: 40px;
}

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(17, 60, 170, 0.4);
}

.page-vip-club__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 6px 20px rgba(17, 60, 170, 0.6);
}

.page-vip-club__btn-secondary {
  background: #ffffff;
  color: #113B7A;
  border: 2px solid #113B7A;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__btn-secondary:hover {
  background: #f0f0f0;
  border-color: #1D5FD1;
  color: #1D5FD1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-vip-club__large-btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  min-width: 220px;
}

/* Hero Section */
.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Assuming body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--color-deep-navy);
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
  margin-bottom: 40px;
}

.page-vip-club__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 1.15rem;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

/* Intro Section */
.page-vip-club__intro-section {
  padding: 80px 0;
  background-color: #08162B; /* Deep Navy */
  text-align: center;
}

.page-vip-club__dark-section {
  background-color: #113B7A;
  color: #F3F8FF;
}

.page-vip-club__dark-section .page-vip-club__text-block {
  color: #AFC4E8;
}

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: var(--color-deep-navy);
}

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

.page-vip-club__benefit-card {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F3F8FF; /* Text Main */
  border: 1px solid #244D84; /* Border */
}

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

.page-vip-club__benefit-card .page-vip-club__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-vip-club__benefit-card .page-vip-club__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-vip-club__benefit-card p {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #113B7A;
  text-align: center;
}

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

.page-vip-club__tier-card {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F3F8FF; /* Text Main */
  border: 1px solid #244D84; /* Border */
  text-align: left;
}

.page-vip-club__tier-card .page-vip-club__card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-vip-club__tier-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #AFC4E8; /* Text Secondary */
}

.page-vip-club__note {
  font-size: 0.85rem;
  margin-top: 40px;
  color: #AFC4E8;
}

/* Join Section */
.page-vip-club__join-section {
  padding: 80px 0;
  background-color: var(--color-deep-navy);
}

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

.page-vip-club__step-card {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F3F8FF; /* Text Main */
  border: 1px solid #244D84; /* Border */
}

.page-vip-club__step-card .page-vip-club__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1D5FD1; /* Auxiliary color */
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px rgba(29, 95, 209, 0.3);
}

.page-vip-club__step-card .page-vip-club__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-vip-club__step-card p {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
}

.page-vip-club__step-card a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

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

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