:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --black-color: #000000;
}

.page-index {
  color: var(--text-color-light); /* Body background is dark, so main text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Video Section */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: var(--black-color);
}

.page-index__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event on parent <a> */
}

.page-index__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
  opacity: 1;
}

.page-index__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(38, 169, 224, 0.8); /* Using primary color */
  border-radius: 5px;
  white-space: nowrap;
}

.page-index__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-index__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--login-button-color); /* Using login color for prominence */
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-index__play-now-button:hover {
  background: #C46506; /* Slightly darker login color */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Title Section */
.page-index__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

.page-index__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-color);
}

.page-index__title-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

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

.page-index__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.page-index__btn-primary {
  background: var(--login-button-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-button-color);
}

.page-index__btn-primary:hover {
  background: #C46506;
  border-color: #C46506;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-index__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
.page-index__intro-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__intro-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-index__intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index__intro-text {
  flex: 1;
}

.page-index__intro-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-index__intro-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index__intro-button {
  margin-top: 20px;
}

/* Games Section */
.page-index__games-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__games-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index__games-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e0e0;
}

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

.page-index__game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-index__game-card-title {
  font-size: 24px;
  font-weight: 600;
  margin: 20px 20px 10px 20px;
}

.page-index__game-card-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-card-title a:hover {
  color: var(--secondary-color);
}

.page-index__game-card-text {
  font-size: 15px;
  color: #b0b0b0;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__game-card-link {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-color-light);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  transition: background-color 0.3s ease;
}

.page-index__game-card-link:hover {
  background: #1e87b6; /* Darker primary */
}

.page-index__game-cta .page-index__btn-primary {
  background: var(--login-button-color);
  border-color: var(--login-button-color);
}

.page-index__game-cta .page-index__btn-primary:hover {
  background: #C46506;
  border-color: #C46506;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__promotions-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index__promotions-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e0e0;
}

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

.page-index__promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__promotion-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index__promotion-card-title {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 20px 10px 20px;
  color: var(--primary-color);
}

.page-index__promotion-card-text {
  font-size: 15px;
  color: #b0b0b0;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index__promotion-card-link {
  display: inline-block;
  background: var(--login-button-color);
  color: var(--text-color-light);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  transition: background-color 0.3s ease;
}

.page-index__promotion-card-link:hover {
  background: #C46506;
}

/* Mobile App Section */
.page-index__mobile-app-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

.page-index__mobile-app-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap-reverse;
}

.page-index__mobile-app-content {
  flex: 1;
}

.page-index__mobile-app-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index__mobile-app-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index__mobile-app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index__mobile-app-features li {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #e0e0e0;
}

.page-index__mobile-app-features li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index__mobile-app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index__download-button {
  margin-top: 20px;
  background: var(--login-button-color);
  border-color: var(--login-button-color);
}

.page-index__download-button:hover {
  background: #C46506;
  border-color: #C46506;
}

/* FAQ Section */
.page-index__faq-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__faq-main-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

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

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  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);
  border-color: 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: var(--secondary-color);
  pointer-events: none; /* Prevents h3 from blocking click event */
}

.page-index__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevents icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-index__faq-item.active .page-index__faq-toggle {
  transform: rotate(180deg);
  color: var(--login-button-color);
}

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

.page-index__faq-item.active .page-index__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to ensure content expands */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-index__faq-answer p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-index__faq-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index__faq-link:hover {
  color: var(--login-button-color);
}

/* Brand Section */
.page-index__brand-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__brand-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-index__brand-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index__brand-text {
  flex: 1;
}

