.page-resources-mt68vip-game-beginners-guide {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-login-color: #EA7C07;
  --bg-white: #FFFFFF;
  color: var(--text-light); /* Default text color for dark background */
  background-color: var(--dark-bg-1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-resources-mt68vip-game-beginners-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-mt68vip-game-beginners-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0; /* Assumes shared.css handles body padding-top */
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7fb0 100%);
  position: relative;
  overflow: hidden;
}

.page-resources-mt68vip-game-beginners-guide__hero-content {
  flex: 1;
  padding-right: 40px;
  text-align: left;
  z-index: 1;
}

.page-resources-mt68vip-game-beginners-guide__hero-title {
  font-size: 3.2em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-mt68vip-game-beginners-guide__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-mt68vip-game-beginners-guide__hero-buttons {
  display: flex;
  gap: 15px;
}

.page-resources-mt68vip-game-beginners-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}

.page-resources-mt68vip-game-beginners-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-resources-mt68vip-game-beginners-guide__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-resources-mt68vip-game-beginners-guide__text-block {
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-mt68vip-game-beginners-guide__introduction-section,
.page-resources-mt68vip-game-beginners-guide__games-section,
.page-resources-mt68vip-game-beginners-guide__getting-started-section,
.page-resources-mt68vip-game-beginners-guide__tips-section,
.page-resources-mt68vip-game-beginners-guide__promotions-section,
.page-resources-mt68vip-game-beginners-guide__support-security-section,
.page-resources-mt68vip-game-beginners-guide__faq-section {
  padding: 40px 0;
  background-color: var(--dark-bg-1);
}

/* Games Section */
.page-resources-mt68vip-game-beginners-guide__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-mt68vip-game-beginners-guide__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  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;
  justify-content: space-between;
  height: 100%;
}

.page-resources-mt68vip-game-beginners-guide__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-mt68vip-game-beginners-guide__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px;
}

.page-resources-mt68vip-game-beginners-guide__game-title {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.page-resources-mt68vip-game-beginners-guide__game-title a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__game-title a:hover {
  color: var(--primary-color);
}

.page-resources-mt68vip-game-beginners-guide__game-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Getting Started Section */
.page-resources-mt68vip-game-beginners-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-mt68vip-game-beginners-guide__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-resources-mt68vip-game-beginners-guide__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-mt68vip-game-beginners-guide__step-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tips Section */
.page-resources-mt68vip-game-beginners-guide__tips-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-mt68vip-game-beginners-guide__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-resources-mt68vip-game-beginners-guide__tip-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-mt68vip-game-beginners-guide__tip-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
  flex-grow: 1;
}

.page-resources-mt68vip-game-beginners-guide__tip-description a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__tip-description a:hover {
  text-decoration: underline;
}

