.page-index-game-diversity {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index-game-diversity__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-game-diversity__heading {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for headings */
}

.page-index-game-diversity__description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-game-diversity__text-block {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f0f0f0;
  text-align: justify;
}

.page-index-game-diversity__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.page-index-game-diversity__btn-primary:hover {
  background: #e6c200;
  color: #6a0000;
}

.page-index-game-diversity__btn-secondary {
  display: inline-block;
  background: none;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  font-size: 16px;
}

.page-index-game-diversity__btn-secondary:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-index-game-diversity__dark-section {
  background: #8B0000;
  color: #ffffff;
}

.page-index-game-diversity__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-index-game-diversity__image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* HERO主图区域样式 */
.page-index-game-diversity__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared 已给 body 留白时用 0；若 shared 未给 body 留白则改为 var(--header-offset, 120px) */
  margin-top: 0;
}

.page-index-game-diversity__hero-container {
  position: relative;
  margin: 0 auto;
}

.page-index-game-diversity__hero-image {
  width: 100%;
  margin: 0;
}

.page-index-game-diversity__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* LOGO轮播区域样式 */
.page-index-game-diversity__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05); /* Light translucent background for logos */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-game-diversity__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-index-game-diversity__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* Disable user interaction for carousel movement */
}

.page-index-game-diversity__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index-game-diversity__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto; /* Allow interaction for the link inside */
}

.page-index-game-diversity__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-game-diversity__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  pointer-events: auto;
}

.page-index-game-diversity__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 游戏展示区域样式 */
.page-index-game-diversity__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #0d0d0d; /* Dark background to contrast with main brand color */
}

.page-index-game-diversity__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-index-game-diversity__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.page-index-game-diversity__featured-game-area {
  width: 100%;
}

.page-index-game-diversity__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 25px 0;
  color: #FFD700;
  text-align: left;
}

.page-index-game-diversity__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-diversity__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-game-diversity__featured-game-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-game-diversity__featured-game-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.page-index-game-diversity__featured-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-game-diversity__games-grid-area {
  width: 100%;
}

.page-index-game-diversity__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
}

.page-index-game-diversity__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #cccccc;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-index-game-diversity__games-tab:hover {
  color: #FFD700;
}

.page-index-game-diversity__games-tab.active {
  color: #FFD700;
  text-decoration: underline;
  text-decoration-color: #FFD700;
}

.page-index-game-diversity__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none;
}

.page-index-game-diversity__games-grid.active {
  display: grid;
}

.page-index-game-diversity__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-diversity__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-game-diversity__game-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index-game-diversity__game-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.page-index-game-diversity__game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-game-diversity__game-card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 10px 0;
  padding: 0 8px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Module 1: Intro Section */
.page-index-game-diversity__intro-section {
  padding: 80px 20px;
  background: #8B0000;
  color: #ffffff;
}

.page-index-game-diversity__intro-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__intro-section .page-index-game-diversity__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Module 2: Quick Access Links */
.page-index-game-diversity__quick-access-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #ffffff;
}

.page-index-game-diversity__quick-access-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__quick-access-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.page-index-game-diversity__link-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-game-diversity__link-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-index-game-diversity__link-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-index-game-diversity__link-description {
  font-size: 15px;
  color: #f0f0f0;
}

/* Module 3: Core Game/Service Intro */
.page-index-game-diversity__core-games-section {
  padding: 80px 20px;
  background: #8B0000;
  color: #ffffff;
}

.page-index-game-diversity__core-games-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__core-games-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__game-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-diversity__game-type-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-game-diversity__game-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-diversity__game-type-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-game-diversity__game-type-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-index-game-diversity__game-type-card p {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 20px 15px;
  margin: 0;
}

.page-index-game-diversity__game-type-card .page-index-game-diversity__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  box-sizing: border-box;
}

/* Module 4: Promotions */
.page-index-game-diversity__promotions-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #ffffff;
}

.page-index-game-diversity__promotions-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__promotions-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-diversity__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-game-diversity__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-diversity__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-game-diversity__promo-text {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
}

