/* style/news-game-launches.css */
.page-news-game-launches {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-news-game-launches__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-news-game-launches__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-news-game-launches__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-news-game-launches__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-news-game-launches__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%; /* Adjust as needed */
  max-width: 800px;
  opacity: 0.7;
  z-index: 5;
}

.page-news-game-launches__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-news-game-launches__section--intro {
  background-color: #fff;
}

.page-news-game-launches__section-title {
  font-size: 2.5em;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-news-game-launches__section-title .highlight {
  color: #FFD700;
}

.page-news-game-launches__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-news-game-launches__text .highlight {
  color: #007BFF;
  font-weight: bold;
}

.page-news-game-launches__text-link {
  color: #007BFF;
  text-decoration: underline;
}

.page-news-game-launches__text-link:hover {
  color: #0056b3;
}

.page-news-game-launches__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.page-news-game-launches__btn--primary {
  background-color: #FFD700;
  color: #0056b3;
  border: 2px solid #FFD700;
}

.page-news-game-launches__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #003d80;
}

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

.page-news-game-launches__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #fff;
}

.page-news-game-launches__btn--text {
  background: none;
  border: none;
  color: #007BFF;
  padding: 10px 15px;
  font-size: 1em;
}

.page-news-game-launches__btn--text:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-news-game-launches__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-news-game-launches__section--featured-games {
  background-color: #f0f2f5;
}

.page-news-game-launches__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-game-launches__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-game-launches__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news-game-launches__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-game-launches__game-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-news-game-launches__game-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-news-game-launches__section--why-hitclub {
  background-color: #fff;
}

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

.page-news-game-launches__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-news-game-launches__feature-item:hover {
  transform: translateY(-5px);
}

.page-news-game-launches__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-news-game-launches__feature-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-game-launches__section--how-to-play {
  background-color: #f0f2f5;
}

.page-news-game-launches__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news-game-launches__steps li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  counter-increment: step-counter;
}

.page-news-game-launches__steps li::before {
  content: counter(step-counter);
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-news-game-launches__step-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 10px;
  margin-left: 60px; /* Offset for number */
  font-weight: bold;
}

.page-news-game-launches__steps li .page-news-game-launches__text {
  margin-left: 60px;
}

.page-news-game-launches__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-news-game-launches__section--blog {
  background-color: #fff;
}

.page-news-game-launches__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news-game-launches__blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-game-launches__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news-game-launches__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news-game-launches__blog-title {
  font-size: 1.4em;
  color: #007BFF;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-news-game-launches__blog-excerpt {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-news-game-launches__blog-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
}

.page-news-game-launches__blog-link:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-news-game-launches__section--cta-final {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-news-game-launches__cta-final-content {
  max-width: 900px;
}

.page-news-game-launches__section-title--light {
  color: #FFD700;
}

.page-news-game-launches__text--light {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-news-game-launches__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news-game-launches__hero-title {
    font-size: 2.8em;
  }
  .page-news-game-launches__hero-subtitle {
    font-size: 1.3em;
  }
  .page-news-game-launches__section-title {
    font-size: 2em;
  }
  .page-news-game-launches__hero-image-wrapper {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .page-news-game-launches__hero {
    padding: 80px 0 120px;
  }
  .page-news-game-launches__hero-title {
    font-size: 2.2em;
  }
  .page-news-game-launches__hero-subtitle {
    font-size: 1.1em;
  }
  .page-news-game-launches__hero-image-wrapper {
    width: 80%;
    bottom: -20px;
  }
  .page-news-game-launches__section {
    padding: 40px 0;
  }
  .page-news-game-launches__section-title {
    font-size: 1.8em;
  }
  .page-news-game-launches__game-grid, .page-news-game-launches__features-grid, .page-news-game-launches__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-news-game-launches__steps li::before {
    left: 20px;
    top: 20px;
  }
  .page-news-game-launches__step-title, .page-news-game-launches__steps li .page-news-game-launches__text {
    margin-left: 60px;
  }
  .page-news-game-launches__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-game-launches__btn--large {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-news-game-launches__hero {
    padding: 60px 0 100px;
  }
  .page-news-game-launches__hero-title {
    font-size: 1.8em;
  }
  .page-news-game-launches__hero-subtitle {
    font-size: 1em;
  }
  .page-news-game-launches__hero-image-wrapper {
    width: 90%;
    bottom: -10px;
  }
  .page-news-game-launches__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-news-game-launches__section-title {
    font-size: 1.5em;
  }
  .page-news-game-launches__text {
    font-size: 1em;
  }
  .page-news-game-launches__game-title {
    font-size: 1.4em;
  }
  .page-news-game-launches__feature-title {
    font-size: 1.2em;
  }
  .page-news-game-launches__step-title {
    font-size: 1.4em;
  }
  .page-news-game-launches__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-news-game-launches__blog-title {
    font-size: 1.2em;
  }
  .page-news-game-launches__text--light {
    font-size: 1em;
  }
}