/* style/blog-jilipark-new-game-release.css */
.page-blog-jilipark-new-game-release {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-jilipark-new-game-release__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-jilipark-new-game-release__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-jilipark-new-game-release__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-jilipark-new-game-release__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-jilipark-new-game-release__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-jilipark-new-game-release__hero-title {
  font-weight: bold;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
  margin-bottom: 20px;
}

.page-blog-jilipark-new-game-release__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-blog-jilipark-new-game-release__btn-primary,
.page-blog-jilipark-new-game-release__btn-secondary {
  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;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-jilipark-new-game-release__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #FFF6D6;
  border: none;
}

.page-blog-jilipark-new-game-release__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-jilipark-new-game-release__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-blog-jilipark-new-game-release__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-blog-jilipark-new-game-release__section {
  padding: 60px 0;
}

.page-blog-jilipark-new-game-release__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-jilipark-new-game-release__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-blog-jilipark-new-game-release__game-category {
  margin-bottom: 60px;
}

.page-blog-jilipark-new-game-release__category-title {
  font-size: clamp(1.5em, 3.5vw, 2.2em);
  color: #F2C14E; /* Main Color */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-jilipark-new-game-release__category-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-blog-jilipark-new-game-release__category-content--reverse {
  flex-direction: row-reverse;
}

.page-blog-jilipark-new-game-release__image-wrapper {
  flex: 1;
  min-width: 300px;
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-jilipark-new-game-release__category-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-blog-jilipark-new-game-release__text-content {
  flex: 1;
  min-width: 300px;
}

.page-blog-jilipark-new-game-release__game-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-jilipark-new-game-release__list-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #FFF6D6;
  font-size: 1.05em;
}

.page-blog-jilipark-new-game-release__list-item::before {
  content: '✦';
  color: #F2C14E; /* Main Color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-jilipark-new-game-release__step-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-jilipark-new-game-release__step-title {
  font-size: clamp(1.3em, 3vw, 1.8em);
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
}

.page-blog-jilipark-new-game-release__advantage-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-jilipark-new-game-release__advantage-item-title {
  font-size: clamp(1.2em, 2.5vw, 1.6em);
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
}

.page-blog-jilipark-new-game-release__media-partners-section {
  text-align: center;
}

.page-blog-jilipark-new-game-release__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns for desktop */
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
  align-items: center;
}

.page-blog-jilipark-new-game-release__partner-logo {
  width: 167px; /* Fixed width for game type images */
  height: 127px; /* Fixed height for game type images */
  object-fit: contain;
  background-color: #111111; /* Card BG */
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease;
}

.page-blog-jilipark-new-game-release__partner-logo:hover {
  transform: scale(1.05);
}

.page-blog-jilipark-new-game-release__faq-list {
  margin-top: 40px;
}

.page-blog-jilipark-new-game-release__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-jilipark-new-game-release__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #FFD36B; /* Glow */
  font-size: 1.15em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-jilipark-new-game-release__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

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

.page-blog-jilipark-new-game-release__faq-item.active .page-blog-jilipark-new-game-release__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-jilipark-new-game-release__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-blog-jilipark-new-game-release__faq-item.active .page-blog-jilipark-new-game-release__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 20px 20px;
}

.page-blog-jilipark-new-game-release__faq-answer p {
  margin-bottom: 0;
}

.page-blog-jilipark-new-game-release__faq-answer a {
  color: #F2C14E; /* Main Color */
  text-decoration: underline;
}

.page-blog-jilipark-new-game-release__cta-buttons--center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-jilipark-new-game-release__footer {
  background-color: #0A0A0A;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #3A2A12; /* Border */
}

.page-blog-jilipark-new-game-release__copyright {
  font-size: 0.9em;
  color: #FFF6D6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-jilipark-new-game-release__hero-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }

  .page-blog-jilipark-new-game-release__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }

  .page-blog-jilipark-new-game-release__category-title {
    font-size: clamp(1.4em, 3vw, 2em);
  }

  .page-blog-jilipark-new-game-release__category-content {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-jilipark-new-game-release__category-content--reverse {
    flex-direction: column;
  }

  .page-blog-jilipark-new-game-release__image-wrapper,
  .page-blog-jilipark-new-game-release__text-content {
    width: 100%;
    min-width: unset;
  }

  .page-blog-jilipark-new-game-release__partners-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns for tablet */
  }
}

@media (max-width: 768px) {
  .page-blog-jilipark-new-game-release {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-jilipark-new-game-release__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-jilipark-new-game-release__hero-title {
    font-size: clamp(2em, 6vw, 2.5em);
  }

  .page-blog-jilipark-new-game-release__hero-description {
    font-size: 1em;
  }

  .page-blog-jilipark-new-game-release__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-jilipark-new-game-release__btn-primary,
  .page-blog-jilipark-new-game-release__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto;
  }

  .page-blog-jilipark-new-game-release__section {
    padding: 40px 0;
  }

  .page-blog-jilipark-new-game-release__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
  }

  .page-blog-jilipark-new-game-release__category-title {
    font-size: clamp(1.2em, 4vw, 1.6em);
  }

  .page-blog-jilipark-new-game-release__text-block,
  .page-blog-jilipark-new-game-release__list-item {
    font-size: 1em;
  }

  .page-blog-jilipark-new-game-release__container {
    padding: 0 15px;
  }

  /* Images responsiveness */
  .page-blog-jilipark-new-game-release img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-jilipark-new-game-release__image-wrapper,
  .page-blog-jilipark-new-game-release__section,
  .page-blog-jilipark-new-game-release__card,
  .page-blog-jilipark-new-game-release__container,
  .page-blog-jilipark-new-game-release__hero-cta-buttons,
  .page-blog-jilipark-new-game-release__partners-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-jilipark-new-game-release__partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
  }

  .page-blog-jilipark-new-game-release__partner-logo {
    width: 100%; /* Adjust to fill column */
    height: auto;
    max-width: 167px; /* Maintain aspect ratio with max width */
  }

  .page-blog-jilipark-new-game-release__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-jilipark-new-game-release__faq-answer {
    padding: 0 15px;
  }

  .page-blog-jilipark-new-game-release__faq-item.active .page-blog-jilipark-new-game-release__faq-answer {
    padding: 10px 15px 15px;
  }

  .page-blog-jilipark-new-game-release__list-item {
    padding-left: 20px;
  }

  .page-blog-jilipark-new-game-release__list-item::before {
    left: -5px;
  }
}

@media (max-width: 480px) {
  .page-blog-jilipark-new-game-release__partners-grid {
    grid-template-columns: 1fr; /* 1 column for very small screens */
  }
}