/* Module 5: Security & Customer Service */
.page-index-game-diversity__security-cs-section {
  padding: 80px 20px;
  background: #8B0000;
  color: #ffffff;
}

.page-index-game-diversity__security-cs-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__security-cs-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-diversity__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-game-diversity__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-diversity__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-game-diversity__feature-text {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
}

/* Module 6: FAQ */
.page-index-game-diversity__faq-section {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #ffffff;
}

.page-index-game-diversity__faq-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__faq-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-game-diversity__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-game-diversity__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #2a2a2a;
  color: #f0f0f0;
}

.page-index-game-diversity__faq-item.active .page-index-game-diversity__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-index-game-diversity__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a1a1a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-index-game-diversity__faq-question:hover {
  background: #2a2a2a;
}

.page-index-game-diversity__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-index-game-diversity__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-game-diversity__faq-item.active .page-index-game-diversity__faq-toggle {
  color: #ffffff;
}

/* Module 7: Latest Blog Content */
.page-index-game-diversity__blog-section {
  padding: 80px 20px;
  background: #8B0000;
  color: #ffffff;
}

.page-index-game-diversity__blog-section .page-index-game-diversity__heading {
  color: #FFD700;
}

.page-index-game-diversity__blog-section .page-index-game-diversity__description {
  color: #f0f0f0;
}

.page-index-game-diversity__blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-diversity__blog-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-index-game-diversity__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-game-diversity__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-game-diversity__blog-content {
  padding: 20px;
}

.page-index-game-diversity__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-index-game-diversity__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-game-diversity__blog-title a:hover {
  color: #e6c200;
}

.page-index-game-diversity__blog-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-index-game-diversity__blog-date {
  font-size: 14px;
  color: #cccccc;
  display: block;
}

/* Universal Image Responsive Styles */
.page-index-game-diversity img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Universal Button Responsive Styles */
.page-index-game-diversity__cta-button,
.page-index-game-diversity__btn-primary,
.page-index-game-diversity__btn-secondary,
.page-index-game-diversity a[class*="button"],
.page-index-game-diversity a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-game-diversity__cta-buttons,
.page-index-game-diversity__button-group,
.page-index-game-diversity__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Styles for Tablet (1024px) */
@media (max-width: 1024px) {
  .page-index-game-diversity__heading {
    font-size: 32px;
  }

  .page-index-game-diversity__description {
    font-size: 16px;
  }

  /* Games Section */
  .page-index-game-diversity__games-layout {
    grid-template-columns: 1fr;
  }

  .page-index-game-diversity__featured-game-title {
    text-align: center;
    margin-top: 20px;
  }

  .page-index-game-diversity__featured-game-image {
    height: 350px;
  }

  .page-index-game-diversity__games-tabs {
    justify-content: center;
  }

  .page-index-game-diversity__games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .page-index-game-diversity__game-card-image {
    height: 160px;
  }

  .page-index-game-diversity__game-card-title {
    font-size: 14px;
  }

  /* Quick Access */
  .page-index-game-diversity__links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Core Games */
  .page-index-game-diversity__game-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Promotions */
  .page-index-game-diversity__promotions-grid {
    grid-template-columns: 1fr;
  }

  /* Security & CS */
  .page-index-game-diversity__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog */
  .page-index-game-diversity__blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index-game-diversity__blog-card img {
    
  }
}