.page-index__brand-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index__brand-text p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-index__brand-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index__brand-features li {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-index__brand-features li strong {
  color: var(--secondary-color);
}

.page-index__brand-features li::before {
  content: '★';
  color: var(--login-button-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index__brand-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index__brand-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.page-index__blog-section {
  padding: 80px 20px;
  background-color: var(--black-color);
  color: var(--text-color-light);
}

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

.page-index__blog-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index__blog-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #e0e0e0;
}

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

.page-index__blog-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-index__blog-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index__blog-item-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-index__blog-item-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__blog-item-title a:hover {
  color: var(--login-button-color);
}

.page-index__blog-item-excerpt {
  font-size: 15px;
  color: #b0b0b0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index__blog-item-date {
  font-size: 14px;
  color: #777;
  display: block;
}

.page-index__blog-cta .page-index__btn-primary {
  background: var(--login-button-color);
  border-color: var(--login-button-color);
}

.page-index__blog-cta .page-index__btn-primary:hover {
  background: #C46506;
  border-color: #C46506;
}

/* General button styles for consistency */
.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__main-title {
    font-size: 42px;
  }
  .page-index__title-description {
    font-size: 18px;
  }
  .page-index__intro-content,
  .page-index__mobile-app-container,
  .page-index__brand-content {
    flex-direction: column;
  }
  .page-index__intro-text,
  .page-index__intro-image-wrapper,
  .page-index__mobile-app-content,
  .page-index__mobile-app-image-wrapper,
  .page-index__brand-text,
  .page-index__brand-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-index__game-card-image,
  .page-index__promotion-card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-index__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-index__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-index__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-index__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  .page-index__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain; /* Ensure video fits within bounds */
  }
  .page-index__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-index__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-index__video-click-hint {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }

  .page-index {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index__main-title {
    font-size: 32px;
  }
  .page-index__title-description {
    font-size: 16px;
  }
  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__cta-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-index__intro-title,
  .page-index__games-title,
  .page-index__promotions-title,
  .page-index__mobile-app-title,
  .page-index__faq-main-title,
  .page-index__brand-title,
  .page-index__blog-title {
    font-size: 30px;
  }
  .page-index__intro-text p,
  .page-index__games-description,
  .page-index__promotions-description,
  .page-index__mobile-app-description,
  .page-index__mobile-app-features li,
  .page-index__brand-text p,
  .page-index__blog-description {
    font-size: 16px;
  }
  .page-index__game-card-title,
  .page-index__promotion-card-title,
  .page-index__blog-item-title {
    font-size: 20px;
  }
  .page-index__faq-question h3 {
    font-size: 16px;
  }
  .page-index__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-index__faq-question,
  .page-index__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index__faq-item.active .page-index__faq-answer {
    padding: 15px !important;
  }
  .page-index__brand-subtitle {
    font-size: 24px;
  }

  /* General mobile image/video/container adaptations */
  .page-index img,
  .page-index video,
  .page-index__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index__section,
  .page-index__card,
  .page-index__container,
  .page-index__video-section,
  .page-index__video-container,
  .page-index__video-wrapper,
  .page-index__cta-buttons,
  .page-index__button-group,
  .page-index__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  .page-index__games-container,
  .page-index__promotions-container,
  .page-index__mobile-app-container,
  .page-index__faq-container,
  .page-index__brand-container,
  .page-index__blog-container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-index__game-categories,
  .page-index__promotions-grid,
  .page-index__blog-list {
    grid-template-columns: 1fr;
  }
  .page-index__game-card,
  .page-index__promotion-card,
  .page-index__blog-item {
    width: 100%;
  }
  .page-index__blog-item-image {
    height: 150px;
  }
  .page-index__intro-section,
  .page-index__games-section,
  .page-index__promotions-section,
  .page-index__mobile-app-section,
  .page-index__faq-section,
  .page-index__brand-section,
  .page-index__blog-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-index__main-title {
    font-size: 28px;
  }
  .page-index__title-description {
    font-size: 15px;
  }
  .page-index__play-now-button {
    font-size: 15px !important;
    padding: 10px 25px !important;
  }
  .page-index__intro-title,
  .page-index__games-title,
  .page-index__promotions-title,
  .page-index__mobile-app-title,
  .page-index__faq-main-title,
  .page-index__brand-title,
  .page-index__blog-title {
    font-size: 26px;
  }
  .page-index__brand-subtitle {
    font-size: 22px;
  }
  .page-index__game-card-title,
  .page-index__promotion-card-title,
  .page-index__blog-item-title {
    font-size: 18px;
  }
  .page-index__game-card-image,
  .page-index__promotion-card-image {
    height: 160px;
  }
  .page-index__blog-item-image {
    height: 120px;
  }
}