.page-slot-games-new-releases {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #0a0a0a */
}

.page-slot-games-new-releases__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-slot-games-new-releases__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-slot-games-new-releases__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-slot-games-new-releases__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-slot-games-new-releases__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-slot-games-new-releases__section {
  padding: 60px 20px;
}

.page-slot-games-new-releases__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-new-releases__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-slot-games-new-releases__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-slot-games-new-releases__feature-grid,
.page-slot-games-new-releases__type-grid,
.page-slot-games-new-releases__steps-grid,
.page-slot-games-new-releases__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-new-releases__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-slot-games-new-releases__feature-title,
.page-slot-games-new-releases__type-title,
.page-slot-games-new-releases__step-title,
.page-slot-games-new-releases__promo-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-new-releases__feature-description,
.page-slot-games-new-releases__type-description,
.page-slot-games-new-releases__step-description,
.page-slot-games-new-releases__promo-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-slot-games-new-releases__image-center {
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-slot-games-new-releases__btn-primary,
.page-slot-games-new-releases__btn-secondary,
.page-slot-games-new-releases__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-new-releases__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-slot-games-new-releases__btn-primary:hover {
  background-color: #e6c200;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-new-releases__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__btn-tertiary {
  background-color: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-slot-games-new-releases__btn-tertiary:hover {
  background-color: #a00000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-new-releases__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-slot-games-new-releases__mobile-experience {
  background-color: #1a1a1a;
}

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

.page-slot-games-new-releases__mobile-text {
  flex: 1;
}

.page-slot-games-new-releases__mobile-subtitle {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-slot-games-new-releases__mobile-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-slot-games-new-releases__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-slot-games-new-releases__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-slot-games-new-releases__faq-list {
  margin-top: 40px;
}

.page-slot-games-new-releases__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-new-releases__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-slot-games-new-releases__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-slot-games-new-releases__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-new-releases__faq-item.active .page-slot-games-new-releases__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-new-releases__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-slot-games-new-releases__faq-item.active .page-slot-games-new-releases__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-slot-games-new-releases__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-slot-games-new-releases__cta-final {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #ffffff;
}

.page-slot-games-new-releases__cta-final .page-slot-games-new-releases__card {
  background-color: rgba(0, 0, 0, 0.4); /* Darker overlay for contrast */
  padding: 40px;
  border: none;
}

.page-slot-games-new-releases__cta-title {
  font-size: 2.8em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-slot-games-new-releases__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-slot-games-new-releases__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-new-releases__hero-title {
    font-size: 3em;
  }
  .page-slot-games-new-releases__section-title {
    font-size: 2em;
  }
  .page-slot-games-new-releases__mobile-content {
    flex-direction: column;
  }
  .page-slot-games-new-releases__mobile-text, .page-slot-games-new-releases__mobile-image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games-new-releases {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-new-releases__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-games-new-releases__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-new-releases__hero-description {
    font-size: 1em;
  }
  .page-slot-games-new-releases__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-new-releases__btn-primary,
  .page-slot-games-new-releases__btn-secondary,
  .page-slot-games-new-releases__btn-tertiary,
  .page-slot-games-new-releases a[class*="button"],
  .page-slot-games-new-releases a[class*="btn"] {
    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-slot-games-new-releases__hero-buttons,
  .page-slot-games-new-releases__cta-buttons,
  .page-slot-games-new-releases__button-group,
  .page-slot-games-new-releases__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }
  .page-slot-games-new-releases__section {
    padding: 40px 15px;
  }
  .page-slot-games-new-releases__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-new-releases__section-intro {
    font-size: 0.95em;
  }
  .page-slot-games-new-releases__card {
    padding: 25px;
  }
  .page-slot-games-new-releases__feature-title,
  .page-slot-games-new-releases__type-title,
  .page-slot-games-new-releases__step-title,
  .page-slot-games-new-releases__promo-title {
    font-size: 1.3em;
  }
  .page-slot-games-new-releases img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-new-releases__section,
  .page-slot-games-new-releases__card,
  .page-slot-games-new-releases__container,
  .page-slot-games-new-releases__mobile-content,
  .page-slot-games-new-releases__mobile-image-wrapper,
  .page-slot-games-new-releases__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-new-releases__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slot-games-new-releases__faq-answer {
    padding: 10px 20px;
  }
  .page-slot-games-new-releases__cta-title {
    font-size: 2em;
  }
  .page-slot-games-new-releases__cta-description {
    font-size: 1em;
  }
}