.page-index {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0A192F; /* Default background for the main content area */
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-index-section-description {
  font-size: 1.1em;
  color: #cccccc; /* Slightly lighter grey for descriptions */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3b53 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-hero-content {
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-index-hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-index-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index-hero-actions .page-index-btn {
  margin: 0 15px;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.page-index-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-index-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-hero-image img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(3px); /* Darken and blur background image */
  position: absolute;
  z-index: 0;
}

.page-index-features, .page-index-games, .page-index-strategies, .page-index-detail-pages, .page-index-responsible-gambling {
  background-color: #0A192F; /* Dark blue background for sections */
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-index-feature-grid, .page-index-game-grid, .page-index-strategy-grid, .page-index-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-feature-item, .page-index-game-item, .page-index-strategy-item, .page-index-detail-item {
  background-color: #1a2b42; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-feature-item:hover, .page-index-game-item:hover, .page-index-strategy-item:hover, .page-index-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700); /* Gold shadow for icons */
}

.page-index-feature-title, .page-index-game-title, .page-index-strategy-title, .page-index-detail-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-feature-text, .page-index-game-text, .page-index-strategy-text, .page-index-detail-description {
  font-size: 1em;
  color: #cccccc;
}

.page-index-game-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #FFD700; /* Gold border for game thumbnails */
}

.page-index-text-center {
  text-align: center;
}

.page-index-mt-40 {
  margin-top: 40px;
}

.page-index-promotions-cta {
  background: #FFD700; /* Gold background for CTA section */
  color: #0A192F; /* Dark blue text on gold */
  padding: 60px 0;
  text-align: center;
}

.page-index-flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-index-promotions-title {
  font-size: 2.8em;
  color: #0A192F; /* Dark blue title */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-index-promotions-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-index-btn-large {
  padding: 18px 45px;
  font-size: 1.2em;
  border-radius: 50px;
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-index-btn-large:hover {
  background-color: #1a2b42;
  color: #FFD700;
  border-color: #1a2b42;
}

.page-index-detail-title a {
  color: #FFD700; /* Gold for detail page titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-detail-title a:hover {
  color: #e6c200;
}

.page-index-btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
  margin-top: 15px;
  display: inline-block;
  background-color: #0A192F; /* Dark blue button for detail links */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-index-btn-small:hover {
  background-color: #1a2b42;
  border-color: #e6c200;
  color: #e6c200;
}

.page-index-responsible-gambling {
  background-color: #0A192F;
  padding: 60px 0;
  text-align: center;
}

.page-index-responsible-gambling-tip {
  font-size: 1.1em;
  color: #FFD700;
  margin-top: 20px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-index-hero-content {
    text-align: left;
    margin: 0;
  }

  .page-index-hero-actions {
    text-align: left;
  }

  .page-index-hero .page-index-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Ensure container is positioned for image */
    z-index: 1;
  }

  .page-index-hero-image {
    position: static;
    width: 50%;
    height: auto;
    margin-left: 50px;
    filter: none; /* Remove filter for better image quality on larger screens */
  }

  .page-index-hero-image img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none; /* Remove filter for better image quality on larger screens */
  }

  .page-index-promotions-cta .page-index-flex-center {
    flex-direction: row;
    text-align: left;
  }

  .page-index-promotions-content {
    flex: 1;
    padding-right: 30px;
  }

  .page-index-promotions-image {
    flex: 1;
    max-width: 400px;
  }

  .page-index-promotions-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 767px) {
  .page-index-hero {
    padding: 60px 0;
    min-height: 450px;
  }

  .page-index-hero-title {
    font-size: 2.5em;
  }

  .page-index-hero-description {
    font-size: 1em;
  }

  .page-index-hero-actions .page-index-btn {
    margin: 10px 5px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-section-title {
    font-size: 2em;
  }

  .page-index-section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-index-feature-grid, .page-index-game-grid, .page-index-strategy-grid, .page-index-detail-grid {
    grid-template-columns: 1fr;
  }

  .page-index-promotions-title {
    font-size: 2em;
  }

  .page-index-promotions-description {
    font-size: 1em;
  }

  .page-index-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-promotions-image {
    margin-top: 30px;
  }
}