/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F;
  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; /* Accent gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 40px;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
  background-color: #E0B800;
  border-color: #E0B800;
}

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-index__btn--text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 0;
  font-weight: normal;
  text-decoration: underline;
}

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

.page-index__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

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

.page-index__btn--icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index__btn--icon i {
  margin-right: 8px;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index__hero-section .page-index__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-index__hero-content {
  max-width: 800px;
}

.page-index__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-index__hero-image-wrapper {
  margin-top: 50px;
  max-width: 600px;
  width: 100%;
}

.page-index__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-index__about-text {
  flex: 1;
  text-align: left;
  color: #E0E0E0;
}

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

.page-index__about-image-wrapper {
  flex: 1;
  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);
}

/* Games Section */
.page-index__games-section {
  padding: 80px 0;
  background-color: #1a2a40;
}

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

.page-index__game-card {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
}

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

.page-index__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-index__game-description {
  color: #B0B0B0;
  padding: 0 20px;
  margin-bottom: 20px;
}

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

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

.page-index__promo-card {
  background-color: #1a2a40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
}

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

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

.page-index__promo-description {
  color: #B0B0B0;
  padding: 0 20px;
  margin-bottom: 20px;
}

/* App Section */
.page-index__app-section {
  padding: 80px 0;
  background-color: #1a2a40;
}

.page-index__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-index__app-text-wrapper {
  flex: 1;
  text-align: left;
}

.page-index__app-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-index__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index__app-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

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

.page-index__app-download-buttons {
  display: flex;
  gap: 20px;
}

.page-index__icon--android::before {
  content: '\f17b'; /* FontAwesome Android icon */
  font-family: 'Font Awesome 5 Brands';
}

.page-index__icon--apple::before {
  content: '\f179'; /* FontAwesome Apple icon */
  font-family: 'Font Awesome 5 Brands';
}

.page-index__app-image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Why Choose Section */
.page-index__why-choose-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-index__why-choose-item {
  background-color: #1a2a40;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index__why-choose-item i {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index__why-choose-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index__why-choose-item p {
  color: #B0B0B0;
}

/* Icons for Why Choose Section (placeholders, Font Awesome would be used in a real scenario) */
.page-index__icon--security::before {
  content: '\f3ed'; /* Example: FontAwesome lock */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.page-index__icon--customer-service::before {
  content: '\f0e0'; /* Example: FontAwesome envelope */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.page-index__icon--fast-payment::before {
  content: '\f53e'; /* Example: FontAwesome credit card */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.page-index__icon--fair-play::before {
  content: '\f0ae'; /* Example: FontAwesome balance scale */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.page-index__icon--variety::before {
  content: '\f1b2'; /* Example: FontAwesome cubes */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.page-index__icon--bonus::before {
  content: '\f06b'; /* Example: FontAwesome gift */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/* Detail Pages Section */
.page-index__detail-pages-section {
  padding: 80px 0;
  background-color: #1a2a40;
}

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

.page-index__detail-card {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
}

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

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

.page-index__detail-title a:hover {
  color: #E0B800;
  text-decoration: underline;
}

.page-index__detail-description {
  color: #B0B0B0;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling-section {
  padding: 80px 0;
  background-color: #0A192F;
  text-align: center;
}

.page-index__responsible-gambling-section p {
  max-width: 800px;
  margin: 20px auto 30px;
  color: #E0E0E0;
  font-size: 1.1em;
}

/* CTA Section */
.page-index__cta-section {
  background: linear-gradient(90deg, #FFD700, #E0B800);
  padding: 60px 0;
  text-align: center;
}

.page-index__cta-title {
  font-size: 2.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

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

/* Utility classes */
.page-index__text-center {
  text-align: center;
}

.page-index__mt-4 {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }

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

  .page-index__about-content, .page-index__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index__about-text, .page-index__app-text-wrapper {
    text-align: center;
  }

  .page-index__app-download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index__hero-title {
    font-size: 2.2em;
  }

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

  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index__btn--secondary {
    margin-left: 0;
  }

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

  .page-index__game-grid, .page-index__promo-grid, .page-index__why-choose-grid, .page-index__detail-grid {
    grid-template-columns: 1fr;
  }

  .page-index__app-features li {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }

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

  .page-index__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index__app-download-buttons {
    flex-direction: column;
  }

  .page-index__cta-title {
    font-size: 1.6em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
}