/* style/news-new-games-launch.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --body-bg-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-news-new-games-launch {
  font-family: Arial, sans-serif;
  color: var(--text-main-color);
  background-color: var(--body-bg-color);
}

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

.page-news-new-games-launch__section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--body-bg-color);
}

.page-news-new-games-launch__dark-bg {
  background-color: var(--body-bg-color);
  color: var(--text-main-color);
}

.page-news-new-games-launch__dark-card-bg {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-news-new-games-launch__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-news-new-games-launch__section-description,
.page-news-new-games-launch p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-news-new-games-launch__keyword {
  color: var(--gold-color);
  font-weight: bold;
}

/* Hero Section */
.page-news-new-games-launch__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 80px;
  overflow: hidden;
}

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

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

.page-news-new-games-launch__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-news-new-games-launch__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news-new-games-launch__hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary-color);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news-new-games-launch__btn-primary,
.page-news-new-games-launch__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-new-games-launch__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
}

.page-news-new-games-launch__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-news-new-games-launch__btn-secondary {
  background: none;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-news-new-games-launch__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: var(--text-main-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Video Showcase */
.page-news-new-games-launch__video-showcase {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-news-new-games-launch__video-container {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for video */
  margin: 30px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (height / width * 100%) */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-news-new-games-launch__video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-news-new-games-launch__video-caption {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-secondary-color);
}

/* New Games Showcase Grid */
.page-news-new-games-launch__new-games-showcase {
  padding-top: 40px;
}

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

.page-news-new-games-launch__card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-news-new-games-launch__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-color);
}

.page-news-new-games-launch__card-title {
  font-size: 1.4rem;
  color: var(--text-main-color);
  padding: 15px 20px 10px;
  font-weight: bold;
}

.page-news-new-games-launch__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-news-new-games-launch__card-button {
  margin: 0 20px 20px;
  text-align: center;
  width: calc(100% - 40px);
  padding: 12px 15px;
  font-size: 1rem;
}

/* Why Choose Us Section */
.page-news-new-games-launch__why-choose-us {
  padding-top: 40px;
}

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

.page-news-new-games-launch__feature-item {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-news-new-games-launch__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  /* Ensure minimum size */
  min-width: 200px;
  min-height: 200px;
  width: 200px;
  height: 200px;
}

.page-news-new-games-launch__feature-title {
  font-size: 1.3rem;
  color: var(--text-main-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news-new-games-launch__feature-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* Promotions Section */
.page-news-new-games-launch__promotions {
  padding-top: 40px;
}

/* Access Guide Section */
.page-news-new-games-launch__access-guide {
  padding-top: 40px;
}

.page-news-new-games-launch__guide-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  text-align: left;
}

.page-news-new-games-launch__guide-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-news-new-games-launch__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 50%;
}

.page-news-new-games-launch__guide-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.page-news-new-games-launch__guide-item:last-child {
  margin-bottom: 0;
}

.page-news-new-games-launch__guide-step-title {
  font-size: 1.2rem;
  color: var(--text-main-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news-new-games-launch__guide-step-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  line-height: 1.5;
}

.page-news-new-games-launch__cta-buttons--center {
  margin-top: 40px;
}

/* FAQ Section */
.page-news-new-games-launch__faq-section {
  padding-top: 40px;
}

.page-news-new-games-launch__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-news-new-games-launch__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-news-new-games-launch__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main-color);
  list-style: none;
  user-select: none;
}

.page-news-new-games-launch__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-news-new-games-launch__faq-qtext {
  flex-grow: 1;
}

.page-news-new-games-launch__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-news-new-games-launch__faq-item[open] .page-news-new-games-launch__faq-toggle {
  content: '−';
}

.page-news-new-games-launch__faq-answer {
  padding: 10px 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* Bottom CTA Section */
.page-news-new-games-launch__cta-bottom {
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-news-new-games-launch__cta-container--center {
  max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-new-games-launch__hero-description {
    font-size: 1.1rem;
  }
  .page-news-new-games-launch__game-cards-grid,
  .page-news-new-games-launch__promotion-cards-grid,
  .page-news-new-games-launch__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-news-new-games-launch__guide-content {
    flex-direction: column;
    align-items: center;
  }
  .page-news-new-games-launch__guide-image,
  .page-news-new-games-launch__guide-list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news-new-games-launch__section {
    padding: 40px 0;
  }
  .page-news-new-games-launch__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .page-news-new-games-launch__section-description,
  .page-news-new-games-launch p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-news-new-games-launch__hero-section {
    padding-bottom: 60px;
  }
  .page-news-new-games-launch__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-news-new-games-launch__hero-description {
    font-size: 1rem;
  }
  .page-news-new-games-launch__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news-new-games-launch__btn-primary,
  .page-news-new-games-launch__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news-new-games-launch__game-cards-grid,
  .page-news-new-games-launch__promotion-cards-grid,
  .page-news-new-games-launch__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news-new-games-launch__card-image,
  .page-news-new-games-launch__feature-icon,
  .page-news-new-games-launch__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-news-new-games-launch__section,
  .page-news-new-games-launch__card,
  .page-news-new-games-launch__container,
  .page-news-new-games-launch__video-container,
  .page-news-new-games-launch__video-showcase,
  .page-news-new-games-launch__guide-content,
  .page-news-new-games-launch__guide-list,
  .page-news-new-games-launch__feature-item,
  .page-news-new-games-launch__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news-new-games-launch__video-container video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }
  .page-news-new-games-launch__video-section {
    padding-top: 10px !important;
  }
  .page-news-new-games-launch__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-news-new-games-launch__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-news-new-games-launch__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-news-new-games-launch__main-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .page-news-new-games-launch__hero-description {
    font-size: 0.9rem;
  }
  .page-news-new-games-launch__btn-primary,
  .page-news-new-games-launch__btn-secondary {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .page-news-new-games-launch__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-news-new-games-launch__section-description {
    font-size: 0.9rem;
  }
  .page-news-new-games-launch__card-title {
    font-size: 1.2rem;
  }
  .page-news-new-games-launch__card-text {
    font-size: 0.85rem;
  }
  .page-news-new-games-launch__feature-title {
    font-size: 1.1rem;
  }
  .page-news-new-games-launch__feature-text {
    font-size: 0.85rem;
  }
  .page-news-new-games-launch__guide-step-title {
    font-size: 1.1rem;
  }
  .page-news-new-games-launch__guide-step-text {
    font-size: 0.85rem;
  }
  .page-news-new-games-launch__faq-item summary {
    font-size: 0.95rem;
  }
  .page-news-new-games-launch__faq-answer {
    font-size: 0.85rem;
  }
}