.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark backgrounds */
  background-color: #0A2342; /* Main dark background */
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  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: #FFD700;
  border-radius: 2px;
}

.page-index-section-text {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-center-button {
  text-align: center;
  margin-top: 40px;
}

/* Buttons */
.page-index-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

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

.page-index-btn-primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #000;
  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: #0A2342; /* Dark blue text on gold */
  transform: translateY(-3px);
}

.page-index-btn-small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-index-btn-large {
  padding: 18px 40px;
  font-size: 1.25em;
}

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

.page-index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_blue,gold_accents]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 1;
}

.page-index-hero > .page-index-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.page-index-hero-content {
  flex: 1;
}

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

.page-index-hero-description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.5;
}

.page-index-hero-actions .page-index-btn {
  min-width: 200px;
}

.page-index-hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.page-index-hero-image:hover {
  transform: scale(1.02);
}

/* Intro Section */
.page-index-intro {
  padding: 60px 0;
  background-color: #0A2342;
}

/* Advantages Section */
.page-index-advantages {
  padding: 60px 0;
  background-color: #1a3a5e; /* Slightly lighter dark blue */
}

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

.page-index-advantage-item {
  background-color: #0A2342;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #2e4d72;
}

.page-index-advantage-item:hover {
  transform: translateY(-10px);
  background-color: #1a3a5e;
}

.page-index-advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-advantage-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-advantage-description {
  font-size: 1em;
  color: #c0c0c0;
}

/* Games Showcase Section */
.page-index-games-showcase {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-index-game-item {
  background-color: #1a3a5e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-game-item:hover {
  transform: translateY(-10px);
}

.page-index-game-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-index-game-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

/* Offers Section */
.page-index-offers-exclusive {
  padding: 80px 0;
  background-color: #1a3a5e;
}

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

.page-index-offer-item {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #2e4d72;
}

.page-index-offer-item:hover {
  transform: translateY(-10px);
}

.page-index-offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-offer-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-index-offer-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

/* Mobile App Section */
.page-index-mobile-app {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-mobile-app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-index-mobile-app-content {
  flex: 1;
  min-width: 300px;
}

.page-index-mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.page-index-mobile-app-image:hover {
  transform: scale(1.02);
}

.page-index-app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-index-app-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-index-icon-check {
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-app-actions .page-index-btn {
  min-width: 180px;
}

/* Register Guide Section */
.page-index-register-guide {
  padding: 80px 0;
  background-color: #1a3a5e;
}

.page-index-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-steps li {
  background-color: #0A2342;
  border-left: 5px solid #FFD700;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-index-steps li:hover {
  transform: translateX(10px);
}

.page-index-steps li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

/* Security & Credibility Section */
.page-index-security-credibility {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-index-security-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse; /* Image on right, text on left for desktop */
}

.page-index-security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-security-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

.page-index-security-image:hover {
  transform: scale(1.02);
}

.page-index-security-content {
  flex: 1;
  min-width: 300px;
}

.page-index-security-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-security-list li {
  background-color: #1a3a5e;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  color: #e0e0e0;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-security-list li strong {
  color: #FFD700;
}

.page-index-icon-shield, .page-index-icon-lock, .page-index-icon-fairplay, .page-index-icon-support, .page-index-icon-responsible {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

/* News & Updates Section */
.page-index-news-updates {
  padding: 80px 0;
  background-color: #1a3a5e;
}

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

.page-index-news-item {
  background-color: #0A2342;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 1px solid #2e4d72;
}

.page-index-news-item:hover {
  transform: translateY(-10px);
}

.page-index-news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-index-news-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 20px 10px;
}

.page-index-news-description {
  font-size: 1em;
  color: #c0c0c0;
  padding: 0 20px 20px;
}

/* Detail Pages List Section */
.page-index-detail-pages-list {
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-index-detail-item {
  background-color: #1a3a5e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 1px solid #2e4d72;
}

.page-index-detail-item:hover {
  transform: translateY(-10px);
}

.page-index-detail-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-detail-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-index-detail-description {
  font-size: 0.95em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

/* Final CTA Section */
.page-index-cta-final {
  padding: 80px 0;
  background: linear-gradient(45deg, #0A2342, #1a3a5e);
  text-align: center;
}

.page-index-cta-final .page-index-section-title {
  color: #FFD700;
}

.page-index-cta-final .page-index-section-text {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Font Awesome Icons (assuming shared.css or global setup includes it) */
.page-index-icon-check::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.page-index-icon-shield::before {
    content: '\f132'; /* Font Awesome shield icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.page-index-icon-lock::before {
    content: '\f023'; /* Font Awesome lock icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.page-index-icon-fairplay::before {
    content: '\f0e7'; /* Font Awesome lightning bolt (representing speed/fairness) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.page-index-icon-support::before {
    content: '\f059'; /* Font Awesome question circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.page-index-icon-responsible::before {
    content: '\f554'; /* Font Awesome hand holding heart (representing care/responsibility) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hero > .page-index-container,
  .page-index-mobile-app-flex,
  .page-index-security-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-index-hero-content,
  .page-index-mobile-app-content,
  .page-index-security-content {
    text-align: center;
  }

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

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

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

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

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

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

  .page-index-btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

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

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

  .page-index-section-text {
    font-size: 0.95em;
  }

  .page-index-advantage-title,
  .page-index-game-title,
  .page-index-offer-title,
  .page-index-news-title {
    font-size: 1.5em;
  }

  .page-index-detail-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-hero-title {
    font-size: 2em;
  }

  .page-index-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-index-btn {
    width: 90%;
    max-width: 250px;
  }

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

  .page-index-advantages-grid,
  .page-index-games-grid,
  .page-index-offers-grid,
  .page-index-news-grid,
  .page-index-detail-grid {
    grid-template-columns: 1fr;
  }

  .page-index-steps li {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-index-security-list li {
    font-size: 0.9em;
  }
}