/* Responsive Styles for Mobile (768px) */
@media (max-width: 768px) {
  .page-index-game-diversity {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-game-diversity__container {
    padding: 0 15px;
  }

  .page-index-game-diversity__heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-index-game-diversity__description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-index-game-diversity__text-block {
    font-size: 15px;
  }

  /* HERO主图区域 */
  .page-index-game-diversity__hero-section {
    padding-top: 0 !important; /* Ensure no double padding if shared.css sets body padding */
  }

  .page-index-game-diversity__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* LOGO轮播区域 */
  .page-index-game-diversity__logo-carousel-section {
    padding: 20px 15px;
  }

  .page-index-game-diversity__logo-carousel {
    gap: 12px;
  }

  .page-index-game-diversity__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }

  .page-index-game-diversity__logo-item a {
    padding: 8px;
  }

  /* 游戏展示区域 */
  .page-index-game-diversity__games-section {
    padding: 40px 15px;
  }

  .page-index-game-diversity__games-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-index-game-diversity__featured-game-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-index-game-diversity__featured-game-image {
    height: 250px;
  }

  .page-index-game-diversity__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }

  .page-index-game-diversity__games-tab {
    font-size: 18px;
  }

  .page-index-game-diversity__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .page-index-game-diversity__game-card-image {
    height: 120px;
  }

  .page-index-game-diversity__game-card-title {
    font-size: 13px;
    margin: 8px 0 8px 0;
    padding: 0 5px;
  }

  /* Module 1: Intro Section */
  .page-index-game-diversity__intro-section {
    padding: 50px 15px;
  }

  /* Module 2: Quick Access Links */
  .page-index-game-diversity__quick-access-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__links-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-index-game-diversity__link-title {
    font-size: 20px;
  }

  .page-index-game-diversity__link-card {
    padding: 20px;
  }

  /* Module 3: Core Game/Service Intro */
  .page-index-game-diversity__core-games-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__game-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-game-diversity__game-type-card img {
    
  }

  .page-index-game-diversity__game-type-card h3 {
    font-size: 20px;
  }

  .page-index-game-diversity__game-type-card p {
    font-size: 14px;
  }

  /* Module 4: Promotions */
  .page-index-game-diversity__promotions-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-game-diversity__promo-title {
    font-size: 22px;
  }

  .page-index-game-diversity__promo-text {
    font-size: 15px;
  }

  /* Module 5: Security & Customer Service */
  .page-index-game-diversity__security-cs-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-game-diversity__feature-title {
    font-size: 22px;
  }

  .page-index-game-diversity__feature-text {
    font-size: 15px;
  }

  /* Module 6: FAQ */
  .page-index-game-diversity__faq-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__faq-list {
    margin-top: 30px;
  }

  .page-index-game-diversity__faq-question {
    padding: 18px 20px;
  }

  .page-index-game-diversity__faq-question h3 {
    font-size: 16px;
  }

  .page-index-game-diversity__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index-game-diversity__faq-item.active .page-index-game-diversity__faq-answer {
    padding: 15px 20px !important;
  }

  /* Module 7: Latest Blog Content */
  .page-index-game-diversity__blog-section {
    padding: 50px 15px;
  }

  .page-index-game-diversity__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-game-diversity__blog-card img {
    
  }

  .page-index-game-diversity__blog-title {
    font-size: 18px;
  }

  .page-index-game-diversity__blog-excerpt {
    font-size: 14px;
  }

  .page-index-game-diversity__blog-date {
    font-size: 13px;
  }

  /* Mobile Universal Image & Container Adaptations */
  .page-index-game-diversity img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-game-diversity__hero-section,
  .page-index-game-diversity__intro-section,
  .page-index-game-diversity__quick-access-section,
  .page-index-game-diversity__core-games-section,
  .page-index-game-diversity__promotions-section,
  .page-index-game-diversity__security-cs-section,
  .page-index-game-diversity__faq-section,
  .page-index-game-diversity__blog-section,
  .page-index-game-diversity__container,
  .page-index-game-diversity__links-grid,
  .page-index-game-diversity__game-types-grid,
  .page-index-game-diversity__promotions-grid,
  .page-index-game-diversity__features-grid,
  .page-index-game-diversity__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile Button Adaptations */
  .page-index-game-diversity__btn-primary,
  .page-index-game-diversity__btn-secondary,
  .page-index-game-diversity a[class*="button"],
  .page-index-game-diversity 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-index-game-diversity__cta-buttons,
  .page-index-game-diversity__button-group,
  .page-index-game-diversity__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }
}