.page-king33-vip-club-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background is from shared.css #08162B */
}

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

.page-king33-vip-club-benefits__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-king33-vip-club-benefits__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
}

/* Hero Section */
.page-king33-vip-club-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 50px;
  overflow: hidden;
}

.page-king33-vip-club-benefits__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-king33-vip-club-benefits__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Desktop default */
  filter: brightness(0.7);
}

.page-king33-vip-club-benefits__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image slightly for better flow */
}

.page-king33-vip-club-benefits__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-king33-vip-club-benefits__intro-text {
  font-size: 19px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-king33-vip-club-benefits__btn-primary,
.page-king33-vip-club-benefits__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.page-king33-vip-club-benefits__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button color */
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

.page-king33-vip-club-benefits__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 115, 246, 0.6);
}

.page-king33-vip-club-benefits__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-king33-vip-club-benefits__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

/* Intro Section */
.page-king33-vip-club-benefits__intro-section {
  padding: 60px 0;
}

.page-king33-vip-club-benefits__dark-section {
  background-color: #10233F; /* Card BG */
  color: #F3F8FF; /* Text Main */
}

.page-king33-vip-club-benefits__intro-section .page-king33-vip-club-benefits__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-king33-vip-club-benefits__image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-king33-vip-club-benefits__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
}

/* VIP Tiers Section */
.page-king33-vip-club-benefits__tiers-section {
  padding: 60px 0;
}

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

.page-king33-vip-club-benefits__vip-card {
  background-color: #10233F; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-king33-vip-club-benefits__vip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-king33-vip-club-benefits__vip-card img {
  
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #F2C14E; /* Gold */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-king33-vip-club-benefits__vip-card .page-king33-vip-club-benefits__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-king33-vip-club-benefits__vip-card .page-king33-vip-club-benefits__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #AFC4E8; /* Text Secondary */
}

.page-king33-vip-club-benefits__vip-card .page-king33-vip-club-benefits__benefits-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.page-king33-vip-club-benefits__vip-card .page-king33-vip-club-benefits__benefits-list li::before {
  content: '✓';
  color: #4FA8FF; /* Glow */
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-king33-vip-club-benefits__vip-card .page-king33-vip-club-benefits__card-description {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  flex-grow: 1;
}

/* Exclusive Services Section */
.page-king33-vip-club-benefits__services-section {
  padding: 60px 0;
}

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

.page-king33-vip-club-benefits__service-card {
  background-color: #10233F; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.page-king33-vip-club-benefits__service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-king33-vip-club-benefits__service-card .page-king33-vip-club-benefits__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-king33-vip-club-benefits__service-card p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.7;
  text-align: justify;
}

/* How to Join Section */
.page-king33-vip-club-benefits__join-section {
  padding: 60px 0;
}

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

.page-king33-vip-club-benefits__step-card {
  background-color: #10233F; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-king33-vip-club-benefits__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-king33-vip-club-benefits__step-card .page-king33-vip-club-benefits__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-king33-vip-club-benefits__step-card p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.7;
  flex-grow: 1;
  text-align: justify;
}

.page-king33-vip-club-benefits__cta-single {
  text-align: center;
  margin-top: 50px;
}