.page-index-latest-news {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text on dark background for general readability */
  background-color: #0A2239; /* Primary dark background */
  line-height: 1.6;
}

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

.page-index-latest-news__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: #0A2239;
  overflow: hidden;
}

.page-index-latest-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-index-latest-news__hero .page-index-latest-news__container {
  position: relative;
  z-index: 1;
}

.page-index-latest-news__hero-title {
  font-size: 3.5em;
  color: #E0B44B; /* Secondary gold for titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-news__hero-description {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-news__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-latest-news__btn--primary {
  background-color: #E0B44B; /* Gold button */
  color: #0A2239; /* Dark blue text */
}

.page-index-latest-news__btn--primary:hover {
  background-color: #f0c55c;
  transform: translateY(-2px);
}

.page-index-latest-news__btn--secondary {
  background-color: #0A2239; /* Dark blue button */
  color: #E0B44B; /* Gold text */
  border: 2px solid #E0B44B;
  margin-left: 15px;
}

.page-index-latest-news__btn--secondary:hover {
  background-color: #1a3c5a;
  transform: translateY(-2px);
}

.page-index-latest-news__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-latest-news__section-title {
  font-size: 2.5em;
  color: #E0B44B;
  margin-bottom: 20px;
}

.page-index-latest-news__section-intro {
  font-size: 1.1em;
  color: #F5F5F5;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-latest-news__announcement-card, 
.page-index-latest-news__promotion-card, 
.page-index-latest-news__game-card, 
.page-index-latest-news__trust-card {
  background-color: #1a3c5a; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-index-latest-news__announcement-card:hover,
.page-index-latest-news__promotion-card:hover,
.page-index-latest-news__game-card:hover,
.page-index-latest-news__trust-card:hover {
  transform: translateY(-5px);
}

.page-index-latest-news__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-latest-news__card-title {
  font-size: 1.8em;
  color: #E0B44B;
  margin-bottom: 15px;
}

.page-index-latest-news__card-text {
  font-size: 1em;
  color: #F5F5F5;
  margin-bottom: 15px;
}

.page-index-latest-news__trust .page-index-latest-news__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index-latest-news__cta-bottom {
  background-color: #E0B44B; /* Gold background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A2239; /* Dark blue text on gold */
}

.page-index-latest-news__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2239;
}

.page-index-latest-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #0A2239;
}

.page-index-latest-news__cta-buttons .page-index-latest-news__btn--primary {
  background-color: #0A2239;
  color: #E0B44B;
  border: 2px solid #0A2239;
}

.page-index-latest-news__cta-buttons .page-index-latest-news__btn--primary:hover {
  background-color: #1a3c5a;
  color: #f0c55c;
}

.page-index-latest-news__cta-buttons .page-index-latest-news__btn--secondary {
  background-color: #F5F5F5;
  color: #0A2239;
  border: 2px solid #0A2239;
  margin-left: 15px;
}

.page-index-latest-news__cta-buttons .page-index-latest-news__btn--secondary:hover {
  background-color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-latest-news__hero-title {
    font-size: 2.5em;
  }

  .page-index-latest-news__hero-description,
  .page-index-latest-news__section-intro {
    font-size: 1em;
  }

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

  .page-index-latest-news__grid {
    grid-template-columns: 1fr;
  }

  .page-index-latest-news__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-latest-news__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-latest-news__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-index-latest-news__hero {
    padding: 60px 0;
  }

  .page-index-latest-news__section {
    padding: 40px 0;
  }

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

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