.page-index-hot-games {
  color: #333333; /* Default text color for light body background */
  background-color: #f8f8f8;
}

.page-index-hot-games__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
  background-color: #000000; /* Use auxiliary color for hero background */
}

.page-index-hot-games__hero-container {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.page-index-hot-games__hero-image {
  width: 100%;
  margin: 0;
}

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

/* LOGO轮播区域样式 */
.page-index-hot-games__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background: #000000; /* Dark background for logos */
  color: #ffffff;
}

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

.page-index-hot-games__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-hot-games__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-index-hot-games__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-hot-games__logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(255, 215, 0, 0.5);
}

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

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

/* 游戏展示区域样式 */
.page-index-hot-games__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #0d0d0d; /* Dark background */
  color: #ffffff;
}

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

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

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

.page-index-hot-games__featured-game-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffd700; /* Yellow text */
  text-align: left;
}

.page-index-hot-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__featured-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-index-hot-games__games-grid-area {
  width: 100%;
}

.page-index-hot-games__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-index-hot-games__games-tab {
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #999999;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

.page-index-hot-games__games-tab:hover {
  color: #ffffff;
}

.page-index-hot-games__games-tab.active {
  color: #ffd700; /* Gold for active tab */
  text-decoration: underline;
}

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

.page-index-hot-games__games-grid.active {
  display: grid;
}

.page-index-hot-games__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-index-hot-games__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* Common styles for content sections */
.page-index-hot-games__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffd700;
}

.page-index-hot-games__section-description {
  font-size: 16px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-index-hot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Module 1: Homepage Introduction */
.page-index-hot-games__intro-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-hot-games__intro-section .page-index-hot-games__section-title {
  color: #000000;
}

.page-index-hot-games__intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games__feature-item img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games__feature-item h3 {
  font-size: 20px;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-hot-games__feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Module 2: Quick Access Links */
.page-index-hot-games__quick-access-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-index-hot-games__quick-access-section .page-index-hot-games__section-title {
  color: #ffd700;
}

.page-index-hot-games__quick-access-section .page-index-hot-games__section-description {
  color: #f0f0f0;
}

.page-index-hot-games__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__quick-link-card {
  display: block;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.page-index-hot-games__quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background-color: #2a2a2a;
}

.page-index-hot-games__quick-link-card img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games__quick-link-card h3 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 10px;
}

.page-index-hot-games__quick-link-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #cccccc;
}

/* Module 3: Core Game/Service Introduction */
.page-index-hot-games__core-games-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-hot-games__core-games-section .page-index-hot-games__section-title {
  color: #000000;
}

.page-index-hot-games__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__category-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-hot-games__category-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-index-hot-games__category-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index-hot-games__btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-index-hot-games__btn-secondary:hover {
  background-color: #ffd700;
  color: #000000;
  border-color: #ffd700;
}

/* Module 4: Promotional Activities */
.page-index-hot-games__promotions-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-index-hot-games__promotions-section .page-index-hot-games__section-title {
  color: #ffd700;
}

.page-index-hot-games__promotions-section .page-index-hot-games__section-description {
  color: #f0f0f0;
}

.page-index-hot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__promo-card {
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-hot-games__promo-card img {
  width: 100%;
  
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-hot-games__promo-card h3 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 10px;
  padding: 0 20px;
}

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

.page-index-hot-games__btn-primary {
  display: inline-block;
  background: #ffd700;
  color: #000000;
  border: 2px solid #ffd700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-hot-games__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
}

/* Module 5: Security and Customer Service */
.page-index-hot-games__security-support-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-hot-games__security-support-section .page-index-hot-games__section-title {
  color: #000000;
}

.page-index-hot-games__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games__info-card img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games__info-card h3 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-hot-games__info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-index-hot-games__text-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-hot-games__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Module 6: FAQ */
.page-index-hot-games__faq-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-index-hot-games__faq-section .page-index-hot-games__section-title {
  color: #ffd700;
}

.page-index-hot-games__faq-section .page-index-hot-games__section-description {
  color: #f0f0f0;
}

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

.page-index-hot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-hot-games__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 15px;
  opacity: 0;
}

.page-index-hot-games__faq-item.active .page-index-hot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 5px 5px;
  color: #cccccc;
}

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

.page-index-hot-games__faq-question:hover {
  background: #444444;
  border-color: #555555;
}

.page-index-hot-games__faq-question:active {
  background: #555555;
}

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

.page-index-hot-games__faq-toggle {
  font-size: 24px;
  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: 28px;
  height: 28px;
}

.page-index-hot-games__faq-item.active .page-index-hot-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Module 7: Latest Blog Content */
.page-index-hot-games__blog-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-index-hot-games__blog-section .page-index-hot-games__section-title {
  color: #000000;
}

