/* style/latest-news-new-games.css */
.page-latest-news-new-games {
  font-family: 'Arial', sans-serif;
  background-color: #0D1117;
  color: #F8F8F8; /* Light text color for dark background */
  line-height: 1.6;
}

.page-latest-news-new-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-latest-news-new-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0D1117 0%, #2A0D3C 100%); /* Dark gradient for premium feel */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-latest-news-new-games__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-latest-news-new-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-latest-news-new-games__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-latest-news-new-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-latest-news-new-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-latest-news-new-games__section {
  padding: 60px 0;
  background-color: #1a1e24; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

.page-latest-news-new-games__section:nth-of-type(even) {
  background-color: #0D1117;
}

.page-latest-news-new-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-latest-news-new-games__section-title--large {
  font-size: 3em;
}

.page-latest-news-new-games__text-content {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 30px;
  text-align: justify;
}

.page-latest-news-new-games__text-content--centered {
  text-align: center;
}

.page-latest-news-new-games__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0D1117;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-latest-news-new-games__btn:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-latest-news-new-games__btn--primary {
  background-color: #FFD700;
  color: #0D1117;
}

.page-latest-news-new-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-latest-news-new-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-latest-news-new-games__image--small {
  max-width: 600px;
  display: block;
  margin: 0 auto 30px auto;
}

.page-latest-news-new-games__image--large {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-latest-news-new-games__game-category {
  background-color: #0D1117;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-latest-news-new-games__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-latest-news-new-games__category-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-latest-news-new-games__feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-latest-news-new-games__feature-list li {
  background-color: #2a0d3c; /* Dark purple/blue for list items */
  padding: 10px 20px;
  border-radius: 5px;
  color: #FFD700;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-latest-news-new-games__feature-heading {
  margin: 0;
  color: inherit;
  font-size: 1em;
}

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

.page-latest-news-new-games__benefit-item {
  background-color: #0D1117;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-latest-news-new-games__benefit-item:hover {
  transform: translateY(-10px);
}

.page-latest-news-new-games__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-latest-news-new-games__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-latest-news-new-games__benefit-description {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-latest-news-new-games__step-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-latest-news-new-games__step-list li {
  background-color: #0D1117;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.page-latest-news-new-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-latest-news-new-games__step-description {
  color: #C0C0C0;
  font-size: 1em;
}

.page-latest-news-new-games__faq-item {
  background-color: #0D1117;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-latest-news-new-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-latest-news-new-games__faq-answer {
  color: #C0C0C0;
  font-size: 1em;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #2a0d3c;
  margin-top: 10px;
}

.page-latest-news-new-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-latest-news-new-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-latest-news-new-games__section--cta-final {
  background: linear-gradient(135deg, #2a0d3c 0%, #0D1117 100%);
  padding: 80px 0;
  text-align: center;
}

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

  .page-latest-news-new-games__hero-description {
    font-size: 1em;
  }

  .page-latest-news-new-games__section-title {
    font-size: 2em;
  }

  .page-latest-news-new-games__game-category {
    padding: 30px 20px;
  }

  .page-latest-news-new-games__category-title {
    font-size: 1.8em;
  }

  .page-latest-news-new-games__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-latest-news-new-games__step-list li {
    padding: 20px;
  }

  .page-latest-news-new-games__step-title {
    font-size: 1.5em;
  }

  .page-latest-news-new-games__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-latest-news-new-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-latest-news-new-games__section-title {
    font-size: 1.8em;
  }

  .page-latest-news-new-games__category-title {
    font-size: 1.5em;
  }

  .page-latest-news-new-games__feature-list li {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}