.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f9f9f9; /* Light background */
}

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

.page-index__section-heading {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index__intro-description {
  font-size: 18px;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

/* HERO主图区域 */
.page-index__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;
  width: 100%;
  overflow: hidden;
}

.page-index__hero-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.page-index__hero-image {
  width: 100%;
  margin: 0;
}

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

/* LOGO轮播区域 */
.page-index__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #000000; /* Dark background for logos */
}

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

.page-index__logo-carousel {
  display: flex;
  gap: 15px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.page-index__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index__logo-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-index__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

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

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

/* 游戏展示区域 */
.page-index__games-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #eeeeee 100%);
}

.page-index__games-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

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

.page-index__featured-game-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #FFD700; /* 黄色文字 */
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.page-index__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.page-index__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.page-index__games-grid-area {
  width: 100%;
}

.page-index__games-tabs {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-start;
}

.page-index__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-index__games-tab:hover {
  color: #000000;
}

.page-index__games-tab.active {
  color: #FFD700; /* Vàng */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-index__games-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #FFD700;
  border-radius: 1.5px;
}

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

.page-index__games-grid.active {
  display: grid;
}

.page-index__game-card {
  width: 100%;
  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;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-index__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

/* 首页介绍 */
.page-index__intro-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-index__intro-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__intro-block {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-index__intro-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index__intro-heading {
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-index__intro-block p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* 快速访问链接 */
.page-index__quick-access-section {
  padding: 60px 20px;
  background-color: #000000;
}

.page-index__access-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-index__access-link {
  display: block;
  background: #333333;
  color: #ffffff;
  padding: 18px 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index__access-link:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* 核心游戏/服务介绍 */
.page-index__core-games-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.page-index__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__game-category-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #FFD700;
}

.page-index__game-category-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index__game-category-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index__category-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-index__game-category-item p {
  font-size: 15px;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* 优惠活动 */
.page-index__promotions-section {
  padding: 80px 20px;
  background-color: #000000;
}

.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__promo-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333333;
}

.page-index__promo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.page-index__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index__promo-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-index__promo-card p {
  font-size: 15px;
  color: #cccccc;
  padding: 0 20px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* 安全与客服 */
.page-index__security-support-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-index__security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index__security-card {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-index__security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-index__security-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.page-index__security-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.page-index__contact-cta {
  text-align: center;
}

/* FAQ常见问题区域 */
.page-index__faq-section {
  padding: 80px 20px;
  background-color: #f0f0f0;
}

.page-index__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #fcfcfc;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
}

.page-index__faq-item.active .page-index__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #fcfcfc;
  border-radius: 0 0 8px 8px;
}

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-index__faq-item.active .page-index__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-index__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index__faq-question:active {
  background: #eeeeee;
}

.page-index__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  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: 28px;
  height: 28px;
}

.page-index__faq-item.active .page-index__faq-toggle {
  color: #FFD700;
  transform: rotate(180deg);
}

/* 最新博客内容 */
.page-index__blog-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.page-index__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index__blog-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-index__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-index__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index__blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 20px 15px 10px 15px;
  line-height: 1.4;
}

.page-index__blog-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-index__blog-title a:hover {
  color: #FFD700;
}

.page-index__blog-summary {
  font-size: 15px;
  color: #666666;
  margin: 0 15px 15px 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-index__blog-date {
  font-size: 13px;
  color: #999999;
  display: block;
  margin: 0 15px 20px 15px;
}

.page-index__view-all-button {
  text-align: center;
  margin-top: 30px;
}

/* General image responsive styles */
.page-index img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* General button responsive styles */
.page-index__cta-button,
.page-index__btn-primary,
.page-index__btn-secondary,
.page-index a[class*="button"],
.page-index a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__cta-buttons,
.page-index__button-group,
.page-index__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* -------------------------------------- */
/* Mobile Responsive Styles (max-width: 768px) */
/* -------------------------------------- */
@media (max-width: 1024px) {
  .page-index__games-layout {
    grid-template-columns: 1fr;
  }
  
  .page-index__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index__featured-game-image {
    height: 400px;
  }

  .page-index__main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-index {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index__container {
    padding: 0 15px;
  }

  .page-index__section-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .page-index__section-heading::after {
    width: 60px;
    height: 3px;
  }

  .page-index__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-index__intro-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* HERO主图区域 */
  .page-index__hero-section {
    padding-top: 0 !important;
  }

  /* LOGO轮播区域 */
  .page-index__logo-carousel-section {
    padding: 20px 15px;
  }
  
  .page-index__logo-carousel {
    gap: 12px;
  }
  
  .page-index__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
  }
  
  .page-index__logo-item a {
    padding: 8px;
  }

  /* 游戏展示区域 */
  .page-index__games-section {
    padding: 40px 15px;
  }
  
  .page-index__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-index__featured-game-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .page-index__featured-game-image {
    height: 300px;
  }
  
  .page-index__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .page-index__games-tab {
    font-size: 16px;
  }
  
  .page-index__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .page-index__game-card-image {
    height: 150px;
  }
  
  .page-index__game-card-title {
    font-size: 13px;
    margin: 8px 0 10px 0;
    padding: 0 3px;
  }

  /* 首页介绍 */
  .page-index__intro-section {
    padding: 40px 15px;
  }

  .page-index__intro-content {
    gap: 20px;
  }

  .page-index__intro-block {
    padding: 25px;
  }

  .page-index__intro-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-index__intro-block p {
    font-size: 15px;
  }

  /* 快速访问链接 */
  .page-index__quick-access-section {
    padding: 40px 15px;
  }

  .page-index__access-links-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-index__access-link {
    font-size: 16px;
    padding: 15px 20px;
  }

  /* 核心游戏/服务介绍 */
  .page-index__core-games-section {
    padding: 40px 15px;
  }

  .page-index__game-categories {
    gap: 20px;
  }

  .page-index__game-category-item img {
    height: 200px;
  }

  .page-index__category-title {
    font-size: 18px;
  }

  .page-index__game-category-item p {
    font-size: 14px;
    padding: 0 15px;
  }

  .page-index__btn-secondary {
    padding: 8px 15px;
    font-size: 14px;
  }

  /* 优惠活动 */
  .page-index__promotions-section {
    padding: 40px 15px;
  }

  .page-index__promo-grid {
    gap: 20px;
  }

  .page-index__promo-card img {
    
  }

  .page-index__promo-title {
    font-size: 18px;
  }

  .page-index__promo-card p {
    font-size: 14px;
  }

  .page-index__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
  }

  /* 安全与客服 */
  .page-index__security-support-section {
    padding: 40px 15px;
  }

  .page-index__security-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-index__security-card {
    padding: 25px;
  }

  .page-index__security-card img {
    
    
    margin-bottom: 15px;
  }

  .page-index__card-title {
    font-size: 18px;
  }

  .page-index__security-card p {
    font-size: 14px;
  }

  /* FAQ常见问题区域 */
  .page-index__faq-section {
    padding: 40px 15px;
  }

  .page-index__faq-item {
    margin-bottom: 10px;
  }

  .page-index__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-index__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-index__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-index__faq-answer {
    padding: 0 15px;
    font-size: 14px;
  }
  
  .page-index__faq-item.active .page-index__faq-answer {
    padding: 15px !important;
  }

  /* 最新博客内容 */
  .page-index__blog-section {
    padding: 40px 15px;
  }

  .page-index__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-index__blog-card img {
    
  }

  .page-index__blog-title {
    font-size: 18px;
    margin: 15px 15px 8px 15px;
  }

  .page-index__blog-summary {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .page-index__blog-date {
    font-size: 12px;
  }

  /* General image responsive */
  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Exclude logo-item from general image width:100% */
  .page-index__logo-item img {
    width: 100%; /* Keeps it relative to its 80px parent */
    height: 100%;
  }

  /* All containers should have max-width: 100% */
  .page-index__hero-section, .page-index__logo-carousel-section, .page-index__games-section, .page-index__intro-section, .page-index__quick-access-section, .page-index__core-games-section, .page-index__promotions-section, .page-index__security-support-section, .page-index__faq-section, .page-index__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Button responsive */
  .page-index__cta-button,
  .page-index__btn-primary,
  .page-index__btn-secondary,
  .page-index a[class*="button"],
  .page-index 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__cta-buttons,
  .page-index__button-group,
  .page-index__btn-container,
  .page-index__access-links-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-index__access-links-grid {
    display: flex;
    flex-direction: column;
  }

  .page-index__game-category-item .page-index__btn-secondary {
    width: calc(100% - 30px); /* Adjust for padding of parent */
    margin: 0 15px;
  }

  .page-index__promo-card .page-index__btn-primary {
    width: calc(100% - 30px); /* Adjust for padding of parent */
    margin: 0 15px;
  }
}