.page-index {
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-index__hero-section {
  position: relative;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0; /* shared đã cho body padding-top, nên hero dùng 0 */
  margin-top: 0;
  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;
}

.page-index__logo-carousel-section {
  width: 100%;
  padding: 30px 20px;
  background-color: #0d0d0d; /* Slightly lighter than body bg for subtle contrast */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-index__logo-carousel {
  display: flex;
  gap: 20px;
  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: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.page-index__logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-index__logo-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px;
  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-color: #121212;
}

.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 25px 0;
  color: #FFD700;
  text-align: left;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.page-index__featured-game {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__featured-game:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.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, transform 0.2s ease;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}

.page-index__games-tab:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.page-index__games-tab.active {
  color: #CC0000;
  text-decoration: underline;
  text-decoration-color: #CC0000;
  text-underline-offset: 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: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.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: 15px;
  font-weight: 600;
  margin: 12px 0 10px 0;
  padding: 0 8px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.4;
}

.page-index__intro-section {
  padding: 80px 20px;
  text-align: center;
}

.page-index__intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__intro-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-index__intro-description {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.page-index__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index__feature-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index__feature-item h3 {
  font-size: 22px;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-index__feature-item p {
  font-size: 15px;
  color: #cccccc;
}

.page-index__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index__btn-primary,
.page-index__btn-secondary {
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
}

.page-index__btn-primary {
  background: #CC0000;
  color: #ffffff;
  border-color: #CC0000;
}

.page-index__btn-primary:hover {
  background: #FFD700;
  color: #121212;
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index__btn-secondary {
  background: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-index__btn-secondary:hover {
  background: #FFD700;
  color: #121212;
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index__quick-access-section {
  padding: 80px 20px;
  background-color: #121212;
}

.page-index__quick-access-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__quick-access-title {
  font-size: 32px;
  color: #CC0000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__quick-access-description {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.page-index__link-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index__link-card h3 {
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index__link-button {
  display: inline-block;
  padding: 12px 25px;
  background: #CC0000;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index__link-button:hover {
  background: #FFD700;
  color: #121212;
  transform: translateY(-2px);
}

.page-index__core-games-section {
  padding: 80px 20px;
}

.page-index__core-games-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__core-games-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-index__core-games-description {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index__category-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index__category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index__category-item h3 {
  font-size: 22px;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-index__category-item p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-index__category-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #121212;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index__category-button:hover {
  background: #CC0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-index__promotions-section {
  padding: 80px 20px;
  background-color: #121212;
}

.page-index__promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__promotions-title {
  font-size: 32px;
  color: #CC0000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__promotions-description {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.page-index__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index__promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index__promo-card h3 {
  font-size: 20px;
  color: #FFD700;
  margin: 20px 25px 15px;
  text-align: left;
}

.page-index__promo-card p {
  font-size: 15px;
  color: #cccccc;
  margin: 0 25px 25px;
  text-align: left;
}

.page-index__promo-button {
  display: inline-block;
  padding: 10px 20px;
  background: #CC0000;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.page-index__promo-button:hover {
  background: #FFD700;
  color: #121212;
  transform: translateY(-2px);
}

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

.page-index__safety-support-section {
  padding: 80px 20px;
}

.page-index__safety-support-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__safety-support-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-index__safety-support-description {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.page-index__support-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__support-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index__support-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-index__support-item h3 {
  font-size: 22px;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-index__support-item p {
  font-size: 15px;
  color: #cccccc;
}

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

.page-index__faq-section {
  padding: 80px 20px;
  background-color: #121212;
}

.page-index__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-index__faq-title {
  font-size: 32px;
  color: #CC0000;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-index__faq-description {
  font-size: 17px;
  color: #cccccc;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__faq-list {
  margin-top: 30px;
}

.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-index__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

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

.page-index__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: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

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

.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 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-index__faq-answer p {
  font-size: 16px;
  color: #cccccc;
  margin: 0;
}

.page-index__blog-section {
  padding: 80px 20px;
}

.page-index__blog-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index__blog-title {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-index__blog-description {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index__blog-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-index__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-index__blog-card h3 {
  font-size: 18px;
  color: #CC0000;
  margin: 20px 20px 10px;
  line-height: 1.4;
}

.page-index__blog-card h3 a {
  color: #CC0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-index__blog-card p {
  font-size: 14px;
  color: #cccccc;
  margin: 0 20px 20px;
}

.page-index__blog-readmore {
  display: inline-block;
  padding: 8px 15px;
  background: #FFD700;
  color: #121212;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 20px 20px;
}

.page-index__blog-readmore:hover {
  background: #CC0000;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-index__blog-cta {
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .page-index__intro-features,
  .page-index__game-categories,
  .page-index__promo-grid,
  .page-index__support-grid,
  .page-index__blog-grid {
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .page-index__games-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .page-index__games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .page-index__intro-features,
  .page-index__game-categories,
  .page-index__support-grid,
  .page-index__blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .page-index__links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-index__promo-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-index img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index__section,
  .page-index__container,
  .page-index__intro-container,
  .page-index__quick-access-container,
  .page-index__core-games-container,
  .page-index__promotions-container,
  .page-index__safety-support-container,
  .page-index__faq-container,
  .page-index__blog-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index__hero-section {
    padding-top: 0 !important;
  }

  .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__featured-game-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

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

  .page-index__games-tabs {
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .page-index__games-tab {
    font-size: 17px;
  }

  .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: 10px 0 8px 0;
    padding: 0 5px;
  }

  .page-index__intro-section,
  .page-index__quick-access-section,
  .page-index__core-games-section,
  .page-index__promotions-section,
  .page-index__safety-support-section,
  .page-index__faq-section,
  .page-index__blog-section {
    padding: 40px 15px;
  }

  .page-index__intro-title,
  .page-index__core-games-title,
  .page-index__safety-support-title,
  .page-index__blog-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .page-index__quick-access-title,
  .page-index__promotions-title,
  .page-index__faq-title {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .page-index__intro-description,
  .page-index__quick-access-description,
  .page-index__core-games-description,
  .page-index__promotions-description,
  .page-index__safety-support-description,
  .page-index__faq-description,
  .page-index__blog-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-index__intro-features,
  .page-index__game-categories,
  .page-index__support-grid,
  .page-index__blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .page-index__feature-item img,
  .page-index__category-item img,
  .page-index__support-item img,
  .page-index__blog-card img {
    
  }

  .page-index__feature-item h3,
  .page-index__category-item h3,
  .page-index__support-item h3 {
    font-size: 20px;
  }
  
  .page-index__links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-index__promo-card img {
    height: 200px;
  }

  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .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__faq-question {
    padding: 15px 20px;
  }
  
  .page-index__faq-question h3 {
    font-size: 16px;
  }
  
  .page-index__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  
  .page-index__faq-answer {
    padding: 0 20px;
  }
  
  .page-index__faq-item.active .page-index__faq-answer {
    padding: 18px 20px !important;
  }

  .page-index__blog-card h3 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .page-index__games-grid {
    grid-template-columns: 1fr;
  }
}