.page-king33-vip-club {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  background-color: #08162B; /* Deep Navy from body */
  line-height: 1.6;
}

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

.page-king33-vip-club__dark-bg {
  background-color: #08162B;
  color: #F3F8FF;
}

.page-king33-vip-club__medium-bg {
  background-color: #10233F; /* Card BG, slightly lighter than Deep Navy */
  color: #F3F8FF;
}

.page-king33-vip-club__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-king33-vip-club__dark-section {
  background: #113B7A; /* Main Color */
  color: #ffffff; /* Forced white text */
}

.page-king33-vip-club__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-king33-vip-club__section-description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin-bottom: 40px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-king33-vip-club__btn-primary,
.page-king33-vip-club__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-king33-vip-club__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button Custom Color */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-king33-vip-club__btn-primary:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
}

.page-king33-vip-club__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-king33-vip-club__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-king33-vip-club__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-king33-vip-club__cta-center {
  text-align: center;
}

/* Hero Section */
.page-king33-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-king33-vip-club__hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.page-king33-vip-club__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-king33-vip-club__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 100px; /* Push content down from top */
}

.page-king33-vip-club__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-king33-vip-club__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #F3F8FF;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section */
.page-king33-vip-club__introduction-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-king33-vip-club__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-king33-vip-club__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #AFC4E8;
}

.page-king33-vip-club__image-block img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

/* Tiers Section */
.page-king33-vip-club__tiers-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.page-king33-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-king33-vip-club__tier-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-king33-vip-club__tier-card p {
  font-size: 16px;
  color: #AFC4E8;
}

/* Benefits Section */
.page-king33-vip-club__benefits-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-king33-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for contrast */
  border: 1px solid #244D84; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
  transition: background-color 0.3s ease;
}

.page-king33-vip-club__benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-king33-vip-club__benefit-card p {
  font-size: 16px;
  color: #AFC4E8;
}

/* How to Join Section */
.page-king33-vip-club__join-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-king33-vip-club__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-king33-vip-club__join-steps li {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border Color */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
}

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

.page-king33-vip-club__join-steps p {
  font-size: 16px;
  color: #AFC4E8;
}

.page-king33-vip-club__join-steps a {
  color: #4FA8FF; /* Glow */
  text-decoration: none;
}

.page-king33-vip-club__join-steps a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-king33-vip-club__faq-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-king33-vip-club__faq-list {
  margin-top: 50px;
}

details.page-king33-vip-club__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #244D84; /* Border Color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  color: #F3F8FF;
}

details.page-king33-vip-club__faq-item summary.page-king33-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2C14E; /* Gold */
}

details.page-king33-vip-club__faq-item summary.page-king33-vip-club__faq-question::-webkit-details-marker {
  display: none;
}

details.page-king33-vip-club__faq-item summary.page-king33-vip-club__faq-question:hover {
  background: #1B3357; /* Divider - slightly darker */
}

.page-king33-vip-club__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Gold */
}

.page-king33-vip-club__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3F8FF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-king33-vip-club__faq-item .page-king33-vip-club__faq-answer {
  padding: 0 20px 20px;
  background: #08162B; /* Deep Navy */
  border-radius: 0 0 5px 5px;
  color: #AFC4E8;
}

.page-king33-vip-club__faq-answer p {
  margin-top: 10px;
  font-size: 16px;
  color: #AFC4E8;
}

/* CTA Section */
.page-king33-vip-club__cta-section .page-king33-vip-club__container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-king33-vip-club__hero-content {
    padding: 30px;
  }
  .page-king33-vip-club__content-grid {
    grid-template-columns: 1fr;
  }
  .page-king33-vip-club__image-block {
    order: -1; /* Image first on smaller screens */
  }
  .page-king33-vip-club__tiers-grid,
  .page-king33-vip-club__benefits-grid,
  .page-king33-vip-club__join-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-king33-vip-club__hero-section {
    min-height: 500px;
    padding-top: 10px !important; /* Ensure small top padding */
  }
  .page-king33-vip-club__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    height: auto !important;
  }
  .page-king33-vip-club__hero-content {
    margin-top: 50px;
    padding: 20px;
  }
  .page-king33-vip-club__main-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-king33-vip-club__hero-description {
    font-size: clamp(16px, 3vw, 18px);
  }
  .page-king33-vip-club__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-king33-vip-club__section-description {
    font-size: 15px;
  }
  .page-king33-vip-club__container {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-king33-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-king33-vip-club__btn-primary,
  .page-king33-vip-club__btn-secondary,
  .page-king33-vip-club a[class*="button"],
  .page-king33-vip-club a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-king33-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-king33-vip-club__content-grid,
  .page-king33-vip-club__tiers-grid,
  .page-king33-vip-club__benefits-grid,
  .page-king33-vip-club__join-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-king33-vip-club__text-block p {
    font-size: 15px;
  }
  .page-king33-vip-club__tier-title,
  .page-king33-vip-club__benefit-title,
  .page-king33-vip-club__step-title {
    font-size: 20px;
  }
  details.page-king33-vip-club__faq-item summary.page-king33-vip-club__faq-question { padding: 15px; }
  .page-king33-vip-club__faq-qtext { font-size: 16px; }
  details.page-king33-vip-club__faq-item .page-king33-vip-club__faq-answer { padding: 0 15px 15px; }
}