/* style/slots-games-new-releases.css */
.page-slots-games-new-releases {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #1a1a1a; /* Very dark background for contrast */
}

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

.page-slots-games-new-releases__hero-section {
  background: linear-gradient(135deg, #0D47A1 0%, #0D47A1 70%, #1a1a1a 100%); /* Dark blue fading to very dark grey */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #FFFFFF;
}

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

.page-slots-games-new-releases__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD600; /* Bright gold for main title */
  line-height: 1.2;
}

.page-slots-new-releases__hero-title a,
.page-slots-games-new-releases__hero-description a {
    color: #FFD600;
    text-decoration: none;
}

.page-slots-games-new-releases__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-slots-games-new-releases__hero-image img {
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-slots-games-new-releases__btn--primary {
  background-color: #FFD600; /* Bright gold */
  color: #0D47A1; /* Dark blue text */
}

.page-slots-games-new-releases__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slots-games-new-releases__btn--secondary {
  background-color: transparent;
  color: #FFD600; /* Bright gold text */
  border: 2px solid #FFD600;
}

.page-slots-games-new-releases__btn--secondary:hover {
  background-color: #FFD600;
  color: #0D47A1;
  transform: translateY(-2px);
}

.page-slots-games-new-releases__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD600;
  color: #0D47A1;
}

.page-slots-games-new-releases__btn--small:hover {
  background-color: #e6c200;
}

.page-slots-games-new-releases__why-choose-us,
.page-slots-games-new-releases__featured-games,
.page-slots-games-new-releases__guide-section,
.page-slots-games-new-releases__tips-section,
.page-slots-games-new-releases__security-section,
.page-slots-games-new-releases__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-slots-games-new-releases__why-choose-us {
  background-color: #222222;
}

.page-slots-games-new-releases__guide-section {
  background-color: #222222;
}

.page-slots-games-new-releases__security-section {
  background-color: #222222;
}

.page-slots-games-new-releases__section-title {
  font-size: 2.8em;
  color: #FFD600; /* Bright gold for section titles */
  margin-bottom: 25px;
}

.page-slots-games-new-releases__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #E0E0E0;
}

.page-slots-games-new-releases__section-description a {
    color: #FFD600;
    text-decoration: none;
}

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

.page-slots-games-new-releases__feature-item,
.page-slots-games-new-releases__game-card,
.page-slots-games-new-releases__step-item {
  background-color: #0D47A1; /* Dark blue for card backgrounds */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slots-games-new-releases__feature-item:hover,
.page-slots-games-new-releases__game-card:hover,
.page-slots-games-new-releases__step-item:hover {
  transform: translateY(-5px);
}

.page-slots-games-new-releases__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 214, 0, 0.5));
}

.page-slots-games-new-releases__feature-title,
.page-slots-games-new-releases__game-title,
.page-slots-games-new-releases__step-title {
  font-size: 1.8em;
  color: #FFD600;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__feature-text,
.page-slots-games-new-releases__game-description,
.page-slots-games-new-releases__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-slots-games-new-releases__feature-text a,
.page-slots-games-new-releases__game-description a,
.page-slots-games-new-releases__step-text a {
    color: #FFD600;
    text-decoration: none;
}

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

.page-slots-games-new-releases__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD600;
  color: #0D47A1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-slots-games-new-releases__download-app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  background-color: #0D47A1;
  padding: 40px;
  border-radius: 10px;
  flex-wrap: wrap;
}

.page-slots-games-new-releases__app-image {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slots-games-new-releases__app-info {
  max-width: 500px;
  text-align: left;
}

.page-slots-games-new-releases__app-title {
  font-size: 2em;
  color: #FFD600;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__app-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-slots-games-new-releases__app-description a {
    color: #FFD600;
    text-decoration: none;
}

.page-slots-games-new-releases__tips-list,
.page-slots-games-new-releases__security-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-slots-games-new-releases__tips-list li,
.page-slots-games-new-releases__security-list li {
  background-color: #0D47A1;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page-slots-games-new-releases__tips-list li a,
.page-slots-games-new-releases__security-list li a {
    color: #FFD600;
    text-decoration: none;
}

.page-slots-games-new-releases__tip-highlight,
.page-slots-games-new-releases__security-highlight {
  color: #FFD600;
  font-weight: bold;
}

.page-slots-games-new-releases__cta-section {
  background-color: #0D47A1;
  padding: 80px 0;
  color: #FFFFFF;
}

.page-slots-games-new-releases__cta-title {
  font-size: 3em;
  color: #FFD600;
  margin-bottom: 20px;
}

.page-slots-games-new-releases__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-slots-games-new-releases__cta-description a {
    color: #FFD600;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slots-games-new-releases__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .page-slots-games-new-releases__hero-content {
    max-width: 100%;
    text-align: center;
  }

  .page-slots-games-new-releases__hero-image img {
    max-width: 100%;
  }

  .page-slots-games-new-releases__download-app {
    flex-direction: column;
    text-align: center;
  }

  .page-slots-games-new-releases__app-info {
    max-width: 100%;
    text-align: center;
  }
}

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

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

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

  .page-slots-games-new-releases__btn {
    width: 100%;
  }

  .page-slots-games-new-releases__features-grid,
  .page-slots-games-new-releases__game-grid,
  .page-slots-games-new-releases__steps {
    grid-template-columns: 1fr;
  }

  .page-slots-games-new-releases__tips-list,
  .page-slots-games-new-releases__security-list {
    margin: 40px 20px;
  }
}

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

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

  .page-slots-games-new-releases__hero-description,
  .page-slots-games-new-releases__section-description,
  .page-slots-games-new-releases__app-description,
  .page-slots-games-new-releases__cta-description {
    font-size: 1em;
  }

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

  .page-slots-games-new-releases__feature-item,
  .page-slots-games-new-releases__game-card,
  .page-slots-games-new-releases__step-item {
    padding: 20px;
  }
}