.page-slots-new-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-slots-new-games .page-slots-new-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-new-games__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-slots-new-games__hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(3px);
}

.page-slots-new-games__hero .page-slots-new-games__container {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.page-slots-new-games__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  color: #FFD700;
}

.page-slots-new-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

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

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

.page-slots-new-games__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-slots-new-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

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

.page-slots-new-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-slots-new-games__btn--small {
  padding: 10px 25px;
  font-size: 0.95em;
}

.page-slots-new-games__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
}

.page-slots-new-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-slots-new-games__section:nth-of-type(even) {
  background-color: #122B4A; /* Slightly lighter dark blue */
}

.page-slots-new-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-slots-new-games__section-description {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #B0B0B0;
}

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

.page-slots-new-games__game-card {
  background-color: #0A192F;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slots-new-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.page-slots-new-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slots-new-games__game-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 20px 10px 20px;
}

.page-slots-new-games__game-provider,
.page-slots-new-games__game-features {
  font-size: 0.95em;
  color: #B0B0B0;
  margin: 0 20px 10px 20px;
}

.page-slots-new-games__game-card .page-slots-new-games__btn {
  margin: 15px 20px 20px 20px;
  width: calc(100% - 40px);
}

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

.page-slots-new-games__feature-item,
.page-slots-new-games__step-item,
.page-slots-new-games__promo-card {
  background-color: #122B4A;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slots-new-games__feature-item:hover,
.page-slots-new-games__step-item:hover,
.page-slots-new-games__promo-card:hover {
  transform: translateY(-8px);
}

.page-slots-new-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-slots-new-games__feature-title,
.page-slots-new-games__step-title,
.page-slots-new-games__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-new-games__feature-description,
.page-slots-new-games__step-description,
.page-slots-new-games__promo-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-slots-new-games__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-new-games__how-to-play .page-slots-new-games__btn {
  margin-top: 20px;
}

.page-slots-new-games__promo-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-new-games__responsible-gambling {
  background-color: #0A192F;
  padding: 100px 0;
}

.page-slots-new-games__responsible-image {
  max-width: 250px;
  margin: 40px auto 30px auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.page-slots-new-games__responsible-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-slots-new-games__cta {
  background: linear-gradient(135deg, #0A192F, #1A3E60);
  padding: 100px 0;
  color: #FFFFFF;
}

.page-slots-new-games__cta-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slots-new-games__cta-description {
  font-size: 1.3em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-slots-new-games__faq {
  background-color: #122B4A;
}

.page-slots-new-games__faq-item {
  background-color: #0A192F;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: left;
  padding: 25px 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-new-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-new-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-slots-new-games__faq-answer {
  font-size: 1.1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-slots-new-games__faq-answer.open {
  max-height: 500px; /* Adjust based on expected content length */
  opacity: 1;
  margin-top: 15px;
}

.page-slots-new-games .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-new-games__hero-title {
    font-size: 3em;
  }
  .page-slots-new-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-new-games__section-title {
    font-size: 2.2em;
  }
  .page-slots-new-games__cta-title {
    font-size: 2.5em;
  }
  .page-slots-new-games__game-grid,
  .page-slots-new-games__features-grid,
  .page-slots-new-games__steps-grid,
  .page-slots-new-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-new-games__hero {
    padding: 80px 0;
    min-height: 500px;
  }
  .page-slots-new-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-new-games__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-new-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-new-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots-new-games__section {
    padding: 60px 0;
  }
  .page-slots-new-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-new-games__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-slots-new-games__feature-title,
  .page-slots-new-games__step-title,
  .page-slots-new-games__promo-title {
    font-size: 1.5em;
  }
  .page-slots-new-games__cta-title {
    font-size: 2em;
  }
  .page-slots-new-games__cta-description {
    font-size: 1.1em;
  }
  .page-slots-new-games__faq-question {
    font-size: 1.2em;
  }
  .page-slots-new-games__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slots-new-games__hero {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-slots-new-games__hero-title {
    font-size: 2em;
  }
  .page-slots-new-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-new-games__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-new-games__section-title {
    font-size: 1.6em;
  }
  .page-slots-new-games__cta-title {
    font-size: 1.8em;
  }
  .page-slots-new-games__faq-question {
    font-size: 1.1em;
  }
}