.page-news-new-game-launch {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

.page-news-new-game-launch__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

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

.page-news-new-game-launch__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

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

.page-news-new-game-launch__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-news-new-game-launch__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-news-new-game-launch__btn-primary,
.page-news-new-game-launch__btn-secondary,
.page-news-new-game-launch__btn-link,
.page-news-new-game-launch__btn-text-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-news-new-game-launch__btn-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

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

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

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

.page-news-new-game-launch__btn-link,
.page-news-new-game-launch__btn-text-link {
  padding: 10px 20px;
  font-size: 1em;
  color: #CC0000;
  border: 1px solid #CC0000;
  background-color: #ffffff;
}

.page-news-new-game-launch__btn-link:hover,
.page-news-new-game-launch__btn-text-link:hover {
  background-color: #CC0000;
  color: #ffffff;
}

.page-news-new-game-launch__btn-text-link {
  border: none;
  padding: 5px 0;
  display: block;
  width: fit-content;
  margin-top: 10px;
  text-decoration: underline;
  background: none;
  text-align: left;
}

.page-news-new-game-launch__btn-text-link:hover {
  text-decoration: none;
  color: #FFD700;
}

.page-news-new-game-launch__section {
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-news-new-game-launch__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-news-new-game-launch__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #CC0000;
  text-transform: uppercase;
}

.page-news-new-game-launch__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-news-new-game-launch__dark-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

.page-news-new-game-launch__dark-bg .page-news-new-game-launch__section-description {
  color: #cccccc;
}

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

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

.page-news-new-game-launch__game-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-news-new-game-launch__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-news-new-game-launch__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news-new-game-launch__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 25px 10px;
  margin: 0;
}

.page-news-new-game-launch__game-card-description {
  font-size: 1em;
  color: #cccccc;
  padding: 0 25px 25px;
  flex-grow: 1;
}

.page-news-new-game-launch__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-news-new-game-launch__benefit-item {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid #CC0000;
}

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

.page-news-new-game-launch__benefit-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-news-new-game-launch__benefit-description {
  font-size: 1em;
  color: #555555;
}

.page-news-new-game-launch__cta-buttons--center {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news-new-game-launch__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-new-game-launch__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-news-new-game-launch__video-caption {
  margin-top: 20px;
  font-size: 1.1em;
  color: #cccccc;
}

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

.page-news-new-game-launch__step-card {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #FFD700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-news-new-game-launch__step-image {
  width: 100%;
  height: 200px;
  object-fit: contain; /* Use contain for step images */
  margin-bottom: 20px;
  max-width: 100%;
}

.page-news-new-game-launch__step-title {
  font-size: 1.8em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-news-new-game-launch__step-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-news-new-game-launch__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-new-game-launch__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news-new-game-launch__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #3a3a3a;
  transition: background-color 0.3s ease;
}

.page-news-new-game-launch__faq-question:hover {
  background-color: #4a4a4a;
}

.page-news-new-game-launch__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news-new-game-launch__faq-item.active .page-news-new-game-launch__faq-toggle {
  transform: rotate(45deg);
}

.page-news-new-game-launch__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
}

.page-news-new-game-launch__faq-item.active .page-news-new-game-launch__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-news-new-game-launch__faq-answer p {
  margin-bottom: 15px;
  color: #cccccc;
}

.page-news-new-game-launch__faq-answer .page-news-new-game-launch__btn-text-link {
  color: #CC0000;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
  padding: 0;
  border: none;
  background: none;
  font-weight: normal;
}

.page-news-new-game-launch__faq-answer .page-news-new-game-launch__btn-text-link:hover {
  color: #FFD700;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-new-game-launch__hero-title {
    font-size: 3em;
  }
  .page-news-new-game-launch__hero-description {
    font-size: 1.2em;
  }
  .page-news-new-game-launch__section-title {
    font-size: 2.2em;
  }
  .page-news-new-game-launch__game-card-title {
    font-size: 1.6em;
  }
  .page-news-new-game-launch__benefit-title {
    font-size: 1.4em;
  }
  .page-news-new-game-launch__step-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-news-new-game-launch__hero-section {
    height: auto;
    min-height: 70vh;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news-new-game-launch__hero-title {
    font-size: 2.2em;
  }
  .page-news-new-game-launch__hero-description {
    font-size: 1em;
  }
  .page-news-new-game-launch__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-new-game-launch__btn-primary,
  .page-news-new-game-launch__btn-secondary,
  .page-news-new-game-launch a[class*="button"],
  .page-news-new-game-launch a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-new-game-launch__cta-buttons,
  .page-news-new-game-launch__button-group,
  .page-news-new-game-launch__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-news-new-game-launch__section {
    padding: 60px 0;
  }
  .page-news-new-game-launch__container {
    padding: 0 15px;
  }
  .page-news-new-game-launch__section-title {
    font-size: 1.8em;
  }
  .page-news-new-game-launch__section-description {
    font-size: 0.95em;
  }
  .page-news-new-game-launch__game-card-image,
  .page-news-new-game-launch__step-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-new-game-launch__game-card,
  .page-news-new-game-launch__benefit-item,
  .page-news-new-game-launch__step-card {
    margin-bottom: 20px;
  }
  .page-news-new-game-launch__game-grid,
  .page-news-new-game-launch__benefits-list,
  .page-news-new-game-launch__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-new-game-launch__video-wrapper {
    margin: 20px auto;
    padding-bottom: 56.25%;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-news-new-game-launch__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news-new-game-launch img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news-new-game-launch__section,
  .page-news-new-game-launch__card,
  .page-news-new-game-launch__container,
  .page-news-new-game-launch__video-section,
  .page-news-new-game-launch__video-container,
  .page-news-new-game-launch__video-wrapper,
  .page-news-new-game-launch__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news-new-game-launch__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news-new-game-launch__faq-answer {
    padding: 0 20px;
  }
  .page-news-new-game-launch__faq-item.active .page-news-new-game-launch__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-news-new-game-launch__hero-title {
    font-size: 1.8em;
  }
  .page-news-new-game-launch__section-title {
    font-size: 1.5em;
  }
  .page-news-new-game-launch__game-card-title {
    font-size: 1.4em;
  }
  .page-news-new-game-launch__benefit-title {
    font-size: 1.2em;
  }
  .page-news-new-game-launch__step-title {
    font-size: 1.4em;
  }
}