:root {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-light: #F0F2F5;
  --text-dark: #333333;
  --bg-dark: #1a2a44;
  --bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--primary-color);
  line-height: 1.6;
}

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

.page-vip-club section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: var(--bg-dark);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club section:nth-of-type(even) {
  background-color: #16253e;
}

.page-vip-club h1, .page-vip-club h2, .page-vip-club h3 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-vip-club h1 {
  font-size: 3em;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club h2 {
  font-size: 2.5em;
}

.page-vip-club h3 {
  font-size: 1.8em;
  color: var(--text-light);
}

.page-vip-club p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: justify;
}

.page-vip-club strong {
  color: var(--secondary-color);
}

.page-vip-club .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-vip-club .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.page-vip-club .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a44 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.page-vip-club .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-club .hero-image {
  width: 100%;
  margin-bottom: 40px;
}

.page-vip-club .hero-image img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-vip-club .hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: var(--text-light);
}

/* Intro Section */
.page-vip-club .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-vip-club .section-intro .image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-vip-club .section-intro .image-wrapper img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Benefits Grid */
.page-vip-club .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club .benefit-item {
  background-color: #2a3b53;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-club .benefit-item:hover {
  transform: translateY(-5px);
  background-color: #354a66;
}

.page-vip-club .benefit-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club .benefit-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-vip-club .benefit-item p {
  font-size: 1em;
  color: var(--text-light);
  text-align: center;
}

/* VIP Levels */
.page-vip-club .levels-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-vip-club .level-item {
  background-color: #2a3b53;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club .level-item img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-vip-club .level-item h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.4em;
}

.page-vip-club .level-item p {
  font-size: 0.95em;
  color: var(--text-light);
  text-align: center;
}

/* Join Steps */
.page-vip-club .join-steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-vip-club .step-item {
  background-color: #2a3b53;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-club .step-item img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club .step-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-vip-club .step-item p {
  font-size: 1em;
  color: var(--text-light);
  text-align: center;
}

.page-vip-club .step-item a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-vip-club .step-item a:hover {
  color: var(--accent-color);
}

/* Why Choose Grid */
.page-vip-club .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club .why-choose-item {
  background-color: #2a3b53;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-vip-club .why-choose-item:hover {
  transform: translateY(-5px);
  background-color: #354a66;
}

.page-vip-club .why-choose-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club .why-choose-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-vip-club .why-choose-item p {
  font-size: 1em;
  color: var(--text-light);
  text-align: center;
}

/* FAQ Section */
.page-vip-club .section-faq {
  background-color: #1a2a44;
}

.page-vip-club .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-vip-club .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a3b53;
  color: var(--text-light);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club .faq-question:hover {
  background: #354a66;
}

.page-vip-club .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
  text-align: left;
}

.page-vip-club .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-vip-club .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #203049;
  color: var(--text-light);
}

.page-vip-club .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip-club .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-vip-club .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Conclusion Section */
.page-vip-club .section-conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-vip-club .section-conclusion p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club h1 {
    font-size: 2.5em;
  }
  .page-vip-club h2 {
    font-size: 2em;
  }
  .page-vip-club h3 {
    font-size: 1.6em;
  }
  .page-vip-club .hero-image img {
    max-width: 800px;
  }
  .page-vip-club .benefits-grid, .page-vip-club .levels-info, .page-vip-club .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-club section {
    padding: 40px 0;
  }
  .page-vip-club h1 {
    font-size: 2em;
  }
  .page-vip-club h2 {
    font-size: 1.8em;
  }
  .page-vip-club h3 {
    font-size: 1.4em;
  }
  .page-vip-club p {
    font-size: 1em;
  }
  .page-vip-club .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-vip-club .hero-section {
    padding: 60px 15px;
  }
  .page-vip-club .hero-image {
    margin-bottom: 30px;
  }
  .page-vip-club .hero-image img {
    border-radius: 8px;
  }
  .page-vip-club .join-steps {
    flex-direction: column;
    align-items: center;
  }
  .page-vip-club .step-item {
    max-width: 100%;
  }
  .page-vip-club .faq-question {
    padding: 15px 20px;
  }
  .page-vip-club .faq-question h3 {
    font-size: 1.1em;
  }
  .page-vip-club .faq-toggle {
    font-size: 20px;
  }
  .page-vip-club .faq-answer {
    padding: 0 20px;
  }
  .page-vip-club .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club h1 {
    font-size: 1.8em;
  }
  .page-vip-club h2 {
    font-size: 1.6em;
  }
  .page-vip-club h3 {
    font-size: 1.2em;
  }
  .page-vip-club .hero-content p {
    font-size: 1em;
  }
  .page-vip-club .benefits-grid, .page-vip-club .levels-info, .page-vip-club .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-vip-club .faq-question h3 {
    margin-bottom: 8px;
  }
  .page-vip-club .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
}