/* Promotions Section */
.page-resources-mt68vip-game-beginners-guide__promotions-list {
  list-style-type: disc;
  padding-left: 25px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-resources-mt68vip-game-beginners-guide__promotions-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources-mt68vip-game-beginners-guide__promotions-list li strong {
  color: var(--primary-color);
}

.page-resources-mt68vip-game-beginners-guide__promotions-list li a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__promotions-list li a:hover {
  text-decoration: underline;
}

.page-resources-mt68vip-game-beginners-guide__cta-center {
  text-align: center;
  margin-top: 30px;
}

/* Support and Security Section */
.page-resources-mt68vip-game-beginners-guide__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-resources-mt68vip-game-beginners-guide__sub-section-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-resources-mt68vip-game-beginners-guide__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-mt68vip-game-beginners-guide__contact-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.page-resources-mt68vip-game-beginners-guide__contact-list li strong {
  color: var(--primary-color);
}

.page-resources-mt68vip-game-beginners-guide__support-content a,
.page-resources-mt68vip-game-beginners-guide__security-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__support-content a:hover,
.page-resources-mt68vip-game-beginners-guide__security-content a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-resources-mt68vip-game-beginners-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-mt68vip-game-beginners-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-mt68vip-game-beginners-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-mt68vip-game-beginners-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-mt68vip-game-beginners-guide__faq-item.active .page-resources-mt68vip-game-beginners-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-mt68vip-game-beginners-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.page-resources-mt68vip-game-beginners-guide__faq-item.active .page-resources-mt68vip-game-beginners-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-resources-mt68vip-game-beginners-guide__faq-answer p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.page-resources-mt68vip-game-beginners-guide__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-resources-mt68vip-game-beginners-guide__faq-answer a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-resources-mt68vip-game-beginners-guide__btn-primary,
.page-resources-mt68vip-game-beginners-guide__btn-secondary,
.page-resources-mt68vip-game-beginners-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-mt68vip-game-beginners-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-resources-mt68vip-game-beginners-guide__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-resources-mt68vip-game-beginners-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-mt68vip-game-beginners-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-mt68vip-game-beginners-guide__btn-tertiary {
  background-color: var(--btn-login-color);
  color: var(--text-light);
  border: 2px solid var(--btn-login-color);
  font-size: 0.9em;
  padding: 8px 15px;
}

.page-resources-mt68vip-game-beginners-guide__btn-tertiary:hover {
  background-color: #c76707;
  border-color: #c76707;
}

/* General image styling for content area */
.page-resources-mt68vip-game-beginners-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-mt68vip-game-beginners-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-mt68vip-game-beginners-guide__section-title {
    font-size: 2em;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-content {
    padding-right: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__content-wrapper {
    grid-template-columns: 1fr;
  }

  .page-resources-mt68vip-game-beginners-guide__support-content,
  .page-resources-mt68vip-game-beginners-guide__security-content {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-resources-mt68vip-game-beginners-guide__hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: var(--header-offset, 120px) !important; /* Fallback if shared doesn't set body padding-top */
    padding-bottom: 40px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-content {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-image-wrapper {
    justify-content: center;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 产品展示图区域 */
  .page-resources-mt68vip-game-beginners-guide__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__game-card {
    padding: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__game-image {
    min-height: 180px;
  }

  /* 通用图片与容器 */
  .page-resources-mt68vip-game-beginners-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-resources-mt68vip-game-beginners-guide__container,
  .page-resources-mt68vip-game-beginners-guide__introduction-section,
  .page-resources-mt68vip-game-beginners-guide__games-section,
  .page-resources-mt68vip-game-beginners-guide__getting-started-section,
  .page-resources-mt68vip-game-beginners-guide__tips-section,
  .page-resources-mt68vip-game-beginners-guide__promotions-section,
  .page-resources-mt68vip-game-beginners-guide__support-security-section,
  .page-resources-mt68vip-game-beginners-guide__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-resources-mt68vip-game-beginners-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  /* 按钮与按钮容器 */
  .page-resources-mt68vip-game-beginners-guide__btn-primary,
  .page-resources-mt68vip-game-beginners-guide__btn-secondary,
  .page-resources-mt68vip-game-beginners-guide__btn-tertiary,
  .page-resources-mt68vip-game-beginners-guide a[class*="button"],
  .page-resources-mt68vip-game-beginners-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-mt68vip-game-beginners-guide__hero-buttons,
  .page-resources-mt68vip-game-beginners-guide__cta-buttons,
  .page-resources-mt68vip-game-beginners-guide__button-group,
  .page-resources-mt68vip-game-beginners-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  /* 其他内容模块 */
  .page-resources-mt68vip-game-beginners-guide__steps-grid,
  .page-resources-mt68vip-game-beginners-guide__tips-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__step-card,
  .page-resources-mt68vip-game-beginners-guide__tip-item {
    padding: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__promotions-list {
    padding-left: 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-mt68vip-game-beginners-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-mt68vip-game-beginners-guide__faq-item.active .page-resources-mt68vip-game-beginners-guide__faq-answer {
    padding: 10px 20px 20px;
  }
}