/* style/index-latest-game-updates.css */
.page-index-latest-game-updates {
  font-family: 'Arial', sans-serif;
  color: #F0F2F5; /* Light grey for general text on dark background */
  background-color: #0A2463; /* Deep Blue main background */
  line-height: 1.6;
}

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

.page-index-latest-game-updates__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #06173d 100%); /* Darker blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-game-updates__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-game-updates__hero-title .highlight {
  color: #F0F2F5;
}

.page-index-latest-game-updates__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-game-updates__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #0A2463; /* Deep Blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-latest-game-updates__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-latest-game-updates__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-latest-game-updates__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-game-updates__section:nth-of-type(even) {
  background-color: #0F2D72; /* Slightly lighter blue for alternating sections */
}

.page-index-latest-game-updates__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-latest-game-updates__section-title .highlight {
  color: #F0F2F5;
}

.page-index-latest-game-updates__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-index-latest-game-updates__news-card, .page-index-latest-game-updates__review-card {
  background-color: #1A3A8A; /* Darker blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-latest-game-updates__news-card:hover, .page-index-latest-game-updates__review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-index-latest-game-updates__news-image, .page-index-latest-game-updates__review-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-index-latest-game-updates__news-title, .page-index-latest-game-updates__review-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  flex-grow: 1; /* Allow title to take available space */
}

.page-index-latest-game-updates__news-excerpt, .page-index-latest-game-updates__review-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-latest-game-updates__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

.page-index-latest-game-updates__read-more:hover {
  color: #F0F2F5;
  text-decoration: underline;
}

.page-index-latest-game-updates__event-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.page-index-latest-game-updates__event-item {
  display: flex;
  align-items: center;
  background-color: #1A3A8A;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-index-latest-game-updates__event-icon {
  width: 80px;
  height: 80px;
  margin-right: 30px;
  flex-shrink: 0;
}

.page-index-latest-game-updates__event-details {
  flex-grow: 1;
}

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

.page-index-latest-game-updates__event-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-index-latest-game-updates__event-cta {
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-index-latest-game-updates__event-cta:hover {
  background-color: #e6c200;
}

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

.page-index-latest-game-updates__guide-item {
  background-color: #1A3A8A;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-index-latest-game-updates__guide-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
}

.page-index-latest-game-updates__guide-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-latest-game-updates__guide-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-index-latest-game-updates__guide-cta {
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.page-index-latest-game-updates__guide-cta:hover {
  background-color: #e6c200;
}

.page-index-latest-game-updates__why-choose {
  background-color: #0A2463;
}

.page-index-latest-game-updates__feature-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
}

.page-index-latest-game-updates__feature-list li {
  background-color: #1A3A8A;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  font-size: 1.1em;
  color: #F0F2F5;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-game-updates__feature-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-index-latest-game-updates__cta-button--small {
  margin-top: 30px;
  font-size: 1.1em;
  padding: 12px 25px;
}

.page-index-latest-game-updates__expert-reviews {
  background-color: #0F2D72;
}

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

.page-index-latest-game-updates__cta-bottom {
  padding: 100px 0;
  background: linear-gradient(45deg, #0A2463, #06173d);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-game-updates__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-game-updates__section-title {
    font-size: 2.2em;
  }
  .page-index-latest-game-updates__event-item {
    flex-direction: column;
    text-align: center;
  }
  .page-index-latest-game-updates__event-icon {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 768px) {
  .page-index-latest-game-updates__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-game-updates__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-latest-game-updates__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-game-updates__section-description {
    font-size: 1em;
  }
  .page-index-latest-game-updates__grid, .page-index-latest-game-updates__guide-grid, .page-index-latest-game-updates__review-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-game-updates__news-card, .page-index-latest-game-updates__review-card, .page-index-latest-game-updates__guide-item {
    padding: 20px;
  }
  .page-index-latest-game-updates__news-title, .page-index-latest-game-updates__review-title, .page-index-latest-game-updates__guide-title {
    font-size: 1.4em;
  }
  .page-index-latest-game-updates__event-item {
    padding: 20px;
  }
  .page-index-latest-game-updates__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-game-updates__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-game-updates__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-game-updates__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index-latest-game-updates__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-game-updates__news-title, .page-index-latest-game-updates__review-title, .page-index-latest-game-updates__guide-title {
    font-size: 1.2em;
  }
  .page-index-latest-game-updates__news-excerpt, .page-index-latest-game-updates__review-text, .page-index-latest-game-updates__guide-text {
    font-size: 0.9em;
  }
  .page-index-latest-game-updates__event-title {
    font-size: 1.4em;
  }
  .page-index-latest-game-updates__event-description {
    font-size: 0.9em;
  }
  .page-index-latest-game-updates__event-cta {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .page-index-latest-game-updates__feature-list li {
    font-size: 1em;
  }
}