.page-vip-club {
  color: #333333; /* Dark text for default light body background */
  font-family: 'Montserrat', sans-serif; /* Modern font choice */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8; /* Slightly off-white background for depth */
}

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

.page-vip-club__section {
  padding: 80px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-vip-club__section--visible {
  opacity: 1;
  transform: translateY(0);
}

.page-vip-club__section--dark {
  background-color: #003366;
  color: #ffffff;
}

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 5px;
  background-color: #FFCC00;
  border-radius: 3px;
}

.page-vip-club__section--dark .page-vip-club__section-title {
  color: #FFCC00;
}

.page-vip-club__section-intro {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
  font-weight: 300;
}

.page-vip-club__section--dark .page-vip-club__section-intro {
  color: #f0f0f0;
}

.page-vip-club__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-club__section--dark .page-vip-club__sub-title {
  color: #FFCC00;
}

.page-vip-club__paragraph {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  text-align: left;
  color: #444444;
}

.page-vip-club__section--dark .page-vip-club__paragraph {
  color: #cccccc;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Increased minimum height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003366; /* Fallback background */
  padding: 0; /* Remove default padding from section */
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image more for text readability */
  z-index: 1;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px; /* More padding for hero content */
  max-width: 1000px;
}

.page-vip-club__hero-title {
  font-size: 3.8em;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #FFCC00; /* Gold title for hero */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 800;
}

.page-vip-club__hero-description {
  font-size: 1.5em;
  margin-bottom: 50px;
  color: #f0f0f0;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-cta-group {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-club__hero-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__hero-button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-vip-club__hero-button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-vip-club__hero-button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-vip-club__hero-button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* General Buttons */
.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-vip-club__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-vip-club__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.page-vip-club__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-vip-club__button--secondary:hover {
  background-color: #002244;
  color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.page-vip-club__button--outline {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-vip-club__button--outline:hover {
  background-color: #003366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

.page-vip-club__button--text {
  background-color: transparent;
  color: #003366;
  text-decoration: underline;
  border: none;
  padding: 0;
  box-shadow: none;
}

.page-vip-club__button--text:hover {
  color: #FFCC00;
  transform: none;
}

/* Features Grid */
.page-vip-club__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-vip-club__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #eee;
}

.page-vip-club__feature-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.page-vip-club__feature-icon {
  width: 250px; /* Minimum size requirement, slightly larger */
  height: 180px; /* Fixed height for consistency, object-fit will handle aspect ratio */
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__feature-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-vip-club__feature-description {
  font-size: 1.05em;
  color: #555555;
  font-weight: 300;
}

/* Image Styling */
.page-vip-club__image-full-width {
  width: 100%;
  height: auto;
  max-height: 650px; /* Slightly increased max height */
  object-fit: cover;
  border-radius: 12px;
  margin: 50px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__image-center {
  display: block;
  margin: 50px auto;
  max-width: 850px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-vip-club__image-left {
  float: left;
  margin: 0 50px 30px 0;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__image-right {
  float: right;
  margin: 0 0 30px 50px;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Clearfix for floated images */
.page-vip-club__section::after {
  content: "";
  display: table;
  clear: both;
}

/* How-to List */
.page-vip-club__how-to-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 950px;
  text-align: left;
}

.page-vip-club__how-to-item {
  background-color: #ffffff;
  border-left: 6px solid #FFCC00;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.page-vip-club__how-to-item:hover {
  border-left-color: #003366;
  transform: translateX(5px);
}

.page-vip-club__list-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 8px;
  font-weight: 600;
}

.page-vip-club__list-description {
  font-size: 1.0em;
  color: #666666;
}

/* CTA Area */
.page-vip-club__cta-area {
  margin-top: 60px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Details List / Cards */
.page-vip-club__details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__details-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__details-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-club__details-title {
  font-size: 1.7em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-vip-club__details-title a {
  color: #003366;
  text-decoration: none;
}

.page-vip-club__details-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-vip-club__details-description {
  font-size: 1.05em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3.2em;
  }

  .page-vip-club__hero-description {
    font-size: 1.3em;
  }

  .page-vip-club__section-title {
    font-size: 2.5em;
  }

  .page-vip-club__section-intro {
    font-size: 1.1em;
  }
  
  .page-vip-club__image-left, .page-vip-club__image-right {
    max-width: 450px;
    margin: 0 30px 20px 0;
  }
  .page-vip-club__image-right {
    margin: 0 0 20px 30px;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-vip-club__hero-section {
    min-height: 450px;
  }

  .page-vip-club__hero-title {
    font-size: 2.8em;
  }

  .page-vip-club__hero-description {
    font-size: 1.1em;
  }

  .page-vip-club__hero-cta-group {
    flex-direction: column;
    gap: 18px;
  }

  .page-vip-club__hero-button {
    width: 100%;
    padding: 15px 25px;
  }

  .page-vip-club__section {
    padding: 50px 0;
  }

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__section-intro {
    font-size: 1em;
  }

  .page-vip-club__features-grid, .page-vip-club__details-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__image-left, .page-vip-club__image-right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
  }

  .page-vip-club__cta-area {
    flex-direction: column;
    gap: 18px;
  }

  .page-vip-club__button {
    width: 100%;
  }

  /* Critical: Ensure all images within content area are responsive and don't overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Specific overrides for floated images in mobile */
  .page-vip-club__section .page-vip-club__image-left, 
  .page-vip-club__section .page-vip-club__image-right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
  }

  .page-vip-club__feature-icon {
    width: 100%; /* Ensure feature icons are responsive */
    height: auto;
    min-height: 200px; /* Maintain minimum size */
  }

  .page-vip-club__image-full-width, .page-vip-club__image-center {
    max-height: none; /* Allow height to be auto on mobile */
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__sub-title {
    font-size: 1.5em;
  }
  .page-vip-club__paragraph, .page-vip-club__feature-description, .page-vip-club__list-description {
    font-size: 0.95em;
  }
  .page-vip-club__section {
    padding: 40px 0;
  }
  .page-vip-club__hero-button {
    font-size: 1.05em;
  }
}