.page-slots-new-releases {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-slots-new-releases__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #ffffff;
  text-align: center;
  gap: 40px;
}

.page-slots-new-releases__hero-content {
  max-width: 900px;
}

.page-slots-new-releases__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Golden yellow for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-slots-new-releases__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-slots-new-releases__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-slots-new-releases__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-slots-new-releases__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-new-releases__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-slots-new-releases__section-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-new-releases__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-slots-new-releases__section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-new-releases__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slots-new-releases__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-new-releases__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-slots-new-releases__game-card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-slots-new-releases__game-card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-slots-new-releases__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-slots-new-releases__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast on yellow */
  border: 2px solid #ffc107;
}

.page-slots-new-releases__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003f8f;
}

.page-slots-new-releases__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-slots-new-releases__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffc107;
  border-color: #ffc107;
}

.page-slots-new-releases__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-slots-new-releases__btn--small:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-slots-new-releases__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 10px 20px;
  font-size: 1em;
}

.page-slots-new-releases__btn--outline:hover {
  background-color: #007bff;
  color: #ffffff;
}

.page-slots-new-releases__btn--cta {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  border: 2px solid #ffc107;
  padding: 15px 35px;
  font-size: 1.3em;
}

.page-slots-new-releases__btn--cta:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003f8f;
}

.page-slots-new-releases__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-slots-new-releases__benefit-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slots-new-releases__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-slots-new-releases__benefit-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-slots-new-releases__benefit-description {
  font-size: 1em;
  color: #555;
}

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

.page-slots-new-releases__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-slots-new-releases__step-number {
  font-size: 3em;
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.3;
  line-height: 1;
}

.page-slots-new-releases__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  padding-right: 60px; /* Make space for number */
}

.page-slots-new-releases__step-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-slots-new-releases__section--promotions {
  background-color: #e9f5ff; /* Light blue background */
  padding: 80px 20px;
}

.page-slots-new-releases__promo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.page-slots-new-releases__promo-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-new-releases__promo-content {
  text-align: center;
}

.page-slots-new-releases__promo-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-slots-new-releases__promo-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

.page-slots-new-releases__section--mobile-app {
  background: linear-gradient(135deg, #007bff, #3498db);
  color: #ffffff;
}

.page-slots-new-releases__section--mobile-app .page-slots-new-releases__section-title {
  color: #ffc107;
}

.page-slots-new-releases__mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slots-new-releases__mobile-text {
  text-align: left;
  max-width: 600px;
}

.page-slots-new-releases__mobile-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.page-slots-new-releases__mobile-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-slots-new-releases__mobile-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  opacity: 0.9;
}

.page-slots-new-releases__feature-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(1) brightness(1.5);
}

.page-slots-new-releases__mobile-image-wrapper {
  width: 100%;
  max-width: 400px;
}

.page-slots-new-releases__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-new-releases__section--responsible-gaming {
  background-color: #f0f0f0;
  padding-bottom: 80px;
}

.page-slots-new-releases__section--responsible-gaming p {
  max-width: 900px;
  margin: 0 auto 25px auto;
  font-size: 1.1em;
  color: #444;
}

.page-slots-new-releases__section--faq {
  background-color: #ffffff;
}

.page-slots-new-releases__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-new-releases__faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-slots-new-releases__faq-question {
  background-color: #f8f8f8;
  padding: 20px 25px;
  font-size: 1.3em;
  color: #007bff;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-slots-new-releases__faq-question:hover {
  background-color: #eef;
}

.page-slots-new-releases__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-slots-new-releases__faq-item.active .page-slots-new-releases__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-slots-new-releases__faq-answer {
  padding: 0 25px;
  font-size: 1.1em;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-slots-new-releases__faq-item.active .page-slots-new-releases__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-slots-new-releases__cta-banner {
  background: linear-gradient(45deg, #ffc107 0%, #ffa000 100%); /* Golden yellow to orange */
  padding: 80px 20px;
  text-align: center;
  color: #0056b3; /* Darker blue for contrast */
}

.page-slots-new-releases__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-new-releases__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0056b3; /* Darker blue for contrast */
}

.page-slots-new-releases__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #003f8f;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-new-releases__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-slots-new-releases__hero-title {
    font-size: 2.8em;
  }

  .page-slots-new-releases__hero-description {
    font-size: 1.1em;
  }

  .page-slots-new-releases__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-slots-new-releases__section-title {
    font-size: 2.2em;
  }

  .page-slots-new-releases__promo-wrapper {
    flex-direction: column;
  }

  .page-slots-new-releases__promo-title {
    font-size: 2em;
  }

  .page-slots-new-releases__mobile-content {
    flex-direction: column;
  }

  .page-slots-new-releases__mobile-text,
  .page-slots-new-releases__mobile-image-wrapper {
    max-width: 100%;
  }

  .page-slots-new-releases__cta-title {
    font-size: 2.5em;
  }

  .page-slots-new-releases__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slots-new-releases__hero-title {
    font-size: 2.2em;
  }

  .page-slots-new-releases__hero-description {
    font-size: 1em;
  }

  .page-slots-new-releases__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-slots-new-releases__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-slots-new-releases__section {
    padding: 40px 15px;
  }

  .page-slots-new-releases__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slots-new-releases__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-slots-new-releases__game-card-title {
    font-size: 1.5em;
  }

  .page-slots-new-releases__benefit-title {
    font-size: 1.4em;
  }

  .page-slots-new-releases__step-title {
    font-size: 1.6em;
  }

  .page-slots-new-releases__promo-title {
    font-size: 1.8em;
  }

  .page-slots-new-releases__promo-description {
    font-size: 1em;
  }

  .page-slots-new-releases__cta-title {
    font-size: 2em;
  }

  .page-slots-new-releases__cta-description {
    font-size: 1em;
  }

  .page-slots-new-releases__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-slots-new-releases__faq-answer {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-slots-new-releases__feature-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-slots-new-releases__hero-title {
    font-size: 1.8em;
  }

  .page-slots-new-releases__section-title {
    font-size: 1.5em;
  }

  .page-slots-new-releases__promo-title {
    font-size: 1.5em;
  }

  .page-slots-new-releases__cta-title {
    font-size: 1.8em;
  }

  .page-slots-new-releases__btn--cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}