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

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

.page-vip-club-how-to-join-vip__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1D30);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-vip-club-how-to-join-vip__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-vip-club-how-to-join-vip__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-vip-club-how-to-join-vip__hero-title,
.page-vip-club-how-to-join-vip__hero-subtitle {
  position: relative;
  z-index: 1;
}

.page-vip-club-how-to-join-vip__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club-how-to-join-vip__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club-how-to-join-vip__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
  margin: 10px;
  cursor: pointer;
}

.page-vip-club-how-to-join-vip__btn--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__btn--primary:hover {
  background-color: #E0B800;
  color: #0F1D30;
}

.page-vip-club-how-to-join-vip__btn--secondary {
  background-color: #1A2B4C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-club-how-to-join-vip__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club-how-to-join-vip__section--benefits {
  background-color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__section--eligibility {
  background-color: #0F1D30;
}

.page-vip-club-how-to-join-vip__section--process {
  background-color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__section--tiers {
  background-color: #0F1D30;
}

.page-vip-club-how-to-join-vip__section--responsible-gaming {
  background-color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__section--contact {
  background-color: #0F1D30;
}

.page-vip-club-how-to-join-vip__section--cta {
  background: linear-gradient(90deg, #1A2B4C, #0F1D30);
  padding: 80px 0;
}

.page-vip-club-how-to-join-vip__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club-how-to-join-vip__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-club-how-to-join-vip__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-vip-club-how-to-join-vip__benefits-grid,
.page-vip-club-how-to-join-vip__process-steps,
.page-vip-club-how-to-join-vip__tiers-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-how-to-join-vip__benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-vip-club-how-to-join-vip__process-steps {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  counter-reset: step-counter;
}

.page-vip-club-how-to-join-vip__tiers-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-vip-club-how-to-join-vip__benefit-item,
.page-vip-club-how-to-join-vip__tier-item {
  background-color: #0F1D30;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-vip-club-how-to-join-vip__benefit-item:hover,
.page-vip-club-how-to-join-vip__tier-item:hover {
  transform: translateY(-10px);
  background-color: #1A2B4C;
}

.page-vip-club-how-to-join-vip__benefit-icon,
.page-vip-club-how-to-join-vip__tier-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-how-to-join-vip__benefit-title,
.page-vip-club-how-to-join-vip__tier-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-how-to-join-vip__benefit-text,
.page-vip-club-how-to-join-vip__tier-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-vip-club-how-to-join-vip__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-vip-club-how-to-join-vip__list li {
  background-color: #1A2B4C;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  display: flex;
  align-items: flex-start;
}

.page-vip-club-how-to-join-vip__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1;
}

.page-vip-club-how-to-join-vip__note {
  font-style: italic;
  color: #AAAAAA;
  margin-top: 30px;
  font-size: 0.95em;
}

.page-vip-club-how-to-join-vip__step-item {
  background-color: #0F1D30;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  padding-top: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-vip-club-how-to-join-vip__step-number {
  counter-increment: step-counter;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A2B4C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0F1D30;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.page-vip-club-how-to-join-vip__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club-how-to-join-vip__step-text {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-vip-club-how-to-join-vip__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top: auto;
}

.page-vip-club-how-to-join-vip__contact-info {
  margin-top: 40px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-vip-club-how-to-join-vip__contact-info p {
  margin-bottom: 15px;
}

.page-vip-club-how-to-join-vip__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-how-to-join-vip__link:hover {
  text-decoration: underline;
  color: #E0B800;
}

.page-vip-club-how-to-join-vip__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-vip-club-how-to-join-vip__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-vip-club-how-to-join-vip__text {
  max-width: 900px;
  margin: 20px auto;
  color: #C0C0C0;
  font-size: 1.1em;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-club-how-to-join-vip__hero-title {
    font-size: 2.8em;
  }

  .page-vip-club-how-to-join-vip__hero-subtitle {
    font-size: 1.3em;
  }

  .page-vip-club-how-to-join-vip__section-title {
    font-size: 2.2em;
  }

  .page-vip-club-how-to-join-vip__cta-title {
    font-size: 2.5em;
  }

  .page-vip-club-how-to-join-vip__list {
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-vip-club-how-to-join-vip__hero {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-vip-club-how-to-join-vip__hero-title {
    font-size: 2.2em;
  }

  .page-vip-club-how-to-join-vip__hero-subtitle {
    font-size: 1.1em;
  }

  .page-vip-club-how-to-join-vip__section {
    padding: 40px 0;
  }

  .page-vip-club-how-to-join-vip__section-title {
    font-size: 1.8em;
  }

  .page-vip-club-how-to-join-vip__section-description,
  .page-vip-club-how-to-join-vip__text {
    font-size: 1em;
  }

  .page-vip-club-how-to-join-vip__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-vip-club-how-to-join-vip__benefits-grid,
  .page-vip-club-how-to-join-vip__process-steps,
  .page-vip-club-how-to-join-vip__tiers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club-how-to-join-vip__step-number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-vip-club-how-to-join-vip__step-item {
    padding-top: 50px;
  }

  .page-vip-club-how-to-join-vip__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-vip-club-how-to-join-vip__hero-title {
    font-size: 1.8em;
  }

  .page-vip-club-how-to-join-vip__hero-subtitle {
    font-size: 0.95em;
  }

  .page-vip-club-how-to-join-vip__section-title {
    font-size: 1.6em;
  }

  .page-vip-club-how-to-join-vip__cta-title {
    font-size: 1.8em;
  }

  .page-vip-club-how-to-join-vip__list li {
    padding: 15px 20px;
    font-size: 0.9em;
  }
}