/* style/slot-games.css */

/* Căn chỉnh padding-top cho nội dung chính để tránh bị che bởi header cố định */
.page-slot-games {
  padding-top: 0; /* Hero section will handle this */
  color: #ffffff; /* Default text color for dark body background */
}

/* 🚨 Desktop HERO主图区域样式（必须严格遵守） */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 120px; /* Adjust for fixed header on desktop */
}

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

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

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

/* 🚨 Mobile HERO主图区域响应式设计（必须严格遵守） */
@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 100px; /* Adjust for fixed header on mobile */
  }
  
  .page-slot-games__hero-image img {
    width: 100%;
    height: auto;
  }
}

/* 🚨 LOGO轮播区域样式（必须严格遵守） */
.page-slot-games__logo-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background: #0d0d0d; /* Slightly lighter than body for contrast */
  box-sizing: border-box;
}

.page-slot-games__logo-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.page-slot-games__logo-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  /* 🚨 必须隐藏滚动条 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 10px 0;
  /* 禁止用户选择文本和拖拽 */
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none; /* 禁止用户交互 */
  box-sizing: border-box;
}

/* 🚨 必须隐藏滚动条（Chrome, Safari, Opera） */
.page-slot-games__logo-carousel::-webkit-scrollbar {
  display: none;
}

.page-slot-games__logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Cho phép logo-item có thể click */
  pointer-events: auto;
  box-sizing: border-box;
}

.page-slot-games__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-slot-games__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  box-sizing: border-box;
  /* Cho phép liên kết có thể click */
  pointer-events: auto;
}

.page-slot-games__logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-width: 100%;
  height: auto;
}

/* 🚨 Mobile LOGO轮播区域响应式设计（必须严格遵守） */
@media (max-width: 768px) {
  .page-slot-games__logo-carousel-section {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__logo-item {
    width: 150px;
    height: 150px;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__logo-carousel {
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__logo-carousel-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* 🚨 游戏展示区域样式（必须严格遵守） */
.page-slot-games__games-section {
  width: 100%;
  padding: 60px 20px;
  background: #000000;
  box-sizing: border-box;
}

.page-slot-games__games-container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games__games-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
  box-sizing: border-box;
}

/* Left side big card area */
.page-slot-games__featured-game-area {
  width: 100%;
  box-sizing: border-box;
}

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

.page-slot-games__featured-game {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

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

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

.page-slot-games__featured-game-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-sizing: border-box;
}

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

/* Right side grid area */
.page-slot-games__games-grid-area {
  width: 100%;
  box-sizing: border-box;
}

/* Tabs */
.page-slot-games__games-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.page-slot-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-slot-games__games-tab:hover {
  color: #ffffff;
}

.page-slot-games__games-tab.active {
  color: #B22222; /* Main brand color */
  text-decoration: underline;
}

.page-slot-games__games-tab.active + .page-slot-games__games-tab {
  color: #ffffff; /* Ensure next tab is visible */
}

/* Game grid */
.page-slot-games__games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: none; /* Hidden by default */
  box-sizing: border-box;
}

.page-slot-games__games-grid.active {
  display: grid; /* Active grid will be displayed */
}

.page-slot-games__game-card {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

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

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

.page-slot-games__game-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}

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

/* 🚨 Game card title style (must be single line) */
.page-slot-games__game-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  padding: 0 5px 10px 5px; /* Add bottom padding */
  color: #ffffff; /* Light text color for dark background */
  /* 🚨 Must ensure text is on one line, no wrap */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

/* 🚨 Mobile Game Display responsive design (must strictly follow) */
@media (max-width: 1024px) {
  .page-slot-games__games-layout {
    grid-template-columns: 1fr;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__games-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__games-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__games-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__games-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__featured-game-title {
    font-size: 20px;
  }
  
  .page-slot-games__featured-game-image {
    height: 300px;
  }
  
  .page-slot-games__games-tabs {
    gap: 15px;
  }
  
  .page-slot-games__games-tab {
    font-size: 16px;
  }
  
  .page-slot-games__games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games__game-card-image {
    height: 150px;
  }
  
  .page-slot-games__game-card-title {
    font-size: 13px;
    margin: 8px 0 0 0;
    padding: 0 3px 8px 3px;
  }
  .page-slot-games__featured-game-area, .page-slot-games__games-grid-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* General Section Styles */
.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-slot-games__text-block {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0;
}

.page-slot-games__text-block a {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
}

.page-slot-games__text-block a:hover {
  color: #B22222;
}

.page-slot-games__btn-primary {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 15px 30px;
  background: #B22222;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slot-games__btn-primary:hover {
  background: #FFD700;
  color: #000000; /* Black text on gold hover */
  transform: translateY(-3px);
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #000000; /* Black text on gold */
  border: 2px solid #FFD700;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-slot-games__btn-secondary:hover {
  background: #B22222;
  color: #ffffff; /* White text on main color hover */
  border-color: #B22222;
}

/* Section: Intro */
.page-slot-games__intro-section {
  padding: 80px 0;
  background: #000000;
}

.page-slot-games__dark-section {
  background: #0d0d0d;
  color: #ffffff; /* Light text for dark background */
}

/* Section: Quick Access */
.page-slot-games__quick-access-section {
  padding: 60px 0;
  background: #000000;
}

.page-slot-games__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-slot-games__quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__quick-link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.page-slot-games__quick-link-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

.page-slot-games__quick-link-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* Section: Core Games */
.page-slot-games__core-games-section {
  padding: 80px 0;
  background: #0d0d0d;
}

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

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

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

.page-slot-games__feature-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.page-slot-games__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-slot-games__feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Section: Promotions */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background: #000000;
}

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

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

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

.page-slot-games__promo-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.page-slot-games__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #B22222;
}

.page-slot-games__promo-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Section: Safety & Support */
.page-slot-games__safety-support-section {
  padding: 80px 0;
  background: #0d0d0d;
}

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

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

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

.page-slot-games__info-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.page-slot-games__info-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-slot-games__info-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Section: FAQ */
.page-slot-games__faq-section {
  padding: 80px 0;
  background: #000000;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

/* FAQ container style */
.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

/* FAQ default state - answer hidden */
.page-slot-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;
  padding: 0 15px;
  opacity: 0;
}

/* FAQ expanded state - 🚨 Use !important and sufficiently large max-height to ensure expansion */
.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important; /* 🚨 Use !important for priority, value large enough to contain any content */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer a:hover {
  color: #B22222;
}

/* Question style */
.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-slot-games__faq-question:active {
  background: rgba(255, 255, 255, 0.15);
}

/* Question title style */
.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 tag from blocking click event */
  color: #ffffff;
}

/* Toggle icon */
.page-slot-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; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #B22222;
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

/* Mobile adaptation */
@media (max-width: 768px) {
  .page-slot-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-slot-games__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-slot-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-slot-games__faq-answer {
    padding: 0 15px;
  }
  
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }
  .page-slot-games__faq-section, .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Section: Blog */
.page-slot-games__blog-section {
  padding: 80px 0;
  background: #0d0d0d;
}

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

.page-slot-games__blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid 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;
}

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