.page-index-hot-games__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games__blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-index-hot-games__blog-card h3 {
  font-size: 20px;
  color: #000000;
  margin: 20px 20px 10px;
  line-height: 1.4;
}

.page-index-hot-games__blog-card h3 a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-hot-games__blog-card h3 a:hover {
  color: #ffd700;
}

.page-index-hot-games__blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 20px 15px;
}

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

.page-index-hot-games__button-container {
  text-align: center;
  margin-top: 50px;
}

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

/* General button responsiveness */
.page-index-hot-games__cta-button,
.page-index-hot-games__btn-primary,
.page-index-hot-games__btn-secondary,
.page-index-hot-games a[class*="button"],
.page-index-hot-games a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-hot-games__cta-buttons,
.page-index-hot-games__button-group,
.page-index-hot-games__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index-hot-games__games-layout {
    grid-template-columns: 1fr;
  }
  
  .page-index-hot-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index-hot-games__featured-game-image {
    height: 400px;
  }

  .page-index-hot-games__section-title {
    font-size: 28px;
  }

  .page-index-hot-games__intro-features,
  .page-index-hot-games__quick-links-grid,
  .page-index-hot-games__game-categories,
  .page-index-hot-games__promo-grid,
  .page-index-hot-games__info-grid,
  .page-index-hot-games__blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-index-hot-games__hero-section {
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
    margin-top: 0 !important;
  }
  
  .page-index-hot-games__hero-image img {
    width: 100% !important;
    height: auto !important;
  }

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

  /* 游戏展示区域 */
  .page-index-hot-games__games-section {
    padding: 40px 15px !important;
  }
  
  .page-index-hot-games__games-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .page-index-hot-games__featured-game-title {
    font-size: 20px !important;
    text-align: center !important;
  }
  
  .page-index-hot-games__featured-game-image {
    height: 300px !important;
  }
  
  .page-index-hot-games__games-tabs {
    gap: 15px !important;
    justify-content: center;
  }
  
  .page-index-hot-games__games-tab {
    font-size: 16px !important;
  }
  
  .page-index-hot-games__games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  .page-index-hot-games__game-card-image {
    height: 150px !important;
  }
  
  .page-index-hot-games__game-card-title {
    font-size: 13px !important;
    margin: 8px 0 0 0 !important;
    padding: 0 3px 8px !important;
  }

  /* 通用图片与容器 */
  .page-index-hot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-hot-games__container,
  .page-index-hot-games__intro-section,
  .page-index-hot-games__quick-access-section,
  .page-index-hot-games__core-games-section,
  .page-index-hot-games__promotions-section,
  .page-index-hot-games__security-support-section,
  .page-index-hot-games__faq-section,
  .page-index-hot-games__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* 按钮与按钮容器 */
  .page-index-hot-games__cta-button,
  .page-index-hot-games__btn-primary,
  .page-index-hot-games__btn-secondary,
  .page-index-hot-games a[class*="button"],
  .page-index-hot-games 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 !important;
    padding-right: 15px !important;
  }
  
  .page-index-hot-games__cta-buttons,
  .page-index-hot-games__button-group,
  .page-index-hot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  /* 其他内容模块 */
  .page-index-hot-games__section-title {
    font-size: 24px !important;
  }
  
  .page-index-hot-games__section-description {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }

  .page-index-hot-games__intro-section,
  .page-index-hot-games__quick-access-section,
  .page-index-hot-games__core-games-section,
  .page-index-hot-games__promotions-section,
  .page-index-hot-games__security-support-section,
  .page-index-hot-games__faq-section,
  .page-index-hot-games__blog-section {
    padding: 40px 0 !important;
  }

  .page-index-hot-games__feature-item,
  .page-index-hot-games__quick-link-card,
  .page-index-hot-games__category-card,
  .page-index-hot-games__promo-card,
  .page-index-hot-games__info-card,
  .page-index-hot-games__blog-card {
    padding: 20px !important;
  }

  .page-index-hot-games__feature-item h3,
  .page-index-hot-games__quick-link-card h3,
  .page-index-hot-games__category-card h3,
  .page-index-hot-games__promo-card h3,
  .page-index-hot-games__info-card h3,
  .page-index-hot-games__blog-card h3 {
    font-size: 18px !important;
  }

  .page-index-hot-games__feature-item p,
  .page-index-hot-games__quick-link-card p,
  .page-index-hot-games__category-card p,
  .page-index-hot-games__promo-card p,
  .page-index-hot-games__info-card p,
  .page-index-hot-games__blog-card p {
    font-size: 14px !important;
  }

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