/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333;
  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: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  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: #E3B505;
  border-radius: 2px;
}

.page-index__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555;
}

.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;
  border: none;
  text-align: center;
}

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

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

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

.page-index__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-index__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

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

.page-index__mt-20 {
  margin-top: 20px;
}

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

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

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #304e92 100%); /* Dark blue to slightly lighter blue gradient */
  color: #ffffff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-index__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  z-index: 1;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0e0e0;
  max-width: 600px;
  text-align: left;
}

.page-index__hero-buttons .page-index__btn {
  margin-right: 20px;
}

.page-index__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

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

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

/* Features Section */
.page-index__features-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__feature-card {
  background-color: #f0f4f8; /* Light blueish grey */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #0A2463;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index__feature-description {
  font-size: 1em;
  color: #666;
}

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

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

.page-index__game-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index__game-title {
  font-size: 1.4em;
  color: #0A2463;
  padding: 15px 20px 5px;
}

.page-index__game-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
}

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

.page-index__promotions-section .page-index__section-title {
  color: #ffffff;
}

.page-index__promotions-section .page-index__section-title::after {
  background-color: #E3B505;
}

.page-index__promotions-section .page-index__section-text {
  color: #e0e0e0;
}

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

.page-index__promo-card {
  background-color: #1a3a7a; /* Slightly lighter blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-10px);
  background-color: #2a4a8a;
}

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

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

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

/* Guide Section */
.page-index__guide-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-index__guide-step {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.page-index__step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #E3B505;
  color: #0A2463;
  font-size: 2.5em;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  margin-top: 20px;
}

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

/* Articles Section */
.page-index__articles-section {
  padding: 80px 0;
  background-color: #eef2f6;
}

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

.page-index__article-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index__article-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index__article-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__article-title a:hover {
  color: #E3B505;
}

.page-index__article-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CTA Section */
.page-index__cta-section {
  background: linear-gradient(135deg, #0A2463, #304e92);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-index__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-section {
    flex-direction: column;
    text-align: center;
  }

  .page-index__hero-content,
  .page-index__hero-image-wrapper {
    min-width: unset;
    width: 100%;
    padding: 0 20px;
  }

  .page-index__hero-description,
  .page-index__hero-title {
    text-align: center;
  }

  .page-index__hero-buttons {
    justify-content: center;
    display: flex;
  }

  .page-index__hero-buttons .page-index__btn {
    margin-right: 10px;
    margin-left: 10px;
  }

  .page-index__hero-image {
    margin-top: 40px;
  }

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

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

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

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

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

  .page-index__features-grid,
  .page-index__games-grid,
  .page-index__promotions-grid,
  .page-index__guide-steps,
  .page-index__articles-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-index__btn--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

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

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

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

  .page-index__hero-buttons .page-index__btn {
    margin: 0;
    width: 100%;
  }

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

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

  .page-index__btn--primary,
  .page-index__btn--secondary {
    width: 100%;
    box-sizing: border-box;
  }
}