.page-resources-mt68-vip-guide {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --background-dark: #1A1A1A;
  --background-light: #FFFFFF;
  --border-color: #444444;
  --hover-color: #FFC107;
}

.page-resources-mt68-vip-guide__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-mt68-vip-guide__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-mt68-vip-guide__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-resources-mt68-vip-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-mt68-vip-guide__hero-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-resources-mt68-vip-guide__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-resources-mt68-vip-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-mt68-vip-guide__cta-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-mt68-vip-guide__section {
  padding: 60px 20px;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-resources-mt68-vip-guide__section:nth-of-type(odd) {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-mt68-vip-guide__section:nth-of-type(odd) .page-resources-mt68-vip-guide__section-title,
.page-resources-mt68-vip-guide__section:nth-of-type(odd) .page-resources-mt68-vip-guide__sub-title {
  color: var(--secondary-color);
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .page-resources-mt68-vip-guide__section-title,
.page-resources-mt68-vip-guide__section:nth-of-type(even) .page-resources-mt68-vip-guide__sub-title {
  color: var(--primary-color);
}

.page-resources-mt68-vip-guide__section:nth-of-type(odd) a {
  color: var(--primary-color);
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) a {
  color: var(--primary-color);
}

.page-resources-mt68-vip-guide__section a:hover {
  text-decoration: underline;
}

.page-resources-mt68-vip-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-mt68-vip-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-mt68-vip-guide__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-mt68-vip-guide__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-resources-mt68-vip-guide__paragraph .highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-mt68-vip-guide__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-resources-mt68-vip-guide__step-item {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .page-resources-mt68-vip-guide__step-item {
  background-color: #2a2a2a;
  color: var(--text-light);
}

.page-resources-mt68-vip-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-mt68-vip-guide__step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-mt68-vip-guide__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-mt68-vip-guide__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-resources-mt68-vip-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-mt68-vip-guide__game-card {
  background-color: var(--background-light);
  color: var(--text-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .page-resources-mt68-vip-guide__game-card {
  background-color: #2a2a2a;
  color: var(--text-light);
}

.page-resources-mt68-vip-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-mt68-vip-guide__game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-mt68-vip-guide__game-card h3,
.page-resources-mt68-vip-guide__game-card p,
.page-resources-mt68-vip-guide__game-card a {
  padding: 0 20px;
}

.page-resources-mt68-vip-guide__game-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-mt68-vip-guide__game-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-resources-mt68-vip-guide__game-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

.page-resources-mt68-vip-guide__game-link:hover {
  border-bottom-color: var(--primary-color);
}

.page-resources-mt68-vip-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-mt68-vip-guide__promo-list li {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .page-resources-mt68-vip-guide__promo-list li {
  background-color: #2a2a2a;
  color: var(--text-light);
}

.page-resources-mt68-vip-guide__promo-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-mt68-vip-guide__promo-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-mt68-vip-guide__promo-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-mt68-vip-guide__promo-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-resources-mt68-vip-guide__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-mt68-vip-guide__contact-list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-resources-mt68-vip-guide__faq-list {
  margin-top: 40px;
}

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-mt68-vip-guide__section:nth-of-type(odd) .faq-item {
  border-color: #e0e0e0;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .faq-item {
  border-color: #444444;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .faq-question {
  background-color: #2a2a2a;
  color: var(--text-light);
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .faq-question:hover {
  background-color: #3a3a3a;
}

.faq-question h3 {
  font-size: 1.2em;
  margin: 0;
  color: var(--secondary-color);
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .faq-question h3 {
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.page-resources-mt68-vip-guide__section:nth-of-type(even) .faq-answer {
  background-color: #333333;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-resources-mt68-vip-guide__center-button {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-mt68-vip-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-mt68-vip-guide__section-title {
    font-size: 2.2em;
  }
  .page-resources-mt68-vip-guide__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-mt68-vip-guide__hero {
    padding: 40px 15px;
  }
  .page-resources-mt68-vip-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-mt68-vip-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-mt68-vip-guide__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-resources-mt68-vip-guide__section {
    padding: 40px 15px;
  }
  .page-resources-mt68-vip-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-mt68-vip-guide__sub-title {
    font-size: 1.4em;
  }
  .page-resources-mt68-vip-guide__paragraph {
    font-size: 0.95em;
  }
  .page-resources-mt68-vip-guide__step-icon {
    width: 90px;
    height: 90px;
  }
  .page-resources-mt68-vip-guide__step-title {
    font-size: 1.2em;
  }
  .page-resources-mt68-vip-guide__game-image {
    height: 180px;
  }
  .page-resources-mt68-vip-guide__game-title {
    font-size: 1.3em;
  }
  .page-resources-mt68-vip-guide__promo-icon {
    width: 80px;
    height: 80px;
  }
  .page-resources-mt68-vip-guide__promo-title {
    font-size: 1.2em;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-mt68-vip-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-mt68-vip-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-mt68-vip-guide__steps {
    grid-template-columns: 1fr;
  }
  .page-resources-mt68-vip-guide__game-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-mt68-vip-guide__promo-list {
    grid-template-columns: 1fr;
  }
}