/* style/latest-news-new-game-release.css */

.page-latest-news-new-game-release {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Hero Section */
.page-latest-news-new-game-release__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #00A86B 0%, #00764b 100%); /* Darker green for background */
  color: #fff;
}

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

.page-latest-news-new-game-release__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-latest-news-new-game-release__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title for high contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-latest-news-new-game-release__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* General Section Styling */
.page-latest-news-new-game-release__section {
  padding: 60px 0;
}

.page-latest-news-new-game-release__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-latest-news-new-game-release__section-title {
  font-size: 2.5em;
  color: #00764b; /* Darker green for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-latest-news-new-game-release__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-latest-news-new-game-release__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

/* CTA Button Styling */
.page-latest-news-new-game-release__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #00764b; /* Dark green text for contrast */
  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-game-release__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-latest-news-new-game-release__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-latest-news-new-game-release__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* New Games Section */
.page-latest-news-new-game-release__new-games .page-latest-news-new-game-release__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-latest-news-new-game-release__game-category {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-latest-news-new-game-release__category-title {
  font-size: 1.8em;
  color: #00A86B;
  margin-bottom: 20px;
}

.page-latest-news-new-game-release__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-latest-news-new-game-release__game-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.page-latest-news-new-game-release__game-list li {
  background-color: #e8f5e9; /* Lighter green for list items */
  margin-bottom: 10px;
  padding: 12px 15px;
  border-radius: 5px;
  color: #00764b; /* Dark green text */
  font-size: 1.05em;
  border-left: 5px solid #00A86B;
}

/* Guide Section */
.page-latest-news-new-game-release__guide .page-latest-news-new-game-release__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-latest-news-new-game-release__step {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid #00A86B;
}

.page-latest-news-new-game-release__step-title {
  font-size: 1.6em;
  color: #00764b;
  margin-bottom: 15px;
}

.page-latest-news-new-game-release__app-image {
  max-width: 80%;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Promotions Section */
.page-latest-news-new-game-release__promotions .page-latest-news-new-game-release__container {
  text-align: center;
}

.page-latest-news-new-game-release__promo-banner {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-latest-news-new-game-release__promo-list {
  list-style: none;
  padding: 0;
  margin: 25px auto;
  max-width: 800px;
  text-align: left;
}

.page-latest-news-new-game-release__promo-list li {
  background-color: #fff3e0; /* Light gold for promo list */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #8b6f00; /* Darker gold/brown text for contrast */
  font-size: 1.1em;
  border-left: 5px solid #FFD700;
}

/* Contact Section */
.page-latest-news-new-game-release__contact .page-latest-news-new-game-release__container {
  text-align: center;
}

.page-latest-news-new-game-release__contact-list {
  list-style: none;
  padding: 0;
  margin: 25px auto;
  max-width: 600px;
}

.page-latest-news-new-game-release__contact-list li {
  background-color: #e0f2f7; /* Light blueish for contact */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #005f7a; /* Dark blueish text */
  font-size: 1.1em;
  border-left: 5px solid #00A86B;
}

/* Final CTA Section */
.page-latest-news-new-game-release__final-cta {
  background: linear-gradient(45deg, #00A86B, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-latest-news-new-game-release__final-cta-content {
  max-width: 900px;
}

.page-latest-news-new-game-release__final-cta-title {
  font-size: 2.8em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-latest-news-new-game-release__final-cta p {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-latest-news-new-game-release__hero {
    height: 400px;
  }

  .page-latest-news-new-game-release__hero-title {
    font-size: 2.5em;
  }

  .page-latest-news-new-game-release__hero-subtitle {
    font-size: 1.2em;
  }

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

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

  .page-latest-news-new-game-release__final-cta-title {
    font-size: 2.2em;
  }

  .page-latest-news-new-game-release__final-cta p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-latest-news-new-game-release__hero {
    height: 300px;
  }

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

  .page-latest-news-new-game-release__hero-subtitle {
    font-size: 1em;
  }

  .page-latest-news-new-game-release__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-latest-news-new-game-release__section {
    padding: 40px 0;
  }

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

  .page-latest-news-new-game-release__game-category,
  .page-latest-news-new-game-release__step {
    padding: 20px;
  }

  .page-latest-news-new-game-release__category-title {
    font-size: 1.3em;
  }

  .page-latest-news-new-game-release__final-cta-title {
    font-size: 1.8em;
  }

  .page-latest-news-new-game-release__final-cta p {
    font-size: 1em;
  }
}