.page-index {
  font-family: Arial, sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
}

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

.page-index__section-title {
  font-size: 36px;
  color: #8B0000; /* Dark red for titles */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

.page-index__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gradient background for visual appeal */
  min-height: 600px; /* Ensure hero section has a minimum height */
  overflow: hidden;
}

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

.page-index__hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* White text on dark/gradient background */
}

.page-index__main-heading {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.page-index__sub-heading {
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.page-index__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Primary brand color */
  color: #8B0000; /* Contrasting text color */
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-index__cta-button:hover {
  background: #8B0000; /* Secondary brand color on hover */
  color: #FFD700; /* Primary brand color for text on hover */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

/* Intro Section */
.page-index__intro-section {
  padding: 80px 0;
  background: #f8f8f8;
}

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

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

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

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

.page-index__feature-item h3 {
  font-size: 24px;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index__feature-item p {
  font-size: 16px;
  color: #666666;
}

/* Quick Access Section */
.page-index__quick-access-section {
  padding: 80px 0;
  background: #ffffff;
}

.page-index__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.page-index__access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index__access-button--primary {
  background: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-index__access-button--primary:hover {
  background: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-index__access-button--secondary {
  background: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-index__access-button--secondary:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-index__access-button--tertiary {
  background: #f0f0f0;
  color: #333333;
  border: 2px solid #f0f0f0;
}

.page-index__access-button--tertiary:hover {
  background: #e0e0e0;
  color: #000000;
  border-color: #e0e0e0;
}

.page-index__access-button--quaternary {
  background: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-index__access-button--quaternary:hover {
  background: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-index__access-button--quinary {
  background: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-index__access-button--quinary:hover {
  background: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

/* Games Section */
.page-index__games-section {
  padding: 80px 0;
  background: #f8f8f8;
}

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

.page-index__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index__game-card h3 {
  font-size: 22px;
  color: #8B0000;
  margin: 20px 15px 10px 15px;
  font-weight: 600;
}

.page-index__game-card h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-index__game-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px 15px;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.page-index__promo-card {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index__promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index__promo-card h3 {
  font-size: 20px;
  color: #8B0000;
  margin: 20px 15px 10px 15px;
  font-weight: 600;
}

.page-index__promo-card h3 a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-index__promo-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 15px 20px 15px;
}}