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

/* Variables for consistency */
:root {
  --page-slots-games-new-releases-primary-color: #0A1931;
  --page-slots-games-new-releases-secondary-color: #FFD700;
  --page-slots-games-new-releases-text-light: #FFFFFF;
  --page-slots-games-new-releases-text-dark: #0A1931;
  --page-slots-games-new-releases-bg-light: #F8F8F8;
  --page-slots-games-new-releases-bg-dark: #1A2B43; /* Slightly lighter than primary for contrast */
  --page-slots-games-new-releases-hover-primary: #071221;
  --page-slots-games-new-releases-hover-secondary: #E6C200;
  --page-slots-games-new-releases-border-radius: 8px;
  --page-slots-games-new-releases-transition-speed: 0.3s ease;
}

.page-slots-games-new-releases {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--page-slots-games-new-releases-text-light); /* Default text color for dark sections */
  background-color: var(--page-slots-games-new-releases-primary-color); /* Default background for main content */
}

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

/* Hero Section */
.page-slots-games-new-releases__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--page-slots-games-new-releases-primary-color) 0%, var(--page-slots-games-new-releases-bg-dark) 100%);
  color: var(--page-slots-games-new-releases-text-light);
  position: relative;
  overflow: hidden;
}

.page-slots-games-new-releases__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-slots-games-new-releases__hero-title {
  font-size: 3.2em;
  color: var(--page-slots-games-new-releases-secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.page-slots-games-new-releases__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #E0E0E0; /* Slightly lighter white for better contrast on dark gradient */
}

.page-slots-games-new-releases__hero-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2; /* Subtle background image */
  z-index: 1;
}

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

/* General Section Styling */
.page-slots-games-new-releases__section {
  padding: 60px 0;
}

.page-slots-games-new-releases__section:nth-of-type(even) {
  background-color: var(--page-slots-games-new-releases-bg-dark);
}

.page-slots-games-new-releases__section:nth-of-type(odd) {
  background-color: var(--page-slots-games-new-releases-primary-color);
}

.page-slots-games-new-releases__section-title {
  font-size: 2.5em;
  text-align: center;
  color: var(--page-slots-games-new-releases-secondary-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.page-slots-games-new-releases__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #C0C0C0;
}

/* Buttons */
.page-slots-games-new-releases__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--page-slots-games-new-releases-border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color var(--page-slots-games-new-releases-transition-speed), color var(--page-slots-games-new-releases-transition-speed);
  cursor: pointer;
}

.page-slots-games-new-releases__btn--primary {
  background-color: var(--page-slots-games-new-releases-secondary-color);
  color: var(--page-slots-games-new-releases-text-dark);
  border: 2px solid var(--page-slots-games-new-releases-secondary-color);
}

.page-slots-games-new-releases__btn--primary:hover {
  background-color: var(--page-slots-games-new-releases-hover-secondary);
  color: var(--page-slots-games-new-releases-text-dark);
}

.page-slots-games-new-releases__btn--secondary {
  background-color: transparent;
  color: var(--page-slots-games-new-releases-secondary-color);
  border: 2px solid var(--page-slots-games-new-releases-secondary-color);
}

.page-slots-games-new-releases__btn--secondary:hover {
  background-color: var(--page-slots-games-new-releases-secondary-color);
  color: var(--page-slots-games-new-releases-text-dark);
}

.page-slots-games-new-releases__btn--link {
  color: var(--page-slots-games-new-releases-secondary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.page-slots-games-new-releases__btn--link:hover {
  border-color: var(--page-slots-games-new-releases-secondary-color);
}

/* Why Choose Section */
.page-slots-games-new-releases__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-new-releases__feature-item {
  background-color: var(--page-slots-games-new-releases-bg-dark);
  padding: 30px;
  border-radius: var(--page-slots-games-new-releases-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__feature-item h3 {
  color: var(--page-slots-games-new-releases-secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__feature-item p {
  color: #D0D0D0;
}

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

.page-slots-games-new-releases__game-card {
  background-color: var(--page-slots-games-new-releases-bg-dark);
  border-radius: var(--page-slots-games-new-releases-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__game-title {
  color: var(--page-slots-games-new-releases-secondary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slots-games-new-releases__game-description {
  color: #D0D0D0;
  font-size: 0.95em;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* How to Start Section */
.page-slots-games-new-releases__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-new-releases__step-item {
  background-color: var(--page-slots-games-new-releases-bg-dark);
  padding: 30px;
  border-radius: var(--page-slots-games-new-releases-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__step-icon {
  background-color: var(--page-slots-games-new-releases-secondary-color);
  color: var(--page-slots-games-new-releases-text-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

.page-slots-games-new-releases__step-title {
  color: var(--page-slots-games-new-releases-secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__step-item p {
  color: #D0D0D0;
  margin-bottom: 20px;
}

/* Safety & Responsibility Section */
.page-slots-games-new-releases__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-new-releases__safety-item {
  background-color: var(--page-slots-games-new-releases-bg-dark);
  padding: 30px;
  border-radius: var(--page-slots-games-new-releases-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-new-releases__safety-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slots-games-new-releases__safety-title {
  color: var(--page-slots-games-new-releases-secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-slots-games-new-releases__safety-item p {
  color: #D0D0D0;
}

/* Future Section */
.page-slots-games-new-releases__section--future p {
  color: #D0D0D0;
  text-align: center;
  margin-bottom: 20px;
}

.page-slots-games-new-releases__call-to-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Related Links */
.page-slots-games-new-releases__related-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  margin-top: 40px;
}

.page-slots-games-new-releases__related-link {
  color: var(--page-slots-games-new-releases-secondary-color);
  text-decoration: none;
  font-size: 1.1em;
  padding: 8px 15px;
  border: 1px solid var(--page-slots-games-new-releases-secondary-color);
  border-radius: var(--page-slots-games-new-releases-border-radius);
  transition: background-color var(--page-slots-games-new-releases-transition-speed), color var(--page-slots-games-new-releases-transition-speed);
}

.page-slots-games-new-releases__related-link:hover {
  background-color: var(--page-slots-games-new-releases-secondary-color);
  color: var(--page-slots-games-new-releases-text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-new-releases__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games-new-releases__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games-new-releases__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-new-releases__hero-section {
    padding: 60px 0;
  }
  .page-slots-games-new-releases__hero-title {
    font-size: 2em;
  }
  .page-slots-games-new-releases__hero-description {
    font-size: 1em;
  }
  .page-slots-games-new-releases__section {
    padding: 40px 0;
  }
  .page-slots-games-new-releases__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-new-releases__feature-grid, 
  .page-slots-games-new-releases__game-showcase, 
  .page-slots-games-new-releases__steps-grid, 
  .page-slots-games-new-releases__safety-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-new-releases__call-to-action {
    flex-direction: column;
  }
  .page-slots-games-new-releases__btn {
    width: 100%;
    text-align: center;
  }
}

@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__hero-description,
  .page-slots-games-new-releases__section-intro,
  .page-slots-games-new-releases__feature-item p,
  .page-slots-games-new-releases__game-description,
  .page-slots-games-new-releases__step-item p,
  .page-slots-games-new-releases__safety-item p,
  .page-slots-games-new-releases__section--future p {
    font-size: 0.9em;
  }
  .page-slots-games-new-releases__related-list {
    flex-direction: column;
    align-items: center;
  }
}