/* style/hit-club-vip-how-to-join.css */
.page-hit-club-vip-how-to-join {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

.page-hit-club-vip-how-to-join__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hit-club-vip-how-to-join__container--centered {
  text-align: center;
}

.page-hit-club-vip-how-to-join__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-hit-club-vip-how-to-join__section:nth-of-type(odd) {
  background-color: #fff;
}

.page-hit-club-vip-how-to-join__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-hit-club-vip-how-to-join__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-hit-club-vip-how-to-join__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for depth */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hit-club-vip-how-to-join__hero-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.page-hit-club-vip-how-to-join__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
}

.page-hit-club-vip-how-to-join__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-hit-club-vip-how-to-join__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000; /* Black text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-hit-club-vip-how-to-join__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-hit-club-vip-how-to-join__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-hit-club-vip-how-to-join__hero-image-container {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.15;
  z-index: 0;
}

.page-hit-club-vip-how-to-join__hero-image {
  width: 500px;
  height: auto;
  transform: rotate(-15deg);
}

@media (max-width: 768px) {
  .page-hit-club-vip-how-to-join__hero-title {
    font-size: 2.5em;
  }
  .page-hit-club-vip-how-to-join__hero-subtitle {
    font-size: 1.2em;
  }
  .page-hit-club-vip-how-to-join__hero-image-container {
    display: none; /* Hide image on smaller screens */
  }
}

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

.page-hit-club-vip-how-to-join__benefit-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #007BFF;
}

.page-hit-club-vip-how-to-join__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip-how-to-join__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.5));
}

.page-hit-club-vip-how-to-join__benefit-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-hit-club-vip-how-to-join__benefit-text {
  font-size: 1em;
  color: #666;
}

.page-hit-club-vip-how-to-join__vip-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.page-hit-club-vip-how-to-join__vip-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.page-hit-club-vip-how-to-join__vip-table th,
.page-hit-club-vip-how-to-join__vip-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.page-hit-club-vip-how-to-join__vip-table th {
  background-color: #007BFF;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
}

.page-hit-club-vip-how-to-join__vip-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-hit-club-vip-how-to-join__vip-level-name {
  font-weight: bold;
  color: #FFD700;
}

.page-hit-club-vip-how-to-join__section-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #777;
}

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

.page-hit-club-vip-how-to-join__step-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-hit-club-vip-how-to-join__step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.4);
}

.page-hit-club-vip-how-to-join__step-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: bold;
}

.page-hit-club-vip-how-to-join__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-hit-club-vip-how-to-join__step-text a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-hit-club-vip-how-to-join__step-text a:hover {
  text-decoration: underline;
}

.page-hit-club-vip-how-to-join__step-cta {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-hit-club-vip-how-to-join__step-cta:hover {
  background-color: #0056b3;
}

.page-hit-club-vip-how-to-join__step-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip-how-to-join__factor-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-hit-club-vip-how-to-join__factor-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  border-left: 5px solid #FFD700;
}

.page-hit-club-vip-how-to-join__factor-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-hit-club-vip-how-to-join__factors-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-hit-club-vip-how-to-join__tip-list {
  list-style: disc;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
  padding-left: 20px;
}

.page-hit-club-vip-how-to-join__tip-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-hit-club-vip-how-to-join__tip-list li strong {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-hit-club-vip-how-to-join__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-hit-club-vip-how-to-join__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-hit-club-vip-how-to-join__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-hit-club-vip-how-to-join__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-hit-club-vip-how-to-join__faq-answer.active {
  display: block;
}

.page-hit-club-vip-how-to-join__section--cta-final {
  background-color: #007BFF;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-hit-club-vip-how-to-join__section--cta-final .page-hit-club-vip-how-to-join__section-title {
  color: #FFD700;
}

.page-hit-club-vip-how-to-join__section--cta-final .page-hit-club-vip-how-to-join__section-description {
  color: #e0e0e0;
}

/* Highlight text */
.page-hit-club-vip-how-to-join .highlight-text {
  color: #007BFF;
  font-weight: bold;
}

.page-hit-club-vip-how-to-join__section--why-vip .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--vip-levels .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--how-to-join .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--factors .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--tips .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--faq .highlight-text {
  color: #007BFF;
}

.page-hit-club-vip-how-to-join__section--cta-final .highlight-text {
  color: #FFD700;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-hit-club-vip-how-to-join__section-title {
    font-size: 2em;
  }
  .page-hit-club-vip-how-to-join__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-hit-club-vip-how-to-join__section {
    padding: 40px 0;
  }
  .page-hit-club-vip-how-to-join__hero {
    padding: 80px 0;
  }
  .page-hit-club-vip-how-to-join__hero-title {
    font-size: 2.2em;
  }
  .page-hit-club-vip-how-to-join__hero-subtitle {
    font-size: 1.1em;
  }
  .page-hit-club-vip-how-to-join__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-hit-club-vip-how-to-join__benefits-grid,
  .page-hit-club-vip-how-to-join__steps-grid,
  .page-hit-club-vip-how-to-join__factor-list {
    grid-template-columns: 1fr;
  }
  .page-hit-club-vip-how-to-join__vip-table th,
  .page-hit-club-vip-how-to-join__vip-table td {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-hit-club-vip-how-to-join__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-hit-club-vip-how-to-join__step-title {
    font-size: 1.4em;
  }
  .page-hit-club-vip-how-to-join__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-hit-club-vip-how-to-join__section-title {
    font-size: 1.8em;
  }
  .page-hit-club-vip-how-to-join__hero-title {
    font-size: 1.8em;
  }
  .page-hit-club-vip-how-to-join__hero-subtitle {
    font-size: 0.9em;
  }
  .page-hit-club-vip-how-to-join__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-hit-club-vip-how-to-join__benefit-title {
    font-size: 1.3em;
  }
  .page-hit-club-vip-how-to-join__step-title {
    font-size: 1.2em;
  }
  .page-hit-club-vip-how-to-join__factor-title {
    font-size: 1.2em;
  }
}