.page-blog-spinplus-new-game-releases {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-blog-spinplus-new-game-releases__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding-bottom: 40px; /* Space below image before text content starts */
  background: #0A0A0A; /* Fallback for image load */
}

.page-blog-spinplus-new-game-releases__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 2px solid #3A2A12; /* Border */
}

.page-blog-spinplus-new-game-releases__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-spinplus-new-game-releases__hero-text-content {
  text-align: center;
  padding: 20px 20px 0;
  max-width: 900px;
}

.page-blog-spinplus-new-game-releases__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-blog-spinplus-new-game-releases__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-blog-spinplus-new-game-releases__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 25px;
  margin-top: 50px;
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-blog-spinplus-new-game-releases__text-highlight {
  color: #FFD36B; /* Auxiliary Color / Glow */
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__dark-bg {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  padding: 60px 0;
}

.page-blog-spinplus-new-game-releases__welcome-section,
.page-blog-spinplus-new-game-releases__game-innovations-section,
.page-blog-spinplus-new-game-releases__why-choose-section,
.page-blog-spinplus-new-game-releases__cta-download-section,
.page-blog-spinplus-new-game-releases__how-to-start-section,
.page-blog-spinplus-new-game-releases__faq-section,
.page-blog-spinplus-new-game-releases__conclusion-section {
  padding: 60px 0;
}

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

.page-blog-spinplus-new-game-releases__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFF6D6;
}

.page-blog-spinplus-new-game-releases__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-spinplus-new-game-releases__game-card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__game-card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-spinplus-new-game-releases__btn-primary,
.page-blog-spinplus-new-game-releases__btn-secondary,
.page-blog-spinplus-new-game-releases__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-spinplus-new-game-releases__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #0A0A0A; /* Dark text for light button */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-spinplus-new-game-releases__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-spinplus-new-game-releases__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-blog-spinplus-new-game-releases__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
}

.page-blog-spinplus-new-game-releases__btn-tertiary {
  background-color: #3A2A12; /* Border color for subtle button */
  color: #F2C14E; /* Main Color */
  border: 1px solid #3A2A12;
  font-size: 0.9rem;
  padding: 8px 18px;
}

.page-blog-spinplus-new-game-releases__btn-tertiary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
}

.page-blog-spinplus-new-game-releases__cta-section {
  text-align: center;
  margin-top: 50px;
}

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

.page-blog-spinplus-new-game-releases__feature-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
}

.page-blog-spinplus-new-game-releases__feature-card-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__feature-card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-blog-spinplus-new-game-releases__cta-download-section {
  padding: 80px 0;
}

.page-blog-spinplus-new-game-releases__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.page-blog-spinplus-new-game-releases__cta-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #3A2A12;
}

.page-blog-spinplus-new-game-releases__cta-text {
  max-width: 700px;
}

.page-blog-spinplus-new-game-releases__cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__cta-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-blog-spinplus-new-game-releases__how-to-start-section {
  background-color: #0A0A0A;
}

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

.page-blog-spinplus-new-game-releases__steps-list-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-spinplus-new-game-releases__steps-list-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-spinplus-new-game-releases__steps-list-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-spinplus-new-game-releases__faq-section {
  background-color: #0A0A0A;
}

.page-blog-spinplus-new-game-releases__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-blog-spinplus-new-game-releases__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-spinplus-new-game-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #111111;
  color: #F2C14E; /* Main Color */
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-blog-spinplus-new-game-releases__faq-question:hover {
  background-color: #1A1A1A;
}

.page-blog-spinplus-new-game-releases__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.page-blog-spinplus-new-game-releases__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFD36B; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-blog-spinplus-new-game-releases__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 0.95rem;
}

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

.page-blog-spinplus-new-game-releases__conclusion-section {
  text-align: center;
}

.page-blog-spinplus-new-game-releases__cta-buttons--center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-spinplus-new-game-releases__hero-image {
    height: 500px;
  }
  .page-blog-spinplus-new-game-releases__game-card-image {
    height: 180px;
  }
  .page-blog-spinplus-new-game-releases__cta-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .page-blog-spinplus-new-game-releases {
    padding-top: var(--header-offset, 100px) !important; /* Mobile padding for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-spinplus-new-game-releases__hero-image {
    height: 400px;
  }

  .page-blog-spinplus-new-game-releases__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-spinplus-new-game-releases__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-spinplus-new-game-releases__section-title,
  .page-blog-spinplus-new-game-releases__cta-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-top: 30px;
  }

  .page-blog-spinplus-new-game-releases__game-showcase,
  .page-blog-spinplus-new-game-releases__features-grid,
  .page-blog-spinplus-new-game-releases__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-spinplus-new-game-releases__game-card-image {
    height: 150px;
  }

  .page-blog-spinplus-new-game-releases__cta-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-spinplus-new-game-releases__cta-image {
    max-width: 280px;
  }

  .page-blog-spinplus-new-game-releases__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-spinplus-new-game-releases__faq-answer {
    padding: 10px 20px;
  }

  /* Mobile image and button overflow prevention */
  .page-blog-spinplus-new-game-releases img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-spinplus-new-game-releases__container,
  .page-blog-spinplus-new-game-releases__hero-content-wrapper,
  .page-blog-spinplus-new-game-releases__game-showcase,
  .page-blog-spinplus-new-game-releases__features-grid,
  .page-blog-spinplus-new-game-releases__steps-list,
  .page-blog-spinplus-new-game-releases__faq-list,
  .page-blog-spinplus-new-game-releases__cta-buttons,
  .page-blog-spinplus-new-game-releases__cta-buttons--center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-spinplus-new-game-releases__btn-primary,
  .page-blog-spinplus-new-game-releases__btn-secondary,
  .page-blog-spinplus-new-game-releases__btn-tertiary {
    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-blog-spinplus-new-game-releases__hero-cta-buttons,
  .page-blog-spinplus-new-game-releases__cta-buttons--center {
    flex-direction: column;
    gap: 15px;
  }
}