/* style/news-new-game-launch.css */

/* Base Styles */
.page-news-new-game-launch {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

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

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

.page-news-new-game-launch__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-news-new-game-launch__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #FFFFFF;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow: hidden;
}

.page-news-new-game-launch__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-news-new-game-launch__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-news-new-game-launch__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-news-new-game-launch__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-news-new-game-launch__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-news-new-game-launch__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-news-new-game-launch__btn-primary,
.page-news-new-game-launch__btn-secondary,
.page-news-new-game-launch__btn-tertiary,
.page-news-new-game-launch__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-news-new-game-launch__btn-primary {
  background-color: #C30808; /* Custom Register/Login button color */
  color: #FFFFFF; /* Adjusted for contrast: White text on red background */
  border: 2px solid #C30808;
}

.page-news-new-game-launch__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-news-new-game-launch__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-news-new-game-launch__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

.page-news-new-game-launch__btn-tertiary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-news-new-game-launch__btn-tertiary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-news-new-game-launch__btn-link {
  color: #017439;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
  font-size: 1em;
}

.page-news-new-game-launch__btn-link:hover {
  color: #005a2e;
}

/* Section Styling */
.page-news-new-game-launch__introduction-section,
.page-news-new-game-launch__promotions-section,
.page-news-new-game-launch__faq-section {
  padding: 80px 0;
}

.page-news-new-game-launch__new-games-section,
.page-news-new-game-launch__registration-guide,
.page-news-new-game-launch__cta-section {
  padding: 80px 0;
  color: #FFFFFF;
}

.page-news-new-game-launch__dark-bg {
  background-color: #017439;
}

.page-news-new-game-launch__light-bg {
  background-color: #FFFFFF;
}

.page-news-new-game-launch__dark-bg .page-news-new-game-launch__section-title {
  color: #FFFFFF;
}

.page-news-new-game-launch__dark-bg .page-news-new-game-launch__text-block {
  color: #f0f0f0;
}