.page-slot-games__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
}

.page-slot-games__blog-content {
  padding: 20px;
}

.page-slot-games__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-slot-games__blog-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games__blog-title a:hover {
  color: #B22222;
  text-decoration: underline;
}

.page-slot-games__blog-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-slot-games__blog-date {
  font-size: 13px;
  color: #999999;
}

/* Responsive adjustments for general sections */
@media (max-width: 1024px) {
  .page-slot-games__section-title {
    font-size: 28px;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-slot-games__intro-section, .page-slot-games__quick-access-section, 
  .page-slot-games__core-games-section, .page-slot-games__promotions-section, 
  .page-slot-games__safety-support-section, .page-slot-games__blog-section {
    padding: 50px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__text-block {
    font-size: 15px;
  }
  .page-slot-games__btn-primary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-slot-games__quick-link-card img {
    width: 80px;
    height: 80px;
  }
  .page-slot-games__quick-link-text {
    font-size: 16px;
  }
  .page-slot-games__feature-card img, .page-slot-games__info-card img {
    width: 100px;
    height: 100px;
  }
  .page-slot-games__feature-title, .page-slot-games__promo-title, .page-slot-games__info-title {
    font-size: 20px;
  }
  .page-slot-games__promo-card img {
    width: 150px;
    height: 150px;
  }
  .page-slot-games__blog-card img {
    height: 150px;
  }
  .page-slot-games__blog-title {
    font-size: 18px;
  }
  .page-slot-games__blog-excerpt {
    font-size: 14px;
  }
  .page-slot-games__game-features-grid, .page-slot-games__promo-grid, .page-slot-games__info-grid, .page-slot-games__blog-grid {
    gap: 20px;
  }
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Ensure all images are responsive */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__section, .page-slot-games__card, .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}