/* style/slots-games.css */
.page-slots-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-slots-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-slots-games__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-slots-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e9ecef;
}

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

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

.page-slots-games__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #0056b3; /* Darker primary for contrast */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-slots-games__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-slots-games__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-slots-games__btn--secondary:hover {
  background-color: #ffc107;
  color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-slots-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-slots-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-slots-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-slots-games__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  filter: brightness(0.8) contrast(1.2);
  transform: translateX(10%);
}

/* General Section Styling */
.page-slots-games__introduction, .page-slots-games__game-types, .page-slots-games__why-choose, .page-slots-games__promotions, .page-slots-games__how-to-play, .page-slots-games__tips-strategies, .page-slots-games__detail-pages, .page-slots-games__faq, .page-slots-games__cta-final {
  padding: 60px 0;
  text-align: center;
}

.page-slots-games__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slots-games__introduction p, .page-slots-games__promotions p, .page-slots-games__tips-strategies p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Types Grid */
.page-slots-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games__game-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games__game-card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-slots-games__game-card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-slots-games__game-card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

/* Why Choose Section */
.page-slots-games__why-choose {
  background-color: #e9f5ff;
}

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

.page-slots-games__feature-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-slots-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3));
}

.page-slots-games__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-slots-games__feature-description {
  font-size: 0.95em;
  color: #666;
}

.page-slots-games__download-app {
  margin-top: 50px;
}

/* Promotions Section */
.page-slots-games__promotions {
  background-color: #fff8e1; /* Lighter auxiliary color background */
}

.page-slots-games__promotion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games__promotion-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slots-games__promotion-item:hover {
  transform: translateY(-10px);
}

.page-slots-games__promotion-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-slots-games__promotion-title {
  font-size: 1.8em;
  color: #ffc107; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-slots-games__promotion-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-slots-games__promotion-cta {
  margin-top: 40px;
  font-size: 1.2em;
  color: #333;
}

/* How To Play Section */
.page-slots-games__how-to-play {
  background-color: #f8f9fa;
}

.page-slots-games__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slots-games__steps-list li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slots-games__steps-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #007bff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.4);
}

.page-slots-games__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-slots-games__steps-list p {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

/* Tips & Strategies Section */
.page-slots-games__tips-strategies {
  background-color: #e9f5ff;
}

.page-slots-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slots-games__tips-list li {
  background-color: #ffffff;
  border-left: 5px solid #ffc107;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 1.05em;
}

.page-slots-games__tips-list li strong {
  color: #007bff;
}

/* Detail Pages Section */
.page-slots-games__detail-pages {
  background-color: #f8f9fa;
}

.page-slots-games__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games__detail-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-slots-games__detail-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slots-games__detail-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slots-games__detail-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-slots-games__detail-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-slots-games__faq {
  background-color: #e9f5ff;
}

.page-slots-games__accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slots-games__accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slots-games__accordion-header {
  width: 100%;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
  background-color: #ffffff;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slots-games__accordion-header:hover {
  background-color: #f0f8ff;
}

.page-slots-games__accordion-header:after {
  content: '+';
  font-size: 1.5em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-slots-games__accordion-header.active:after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-games__accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slots-games__accordion-body.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-slots-games__accordion-body p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

/* Final CTA */
.page-slots-games__cta-final {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
}

.page-slots-games__cta-final .page-slots-games__section-title {
  color: #ffc107;
}

.page-slots-games__cta-final p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games__hero-description {
    font-size: 1.2em;
  }
  .page-slots-games__section-title {
    font-size: 2em;
  }
  .page-slots-games__hero-image-wrapper {
    width: 100%;
    height: 50%;
    position: relative;
    transform: none;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
  }
  .page-slots-games__hero-image {
    transform: none;
    max-width: 80%;
  }
  .page-slots-games__hero-content {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-slots-games__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games__hero-description {
    font-size: 1em;
  }
  .page-slots-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games__btn--primary, .page-slots-games__btn--secondary {
    width: 80%;
    max-width: 300px;
  }
  .page-slots-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games__game-card, .page-slots-games__feature-item, .page-slots-games__promotion-item, .page-slots-games__detail-card {
    padding: 20px;
  }
  .page-slots-games__game-card-title, .page-slots-games__feature-title, .page-slots-games__promotion-title {
    font-size: 1.5em;
  }
  .page-slots-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slots-games__accordion-body {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slots-games__hero {
    padding: 60px 0;
  }
  .page-slots-games__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games__hero-description {
    font-size: 0.9em;
  }
  .page-slots-games__btn--primary, .page-slots-games__btn--secondary {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-slots-games__section-title {
    font-size: 1.5em;
  }
  .page-slots-games__introduction p, .page-slots-games__promotions p, .page-slots-games__tips-strategies p {
    font-size: 0.95em;
  }
  .page-slots-games__game-card-image {
    height: 150px;
  }
  .page-slots-games__steps-list li:before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-slots-games__step-title {
    font-size: 1.3em;
  }
  .page-slots-games__tips-list li {
    font-size: 0.95em;
  }
}