.page-game-introduction-slots {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.page-game-introduction-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-introduction-slots__hero {
  background: linear-gradient(135deg, #0A2463 0%, #2a4a90 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-game-introduction-slots__hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 20px;
  }
}

.page-game-introduction-slots__hero-content {
  max-width: 600px;
  padding: 20px;
}

.page-game-introduction-slots__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B505; /* Gold for emphasis */
  line-height: 1.2;
}

.page-game-introduction-slots__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-introduction-slots__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .page-game-introduction-slots__hero-actions {
    justify-content: flex-start;
  }
}

.page-game-introduction-slots__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;
  border: none;
  cursor: pointer;
}

.page-game-introduction-slots__button--primary {
  background-color: #E3B505; /* Gold */
  color: #0A2463; /* Dark blue text */
}

.page-game-introduction-slots__button--primary:hover {
  background-color: #d1a504;
  transform: translateY(-2px);
}

.page-game-introduction-slots__button--secondary {
  background-color: transparent;
  color: #E3B505; /* Gold text */
  border: 2px solid #E3B505;
}

.page-game-introduction-slots__button--secondary:hover {
  background-color: rgba(227, 181, 5, 0.1);
  transform: translateY(-2px);
}

.page-game-introduction-slots__hero-image {
  max-width: 500px;
  padding: 20px;
}

.page-game-introduction-slots__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-game-introduction-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-introduction-slots__section--dark {
  background-color: #0A2463; /* Dark blue background */
  color: #f0f0f0;
}

.page-game-introduction-slots__section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #0A2463; /* Dark blue */
}

.page-game-introduction-slots__section--dark h2 {
  color: #E3B505; /* Gold */
}

.page-game-introduction-slots__section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-game-introduction-slots__section--dark p {
  color: #ccc;
}

.page-game-introduction-slots__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-introduction-slots__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-game-introduction-slots__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-introduction-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-game-introduction-slots__feature-item h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-introduction-slots__feature-item p {
  font-size: 1em;
  color: #666;
  margin-bottom: 0;
}

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

.page-game-introduction-slots__category-card {
  background-color: #1a3a7a; /* Slightly lighter dark blue */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
  color: #fff;
}

.page-game-introduction-slots__category-card:hover {
  transform: translateY(-10px);
}

.page-game-introduction-slots__category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-introduction-slots__category-card h3 {
  font-size: 1.4em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-game-introduction-slots__category-card p {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-game-introduction-slots__category-card .page-game-introduction-slots__button {
  background-color: #E3B505;
  color: #0A2463;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-introduction-slots__category-card .page-game-introduction-slots__button:hover {
  background-color: #d1a504;
}

.page-game-introduction-slots__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-game-introduction-slots__step-list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 70px;
}

.page-game-introduction-slots__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0A2463; /* Dark blue */
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-introduction-slots__step-list li h3 {
  color: #0A2463;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-introduction-slots__step-list li p {
  color: #666;
  font-size: 1em;
  margin-bottom: 0;
}

.page-game-introduction-slots__call-to-action {
  margin-top: 50px;
}

.page-game-introduction-slots__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-game-introduction-slots__tip-list li {
  background-color: #1a3a7a; /* Lighter dark blue for tips */
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-game-introduction-slots__tip-list li h3 {
  color: #E3B505; /* Gold for tip headings */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-introduction-slots__tip-list li p {
  color: #ccc;
  font-size: 1em;
  margin-bottom: 0;
}

.page-game-introduction-slots__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-introduction-slots__promo-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-game-introduction-slots__promo-card:hover {
  transform: translateY(-10px);
}

.page-game-introduction-slots__promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-introduction-slots__promo-card h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-introduction-slots__promo-card p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-game-introduction-slots__promo-card .page-game-introduction-slots__button {
  background-color: #0A2463;
  color: #E3B505;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-introduction-slots__promo-card .page-game-introduction-slots__button:hover {
  background-color: #1a3a7a;
}

.page-game-introduction-slots__section--faq {
  background-color: #f0f0f0;
  text-align: left;
}

.page-game-introduction-slots__section--faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.page-game-introduction-slots__faq-item {
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-introduction-slots__faq-item h3 {
  color: #0A2463;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-game-introduction-slots__faq-item p {
  color: #666;
  font-size: 1em;
  margin-bottom: 0;
  display: block; /* Ensure paragraph is always visible for this design */
}

.page-game-introduction-slots__section--final-cta {
  background: linear-gradient(45deg, #0A2463, #E3B505);
  color: #fff;
  padding: 80px 0;
}

.page-game-introduction-slots__section--final-cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

.page-game-introduction-slots__section--final-cta p {
  color: #eee;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-game-introduction-slots__final-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-introduction-slots__hero h1 {
    font-size: 2.5em;
  }
  .page-game-introduction-slots__hero p {
    font-size: 1em;
  }
  .page-game-introduction-slots__hero-actions {
    flex-direction: column;
  }
  .page-game-introduction-slots__button {
    width: 100%;
  }
  .page-game-introduction-slots__section h2 {
    font-size: 2em;
  }
  .page-game-introduction-slots__feature-grid, 
  .page-game-introduction-slots__game-categories, 
  .page-game-introduction-slots__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-game-introduction-slots__step-list li {
    padding-left: 20px;
  }
  .page-game-introduction-slots__step-list li::before {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .page-game-introduction-slots__final-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-game-introduction-slots__hero {
    padding: 60px 0;
  }
  .page-game-introduction-slots__hero h1 {
    font-size: 2em;
  }
  .page-game-introduction-slots__section {
    padding: 40px 0;
  }
  .page-game-introduction-slots__section h2 {
    font-size: 1.8em;
  }
}