.page-index {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A1A1A;
  line-height: 1.6;
}

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

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

.page-index__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('[GALLERY:hero:online_betting,luxury_casino,sports_betting,golden_light]') no-repeat center center/cover;
  color: #FFFFFF;
  padding: 20px;
}

.page-index__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-index__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #E5E5E5;
}

.page-index__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.page-index__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-index__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
}

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-index__btn--text {
  background: none;
  color: #FFD700;
  padding: 8px 0;
  font-size: 1em;
  border-bottom: 2px solid #FFD700;
  border-radius: 0;
}

.page-index__btn--text:hover {
  color: #E5C100;
  border-color: #E5C100;
}

.page-index__about {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-index__about-text {
  flex: 2;
  min-width: 300px;
  color: #E5E5E5;
}

.page-index__about-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-index__about-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-index__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index__services {
  padding: 80px 0;
  background-color: #222222;
}

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

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

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

.page-index__service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-index__service-description {
  color: #CCCCCC;
  margin-bottom: 25px;
  font-size: 1em;
}

.page-index__promotions {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-index__promotions-text {
  flex: 2;
  min-width: 300px;
  color: #E5E5E5;
}

.page-index__promotions-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-index__promotions-image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-index__promotions-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index__explore-more {
  padding: 80px 0;
  background-color: #222222;
}

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

.page-index__detail-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index__detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-index__detail-title a:hover {
  color: #E5C100;
}

.page-index__detail-description {
  color: #CCCCCC;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index__cta-sticky {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95); /* Slightly transparent dark background */
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 1000;
  border-top: 2px solid #FFD700;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__about-content, .page-index__promotions-content {
    flex-direction: column;
  }
  .page-index__about-text, .page-index__promotions-text {
    order: 2;
  }
  .page-index__about-image-wrapper, .page-index__promotions-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    height: 500px;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-subtitle {
    font-size: 1em;
  }
  .page-index__hero-actions {
    flex-direction: column;
  }
  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__cta-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index__hero {
    height: 400px;
  }
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index__cta-title {
    font-size: 1.2em;
  }
  .page-index__cta-actions {
    gap: 10px;
  }
}