.page-vip-club-priority-service {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-vip-club-priority-service__hero {
  position: relative;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-vip-club-priority-service__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-vip-club-priority-service__hero .page-vip-club-priority-service__container {
  position: relative;
  z-index: 2;
}

.page-vip-club-priority-service__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700; /* Gold for emphasis */
}

.page-vip-club-priority-service__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
}

.page-vip-club-priority-service__section {
  padding: 80px 0;
}

.page-vip-club-priority-service__section--benefits {
  background-color: #fff;
}

.page-vip-club-priority-service__section--how-to-vip {
  background-color: #f1f5f9;
}

.page-vip-club-priority-service__section--dark-bg {
  background-color: #003366;
  color: #fff;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__section-title,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__section-description,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__app-features li,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__security-title,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__security-text,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__game-title,
.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__game-text {
  color: #fff; /* Ensure text is white on dark background */
}

.page-vip-club-priority-service__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__section-title {
  color: #FFD700;
}

.page-vip-club-priority-service__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__section-description {
  color: #e0e0e0;
}

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

.page-vip-club-priority-service__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-priority-service__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-club-priority-service__grid-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-priority-service__grid-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}

.page-vip-club-priority-service__grid-text {
  font-size: 0.95em;
  color: #666;
}

.page-vip-club-priority-service__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-vip-club-priority-service__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border: 2px solid #FFD700;
}

.page-vip-club-priority-service__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-vip-club-priority-service__btn--secondary {
  background-color: #003366;
  color: #FFD700;
  border: 2px solid #003366;
}

.page-vip-club-priority-service__btn--secondary:hover {
  background-color: #001a33;
  border-color: #001a33;
}

.page-vip-club-priority-service__btn--link {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.page-vip-club-priority-service__btn--link:hover {
  background-color: #003366;
  color: #FFD700;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__btn--link {
  color: #FFD700;
  border-color: #FFD700;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__btn--link:hover {
  background-color: #FFD700;
  color: #003366;
}

.page-vip-club-priority-service__btn--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-vip-club-priority-service__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-vip-club-priority-service__cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-vip-club-priority-service__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.page-vip-club-priority-service__step-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-vip-club-priority-service__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #003366;
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 25px auto;
}

.page-vip-club-priority-service__step-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}

.page-vip-club-priority-service__step-text {
  font-size: 1em;
  color: #666;
}

.page-vip-club-priority-service__link-in-text {
  color: #003366;
  text-decoration: underline;
  font-weight: 500;
}

.page-vip-club-priority-service__link-in-text:hover {
  color: #FFD700;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__link-in-text {
  color: #FFD700;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__link-in-text:hover {
  color: #fff;
}

.page-vip-club-priority-service__sub-section-title {
  font-size: 2em;
  font-weight: 600;
  color: #003366;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 25px;
}

.page-vip-club-priority-service__text-block {
  font-size: 1.05em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
  color: #444;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__sub-section-title {
  color: #FFD700;
}

.page-vip-club-priority-service__section--dark-bg .page-vip-club-priority-service__text-block {
  color: #e0e0e0;
}

.page-vip-club-priority-service__cta-full-width {
  text-align: center;
  margin-top: 60px;
}

.page-vip-club-priority-service__app-promo-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-vip-club-priority-service__app-text-content {
  flex: 1;
  min-width: 300px;
}

.page-vip-club-priority-service__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.page-vip-club-priority-service__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-club-priority-service__app-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-vip-club-priority-service__app-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #fff;
}

.page-vip-club-priority-service__app-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

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

.page-vip-club-priority-service__security-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-club-priority-service__security-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-priority-service__security-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.page-vip-club-priority-service__security-text {
  font-size: 0.95em;
  color: #666;
}

.page-vip-club-priority-service__faq-list {
  margin-top: 40px;
}

.page-vip-club-priority-service__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-vip-club-priority-service__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #003366;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.page-vip-club-priority-service__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-club-priority-service__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-vip-club-priority-service__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #555;
  display: none;
}

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

.page-vip-club-priority-service__game-card {
  background-color: #001a33;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-vip-club-priority-service__game-card:hover {
  transform: translateY(-8px);
}

.page-vip-club-priority-service__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-vip-club-priority-service__game-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-club-priority-service__game-text {
  font-size: 0.9em;
  color: #ccc;
  padding: 0 15px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-vip-club-priority-service__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-priority-service__hero-subtitle {
    font-size: 1.3em;
  }
  .page-vip-club-priority-service__section-title {
    font-size: 2em;
  }
  .page-vip-club-priority-service__app-promo-content {
    flex-direction: column;
    text-align: center;
  }
  .page-vip-club-priority-service__app-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-vip-club-priority-service__hero {
    padding: 80px 0;
  }
  .page-vip-club-priority-service__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club-priority-service__hero-subtitle {
    font-size: 1.1em;
  }
  .page-vip-club-priority-service__section {
    padding: 60px 0;
  }
  .page-vip-club-priority-service__section-title {
    font-size: 1.8em;
  }
  .page-vip-club-priority-service__section-description {
    font-size: 1em;
  }
  .page-vip-club-priority-service__grid-item,
  .page-vip-club-priority-service__step-item,
  .page-vip-club-priority-service__security-item,
  .page-vip-club-priority-service__game-card {
    padding: 25px;
  }
  .page-vip-club-priority-service__grid-title,
  .page-vip-club-priority-service__step-title,
  .page-vip-club-priority-service__security-title,
  .page-vip-club-priority-service__game-title {
    font-size: 1.3em;
  }
  .page-vip-club-priority-service__cta-row {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-priority-service__btn--large {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-vip-club-priority-service__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club-priority-service__hero-subtitle {
    font-size: 1em;
  }
  .page-vip-club-priority-service__section-title {
    font-size: 1.6em;
  }
  .page-vip-club-priority-service__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-vip-club-priority-service__faq-question::after {
    right: 20px;
  }
  .page-vip-club-priority-service__faq-answer {
    padding: 0 20px 15px 20px;
  }
}