/* style/slots-games-new-releases.css */

.page-slots-games-new-releases {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #F8F8F8;
}

.page-slots-games-new-releases__hero {
  background: linear-gradient(135deg, #0A246A 0%, #2A488A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  justify-content: center;
}

.page-slots-games-new-releases__hero-content {
  max-width: 900px;
  z-index: 2;
}

.page-slots-games-new-releases__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  line-height: 1.2;
  font-weight: bold;
}

.page-slots-games-new-releases__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.6;
  color: #E0E0E0;
}

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

.page-slots-games-new-releases__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

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

.page-slots-games-new-releases__section-title {
  font-size: 2.5em;
  color: #0A246A;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.page-slots-games-new-releases__feature-item {
  background-color: #FDFDFD;
  border: 1px solid #EEE;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-new-releases__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slots-games-new-releases__feature-title {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-new-releases__feature-item p {
  color: #666;
  line-height: 1.6;
}

.page-slots-games-new-releases__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-slots-games-new-releases__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slots-games-new-releases__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-slots-games-new-releases__btn--secondary {
  background-color: #0A246A;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(10, 36, 106, 0.4);
}

.page-slots-games-new-releases__btn--secondary:hover {
  background-color: #071C4F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 36, 106, 0.6);
}

.page-slots-games-new-releases__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-slots-games-new-releases__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-slots-games-new-releases__cta-container {
  margin-top: 40px;
}

.page-slots-games-new-releases__new-games-showcase {
  background-color: #F0F2F5;
}

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

.page-slots-games-new-releases__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slots-games-new-releases__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #EEE;
}

.page-slots-games-new-releases__game-card-title {
  font-size: 1.4em;
  color: #0A246A;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-slots-games-new-releases__game-card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
  line-height: 1.5;
  min-height: 100px;
}

.page-slots-games-new-releases__game-card .page-slots-games-new-releases__btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-slots-games-new-releases__cta-full-width {
  background-color: #0A246A;
  color: #FFFFFF;
  padding: 50px 30px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

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

.page-slots-games-new-releases__promotions {
  background-color: #FFFFFF;
}

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

.page-slots-games-new-releases__promo-card {
  background-color: #FDFDFD;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-new-releases__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slots-games-new-releases__promo-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #EEE;
}

.page-slots-games-new-releases__promo-card-title {
  font-size: 1.35em;
  color: #0A246A;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-slots-games-new-releases__promo-card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
  line-height: 1.5;
  min-height: 90px;
}

.page-slots-games-new-releases__promo-card .page-slots-games-new-releases__btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-slots-games-new-releases__get-started {
  background-color: #F0F2F5;
}

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

.page-slots-games-new-releases__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots-games-new-releases__step-icon {
  background-color: #FFD700;
  color: #0A246A;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-slots-games-new-releases__step-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-new-releases__step-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-slots-games-new-releases__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0A246A;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slots-games-new-releases__app-qr {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-slots-games-new-releases__app-text {
  text-align: center;
}

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

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

.page-slots-games-new-releases__commitment {
  background-color: #FFFFFF;
}

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

.page-slots-games-new-releases__commitment-item {
  background-color: #FDFDFD;
  border: 1px solid #EEE;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slots-games-new-releases__commitment-title {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-new-releases__commitment-item p {
  color: #666;
  line-height: 1.6;
}

.page-slots-games-new-releases__final-cta {
  background-color: #0A246A;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-slots-games-new-releases__final-cta .page-slots-games-new-releases__section-title {
  color: #FFD700;
}

.page-slots-games-new-releases__final-cta .page-slots-games-new-releases__section-description {
  color: #E0E0E0;
}

.page-slots-games-new-releases__login-prompt {
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-slots-games-new-releases__login-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slots-games-new-releases__login-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-new-releases__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-new-releases__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-games-new-releases__section-title {
    font-size: 2em;
  }
  .page-slots-games-new-releases__cta-title {
    font-size: 1.8em;
  }
  .page-slots-games-new-releases__app-title {
    font-size: 1.6em;
  }
  .page-slots-games-new-releases__app-download {
    flex-direction: column;
    padding: 30px;
  }
  .page-slots-games-new-releases__app-qr {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-slots-games-new-releases__hero {
    padding: 60px 15px;
  }
  .page-slots-games-new-releases__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-new-releases__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-new-releases__section {
    padding: 40px 15px;
  }
  .page-slots-games-new-releases__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-new-releases__features-grid,
  .page-slots-games-new-releases__game-grid,
  .page-slots-games-new-releases__promo-grid,
  .page-slots-games-new-releases__steps-grid,
  .page-slots-games-new-releases__commitment-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-new-releases__game-card-description, .page-slots-games-new-releases__promo-card-description {
    min-height: auto; /* Allow height to adjust on smaller screens */
  }
}

@media (max-width: 480px) {
  .page-slots-games-new-releases__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-new-releases__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-new-releases__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-slots-games-new-releases__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-slots-games-new-releases__cta-full-width, .page-slots-games-new-releases__app-download {
    padding: 30px 20px;
  }
  .page-slots-games-new-releases__cta-title {
    font-size: 1.5em;
  }
  .page-slots-games-new-releases__app-title {
    font-size: 1.4em;
  }
}