.page-index {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Body background is dark */
}

.page-index__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 180px; /* Clearance for fixed header on desktop */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #8B0000, #4d0000); /* Dark red gradient for hero section background */
  color: #ffffff;
}

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

.page-index__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index__hero-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold text for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient for CTA */
  color: #000000; /* Black text for CTA */
  text-decoration: none;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-index__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #333333;
}

/* Game Leaderboard Section */
.page-index__game-leaderboard-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: #ffffff;
  text-align: center;
}

.page-index__page-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index__game-leaderboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-index__game-card {
  background: #1a1a1a; /* Dark card background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

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

.page-index__game-card-segment {
  padding: 0 20px;
  border-left: 1px solid #333;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-index__segment-1 {
  border-left: none;
  padding-left: 0;
  min-width: 150px;
  flex-shrink: 0;
  position: relative;
}

.page-index__segment-2 {
  flex: 1;
  text-align: center;
}

.page-index__segment-3 {
  min-width: 180px;
  flex-shrink: 0;
}

.page-index__segment-4 {
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 0;
}

.page-index__rank-badge {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-index__rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold */
}

.page-index__rank-2 {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0); /* Silver */
}

.page-index__rank-3 {
  background: linear-gradient(135deg, #CD7F32, #B87333); /* Bronze */
}

.page-index__rank-badge:not(.page-index__rank-1):not(.page-index__rank-2):not(.page-index__rank-3) {
  background: linear-gradient(135deg, #ff6b35, #ff8c42); /* Orange for 4+ */
}

.page-index__game-icon {
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index__game-name {
  font-size: 26px;
  font-weight: bold;
  color: #FFD700; /* Gold text for game name */
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-index__game-name-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-index__game-name-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-index__game-description {
  font-size: 15px;
  color: #f0f0f0;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-index__game-description a {
  color: #00BFFF; /* Bright blue for promo links in description */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__game-description a:hover {
  color: #008DCC;
  text-decoration: underline;
}

.page-index__game-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-index__stars {
  color: #FFD700; /* Gold stars */
  font-size: 20px;
  margin-right: 5px;
  font-weight: bold;
}

.page-index__rating-number {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.page-index__promotion-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-index__promotion-link {
  color: #00BFFF; /* Bright blue for promo link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index__promotion-link:hover {
  color: #008DCC;
  text-decoration: underline;
}

.page-index__hot-badge {
  background: #FF0000; /* Red for Hot badge */
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-index__cta-button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index__btn-download {
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #000000; /* Black text */
}

.page-index__btn-download:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: #333333;
}

.page-index__btn-review {
  background: #8B0000; /* Dark red */
  color: #ffffff;
}

.page-index__btn-review:hover {
  background: #B22222; /* Slightly lighter red */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Brand Review Content Section */
.page-index__review-content-section {
  padding: 60px 20px;
  background: #000; /* Dark background */
  color: #ffffff;
}

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

.page-index__review-content-card {
  background: #1a1a1a; /* Dark card background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 40px;
  border: 1px solid #333;
}

.page-index__review-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index__review-body {
  color: #f0f0f0;
  line-height: 1.7;
}

.page-index__review-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index__review-body p {
  margin-bottom: 16px;
  font-size: 17px;
}

/* Homepage Introduction Section */
.page-index__intro-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: #ffffff;
}

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

.page-index__intro-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index__intro-content {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 35px;
  border: 1px solid #333;
}

.page-index__intro-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-index__intro-content p a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-index__intro-content p a:hover {
  text-decoration: underline;
}

.page-index__intro-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index__intro-list {
  list-style: disc inside;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-index__intro-list strong {
  color: #FFD700;
}

/* Core Games/Services Section */
.page-index__games-services-section {
  padding: 60px 20px;
  background-color: #000; /* Dark background */
  color: #ffffff;
}

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

.page-index__games-services-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.page-index__game-card-large {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

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

.page-index__game-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-index__game-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  padding: 20px 20px 10px;
  text-align: center;
}

.page-index__game-card-description {
  font-size: 16px;
  color: #f0f0f0;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.page-index__game-card-description a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-index__game-card-description a:hover {
  text-decoration: underline;
}

.page-index__game-card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: linear-gradient(135deg, #8B0000, #B22222); /* Dark red gradient */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index__game-card-button:hover {
  background: linear-gradient(135deg, #B22222, #8B0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: #ffffff;
  text-align: center;
}

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

.page-index__promotions-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index__promotions-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-index__promo-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

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

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

.page-index__promo-card-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  padding: 15px 15px 8px;
}

.page-index__promo-card-text {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 15px 15px;
  line-height: 1.6;
}

.page-index__promo-card-text a {
  color: #00BFFF;
  text-decoration: none;
  font-weight: bold;
}

.page-index__promo-card-text a:hover {
  text-decoration: underline;
}

.page-index__promo-card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px 0;
  background: linear-gradient(135deg, #FFD700, #FFA500); /* Gold gradient */
  color: #000000;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index__promo-card-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  color: #333333;
}

.page-index__promotions-all-button-wrapper {
  text-align: center;
}

.page-index__promotions-all-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #8B0000, #B22222); /* Dark red gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index__promotions-all-button:hover {
  background: linear-gradient(135deg, #B22222, #8B0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Latest Blog Section */
.page-index__blog-section {
  padding: 60px 20px;
  background-color: #000; /* Dark background */
  color: #ffffff;
  text-align: center;
}

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

.page-index__blog-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index__blog-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.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: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

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

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

.page-index__blog-card-content {
  padding: 20px;
  text-align: left;
}

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

.page-index__blog-card-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__blog-card-link:hover {
  color: #FFA500;
  text-decoration: underline;
}

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

.page-index__blog-card-date {
  font-size: 14px;
  color: #888888;
}

.page-index__blog-all-button-wrapper {
  text-align: center;
}

.page-index__blog-all-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #8B0000, #B22222); /* Dark red gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index__blog-all-button:hover {
  background: linear-gradient(135deg, #B22222, #8B0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 36px;
  }
  .page-index__hero-description {
    font-size: 18px;
  }
  .page-index__cta-button {
    font-size: 20px;
    padding: 15px 35px;
  }
  .page-index__page-title, .page-index__intro-title, .page-index__games-services-title, .page-index__promotions-title, .page-index__blog-title {
    font-size: 30px;
  }
  .page-index__game-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .page-index__game-card-segment {
    border-left: none;
    padding: 15px 0;
    width: 100%;
    align-items: center;
  }
  .page-index__segment-1 {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    min-width: unset;
  }
  .page-index__rank-badge {
    position: static;
    margin-right: 10px;
  }
  .page-index__game-icon {
    margin-top: 0;
  }
  .page-index__game-name {
    font-size: 24px;
  }
  .page-index__game-description {
    font-size: 14px;
  }
  .page-index__segment-4 {
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
  }
  .page-index__cta-button {
    width: 48%;
    font-size: 14px;
    padding: 10px 12px;
  }
  .page-index__review-title {
    font-size: 28px;
  }
  .page-index__review-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding-top: 140px; /* Clearance for fixed header on mobile */
    padding-bottom: 40px;
  }
  .page-index__hero-title {
    font-size: 30px;
  }
  .page-index__hero-description {
    font-size: 16px;
  }
  .page-index__cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
  .page-index__page-title, .page-index__intro-title, .page-index__games-services-title, .page-index__promotions-title, .page-index__blog-title {
    font-size: 26px;
  }
  .page-index__game-leaderboard-section, .page-index__review-content-section, .page-index__intro-section, .page-index__games-services-section, .page-index__promotions-section, .page-index__blog-section {
    padding: 40px 15px;
  }
  .page-index__game-card {
    padding: 20px;
  }
  .page-index__rank-badge {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .page-index__game-icon {
    max-width: 80px;
  }
  .page-index__game-name {
    font-size: 20px;
  }
  .page-index__game-description {
    font-size: 13px;
    padding: 0 10px;
  }
  .page-index__stars {
    font-size: 18px;
  }
  .page-index__rating-number {
    font-size: 16px;
  }
  .page-index__promotion-link, .page-index__hot-badge {
    font-size: 12px;
  }
  .page-index__segment-4 {
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
  }
  .page-index__cta-button {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    white-space: normal;
    word-wrap: break-word;
    min-width: auto;
  }
  .page-index__review-content-card {
    padding: 25px;
  }
  .page-index__review-title {
    font-size: 24px;
  }
  .page-index__review-subtitle {
    font-size: 20px;
  }
  .page-index__review-body p {
    font-size: 16px;
  }
  .page-index__intro-content {
    padding: 25px;
  }
  .page-index__intro-content p, .page-index__intro-list {
    font-size: 16px;
  }
  .page-index__intro-subtitle {
    font-size: 20px;
  }
  .page-index__games-grid, .page-index__promotions-grid, .page-index__blog-grid {
    gap: 20px;
  }
  .page-index__game-card-image {
    height: 180px;
  }
  .page-index__game-card-title {
    font-size: 20px;
  }
  .page-index__game-card-description {
    font-size: 15px;
  }
  .page-index__game-card-button {
    font-size: 15px;
    padding: 10px 0;
  }
  .page-index__promo-card-image {
    height: 150px;
  }
  .page-index__promo-card-title {
    font-size: 18px;
  }
  .page-index__promo-card-text {
    font-size: 14px;
  }
  .page-index__promo-card-button {
    font-size: 14px;
  }
  .page-index__promotions-all-button, .page-index__blog-all-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-index__blog-card-image {
    height: 160px;
  }
  .page-index__blog-card-title {
    font-size: 18px;
  }
  .page-index__blog-card-excerpt {
    font-size: 14px;
  }
  .page-index__blog-card-date {
    font-size: 13px;
  }
}