.page-index-latest-game-launches {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-index-latest-game-launches__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-game-launches__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-index-latest-game-launches__hero-title a.page-index-latest-game-launches__link-highlight {
  color: #FFC107;
  text-decoration: none;
}

.page-index-latest-game-launches__hero-title a.page-index-latest-game-launches__link-highlight:hover {
  text-decoration: underline;
}

.page-index-latest-game-launches__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-index-latest-game-launches__btn--primary {
  background-color: #FFC107;
  color: #333;
}

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

.page-index-latest-game-launches__btn--secondary {
  background-color: #007BFF;
  color: #fff;
  border: 2px solid #007BFF;
}

.page-index-latest-game-launches__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-index-latest-game-launches__section {
  padding: 80px 0;
}

.page-index-latest-game-launches__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-game-launches__section-title a.page-index-latest-game-launches__link-highlight {
  color: #FFC107;
  text-decoration: none;
}

.page-index-latest-game-launches__section-title a.page-index-latest-game-launches__link-highlight:hover {
  text-decoration: underline;
}

.page-index-latest-game-launches__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-index-latest-game-launches__subsection-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-game-launches__game-feature-title {
  font-size: 1.3em;
  color: #007BFF;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-latest-game-launches__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-index-latest-game-launches__grid-layout:nth-child(even) {
  direction: rtl; /* For alternating image/text layout */
}

.page-index-latest-game-launches__grid-layout:nth-child(even) .page-index-latest-game-launches__content-block {
  grid-column: 2;
  direction: ltr;
}

.page-index-latest-game-launches__grid-layout:nth-child(even) .page-index-latest-game-launches__image-block {
  grid-column: 1;
  direction: ltr;
}

.page-index-latest-game-launches__image-block {
  text-align: center;
}

.page-index-latest-game-launches__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-latest-game-launches__content-block p {
  margin-bottom: 15px;
  color: #444;
}

.page-index-latest-game-launches__content-block a.page-index-latest-game-launches__link-highlight {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-game-launches__content-block a.page-index-latest-game-launches__link-highlight:hover {
  text-decoration: underline;
}

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

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

.page-index-latest-game-launches__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-game-launches__game-card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-index-latest-game-launches__game-card-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-game-launches__game-card-text {
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.page-index-latest-game-launches__game-card .page-index-latest-game-launches__btn {
  margin-top: auto;
}

.page-index-latest-game-launches__link-highlight {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-game-launches__link-highlight:hover {
  text-decoration: underline;
}

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

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

.page-index-latest-game-launches__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFC107;
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 0.2;
  line-height: 1;
}

.page-index-latest-game-launches__step-card h3 {
  margin-top: 40px;
  color: #007BFF;
  font-size: 1.5em;
}

.page-index-latest-game-launches__step-card p {
  color: #555;
  margin-top: 15px;
}

.page-index-latest-game-launches__cta-group {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-latest-game-launches__faq-list {
  margin-top: 40px;
}

.page-index-latest-game-launches__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-index-latest-game-launches__faq-question {
  font-size: 1.25em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-index-latest-game-launches__faq-question a.page-index-latest-game-launches__link-highlight {
  color: #007BFF;
  text-decoration: none;
}

.page-index-latest-game-launches__faq-question a.page-index-latest-game-launches__link-highlight:hover {
  text-decoration: underline;
}

.page-index-latest-game-launches__faq-answer {
  color: #555;
  font-size: 1.05em;
  padding-left: 15px;
  border-left: 3px solid #FFC107;
  margin-top: 15px;
}

.page-index-latest-game-launches__conclusion .page-index-latest-game-launches__section-description {
  margin-bottom: 40px;
}

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

  .page-index-latest-game-launches__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-index-latest-game-launches__subsection-title {
    font-size: 1.6em;
  }

  .page-index-latest-game-launches__grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-index-latest-game-launches__grid-layout:nth-child(even) .page-index-latest-game-launches__content-block {
    grid-column: auto;
  }

  .page-index-latest-game-launches__grid-layout:nth-child(even) .page-index-latest-game-launches__image-block {
    grid-column: auto;
  }

  .page-index-latest-game-launches__image-block {
    order: -1; /* Image first on mobile for alternating sections */
  }
}

@media (max-width: 768px) {
  .page-index-latest-game-launches__hero-section {
    padding: 80px 0;
  }

  .page-index-latest-game-launches__hero-title {
    font-size: 2.2em;
  }

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

  .page-index-latest-game-launches__game-cards-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-index-latest-game-launches__hero-subtitle {
    font-size: 1em;
  }

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

  .page-index-latest-game-launches__section-title {
    font-size: 1.8em;
  }

  .page-index-latest-game-launches__subsection-title {
    font-size: 1.4em;
  }

  .page-index-latest-game-launches__step-card h3 {
    margin-top: 30px;
    font-size: 1.3em;
  }

  .page-index-latest-game-launches__faq-question {
    font-size: 1.1em;
  }
}