.page-index {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #001a33; /* Darker blue for overall background */
}

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

.page-index__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-index__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__brand-highlight {
  color: #FFD700;
}

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

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

.page-index__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.page-index__btn--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #003366;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-index__btn--download {
  background-color: #DC143C; /* Accent red for download */
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-index__btn--download:hover {
  background-color: #c01234;
  border-color: #c01234;
  transform: translateY(-2px);
}

.page-index__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  overflow: hidden;
}

.page-index__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.05);
}

.page-index__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-index__about, .page-index__features, .page-index__promo, .page-index__games, .page-index__responsible-gambling, .page-index__detail-pages {
  padding: 80px 0;
  background-color: #002244; /* Slightly lighter blue for sections */
  margin-bottom: 20px;
}

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

.page-index__about-text {
  flex: 1;
  text-align: justify;
  color: #e0e0e0;
}

.page-index__about-text p {
  margin-bottom: 15px;
}

.page-index__about-image-wrapper {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index__about-image {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.page-index__feature-item:hover, .page-index__promo-card:hover, .page-index__game-item:hover, .page-index__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index__feature-heading, .page-index__card-title, .page-index__game-heading, .page-index__card-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__card-heading a {
  color: #FFD700;
  text-decoration: none;
}

.page-index__card-heading a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-index__promo-description, .page-index__games-description, .page-index__detail-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-index__promo-image, .page-index__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  background-color: #DC143C; /* Accent red for small CTAs */
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-index__btn--small:hover {
  background-color: #c01234;
  border-color: #c01234;
}

.page-index__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index__btn--outline:hover {
  background-color: #FFD700;
  color: #003366;
}

.page-index__cta-banner {
  background: linear-gradient(90deg, #003366, #001a33);
  padding: 60px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
  border-bottom: 5px solid #FFD700;
}

.page-index__cta-content {
  max-width: 900px;
}

.page-index__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-index__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-index__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #DC143C;
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-index__btn--large:hover {
  background-color: #c01234;
  border-color: #c01234;
  transform: scale(1.05);
}

.page-index__responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__responsible-gambling li {
  background-color: #003366;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index__responsible-gambling p {
  color: #e0e0e0;
  margin-bottom: 10px;
}

.page-index__responsible-gambling strong {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__about-content {
    flex-direction: column;
  }
  .page-index__about-image-wrapper {
    max-width: 80%;
  }
  .page-index__feature-grid, .page-index__game-grid, .page-index__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 60px 0;
    min-height: 500px;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__about, .page-index__features, .page-index__promo, .page-index__games, .page-index__responsible-gambling, .page-index__detail-pages {
    padding: 60px 0;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__cta-title {
    font-size: 1.8em;
  }
  .page-index__cta-description {
    font-size: 0.95em;
  }
  .page-index__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index__promo-image, .page-index__game-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index__about-image-wrapper {
    max-width: 95%;
  }
  .page-index__feature-grid, .page-index__game-grid, .page-index__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-index__feature-item, .page-index__promo-card, .page-index__game-item, .page-index__detail-card {
    padding: 20px;
  }
  .page-index__cta-title {
    font-size: 1.5em;
  }
  .page-index__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index__promo-description, .page-index__games-description, .page-index__detail-description {
    font-size: 0.9em;
  }
  .page-index__responsible-gambling li {
    padding: 15px;
  }
}