/* style/games-slot-machines.css */
.page-games-slot-machines {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-games-slot-machines__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-games-slot-machines__section {
  padding: 60px 0;
  text-align: center;
}

.page-games-slot-machines__section--alt-bg {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-games-slot-machines__hero-section {
  background: linear-gradient(135deg, #1A202C, #3A475C);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-games-slot-machines__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 600px;
  height: auto;
  opacity: 0.7;
  z-index: 0;
}

.page-games-slot-machines__hero-section .page-games-slot-machines__container {
  position: relative;
  z-index: 1;
  text-align: left;
}

.page-games-slot-machines__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-games-slot-machines__hero-description {
  font-size: 1.2em;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-games-slot-machines__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-games-slot-machines__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.page-games-slot-machines__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

.page-games-slot-machines__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-games-slot-machines__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-games-slot-machines__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-games-slot-machines__text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #e5dfd3;
}

.page-games-slot-machines__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-games-slot-machines__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-games-slot-machines__feature-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #FFD700;
}

.page-games-slot-machines__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-slot-machines__feature-description {
  color: #e5dfd3;
}

.page-games-slot-machines__list,
.page-games-slot-machines__numbered-list,
.page-games-slot-machines__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-games-slot-machines__list li,
.page-games-slot-machines__numbered-list li,
.page-games-slot-machines__responsible-list li {
  background-color: #1A202C;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-games-slot-machines__numbered-list {
  counter-reset: my-awesome-counter;
}

.page-games-slot-machines__numbered-list li {
  position: relative;
  padding-left: 70px;
}

.page-games-slot-machines__numbered-list li::before {
  counter-increment: my-awesome-counter;
  content: counter(my-awesome-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-games-slot-machines__list-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-slot-machines__list-item-description {
  color: #e5dfd3;
}

.page-games-slot-machines__responsible-list li {
  border-left: 5px solid #FFD700;
  padding: 15px 25px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-games-slot-machines__theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-games-slot-machines__theme-item {
  background-color: #1A202C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #FFD700;
  transition: transform 0.3s ease;
}

.page-games-slot-machines__theme-item:hover {
  transform: translateY(-5px);
}

.page-games-slot-machines__theme-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-games-slot-machines__theme-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 15px 0 10px;
  padding: 0 15px;
}

.page-games-slot-machines__theme-description {
  color: #e5dfd3;
  padding: 0 15px 20px;
  font-size: 0.95em;
}

.page-games-slot-machines__cta-section {
  padding: 80px 0;
  background-color: #1A202C;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-games-slot-machines__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-games-slot-machines__cta-section .page-games-slot-machines__container {
  position: relative;
  z-index: 1;
}

.page-games-slot-machines__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-games-slot-machines__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-games-slot-machines__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-games-slot-machines__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-games-slot-machines__hero-title {
    font-size: 3em;
  }
  .page-games-slot-machines__hero-image {
    width: 50%;
  }
  .page-games-slot-machines__section-title {
    font-size: 2em;
  }
  .page-games-slot-machines__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-games-slot-machines__hero-section {
    padding: 80px 0 40px;
  }
  .page-games-slot-machines__hero-title {
    font-size: 2.5em;
    text-align: center;
  }
  .page-games-slot-machines__hero-description {
    font-size: 1em;
    text-align: center;
    max-width: 100%;
  }
  .page-games-slot-machines__hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-games-slot-machines__hero-image {
    position: static;
    width: 80%;
    margin-top: 30px;
    opacity: 0.9;
  }
  .page-games-slot-machines__section {
    padding: 40px 0;
  }
  .page-games-slot-machines__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-machines__text {
    font-size: 1em;
  }
  .page-games-slot-machines__feature-item,
  .page-games-slot-machines__theme-item {
    padding: 20px;
  }
  .page-games-slot-machines__list li,
  .page-games-slot-machines__numbered-list li,
  .page-games-slot-machines__responsible-list li {
    padding: 20px;
    margin-bottom: 10px;
  }
  .page-games-slot-machines__numbered-list li {
    padding-left: 60px;
  }
  .page-games-slot-machines__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
    left: 15px;
  }
  .page-games-slot-machines__cta-title {
    font-size: 2em;
  }
  .page-games-slot-machines__cta-description {
    font-size: 1.1em;
  }
  .page-games-slot-machines__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-games-slot-machines__button--large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-games-slot-machines__hero-title {
    font-size: 2em;
  }
  .page-games-slot-machines__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-slot-machines__button {
    width: 100%;
    max-width: 280px;
  }
  .page-games-slot-machines__section-title {
    font-size: 1.5em;
  }
  .page-games-slot-machines__feature-title,
  .page-games-slot-machines__list-item-title,
  .page-games-slot-machines__theme-title {
    font-size: 1.2em;
  }
  .page-games-slot-machines__cta-title {
    font-size: 1.8em;
  }
  .page-games-slot-machines__cta-description {
    font-size: 1em;
  }
}