.page-index {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below the fixed header */
  background-color: #FFFFFF; /* Default background for content area */
  color: #000000; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-index__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-index__section-intro {
  font-size: 1.2em;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index__hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
}

.page-index__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for highlight */
}

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-index__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-index__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* About Section */
.page-index__about-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-index__feature-item:hover {
  transform: translateY(-5px);
}

.page-index__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index__feature-text {
  color: #333333;
  font-size: 1em;
}

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

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

.page-index__category-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__category-card:hover {
  transform: translateY(-5px);
}

.page-index__category-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-index__category-title {
  font-size: 1.8em;
  margin: 20px 0 10px;
}

.page-index__category-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__category-title a:hover {
  color: #FCBC45;
}

.page-index__category-text {
  color: #333333;
  padding: 0 20px 20px;
  font-size: 1em;
}

.page-index__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.page-index__button--play-now:hover {
  background-color: #e0a835;
}

.page-index__explore-more {
  color: #333333;
  font-size: 1.1em;
  text-align: left;
  margin-top: 40px;
}

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

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

.page-index__promo-image {
  flex: 1;
  min-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.page-index__promo-details {
  flex: 2;
  min-width: 300px;
}

.page-index__promo-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-index__promo-text {
  color: #333333;
  font-size: 1.1em;
  margin-bottom: 20px;
}

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

.page-index__promo-list li {
  margin-bottom: 10px;
  color: #333333;
  font-size: 1em;
  position: relative;
  padding-left: 25px;
}

.page-index__promo-list li::before {
  content: '✔';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index__promo-highlight {
  color: #000000;
}

.page-index__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
}

.page-index__button--view-all:hover {
  background-color: #333333;
}

.page-index__promo-terms {
  font-size: 0.9em;
  color: #666666;
  margin-top: 20px;
}

/* Mobile App Section */
.page-index__mobile-section {
  padding: 80px 0;
}

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

.page-index__mobile-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.page-index__mobile-details {
  flex: 2;
  min-width: 300px;
}

.page-index__mobile-text {
  color: #333333;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-index__button--download {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
}

.page-index__button--download:hover {
  background-color: #e0a835;
}

/* VIP Section */
.page-index__vip-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-index__vip-section .page-index__section-title,
.page-index__vip-section .page-index__section-intro {
  color: #FFFFFF;
}

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

.page-index__vip-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index__vip-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-index__vip-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index__vip-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-index__vip-text {
  color: #f0f0f0;
  font-size: 1em;
}

.page-index__vip-cta-text {
  color: #f0f0f0;
  font-size: 1.1em;
  text-align: left;
  margin-top: 40px;
}

.page-index__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  margin-top: 30px;
}

.page-index__button--learn-more:hover {
  background-color: #e0a835;
}

/* Responsible Gaming Section */
.page-index__responsible-gaming-section {
  padding: 80px 0;
}

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

.page-index__responsible-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 200px;
}

.page-index__responsible-details {
  flex: 2;
  min-width: 300px;
}

.page-index__responsible-text {
  color: #333333;
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* CTA Section */
.page-index__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-index__cta-section .page-index__section-title,
.page-index__cta-section .page-index__section-intro {
  color: #FFFFFF;
}

.page-index__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 40px;
}

.page-index__button--join-now:hover {
  background-color: #e0a835;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2.2em;
  }
  .page-index__section-intro {
    font-size: 1em;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__button {
    width: 100%;
  }
  .page-index__promo-content,
  .page-index__mobile-content,
  .page-index__responsible-content {
    flex-direction: column;
  }
  .page-index__promo-image,
  .page-index__mobile-image,
  .page-index__responsible-image {
    min-width: unset;
    width: 100%;
    height: auto; /* Allow height to adjust */
    max-width: 100% !important; 
  }
  .page-index__promo-details,
  .page-index__mobile-details,
  .page-index__responsible-details {
    min-width: unset;
    width: 100%;
  }
  .page-index__feature-image,
  .page-index__category-image,
  .page-index__vip-image {
    max-width: 100% !important;
    height: auto; /* Allow height to adjust */
    min-width: 200px;
    min-height: 200px;
  }
  .page-index__button--join-now {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__feature-item,
  .page-index__category-card,
  .page-index__vip-card {
    padding: 20px;
  }
}