.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-slot-games .intro-section {
  background: linear-gradient(135deg, #FF4500, #FF6347);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 5px solid #007BFF;
}

.page-slot-games .intro-section h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games .intro-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #007BFF;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-slot-games .cta-button:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

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

.page-slot-games h2 {
  font-size: 2.2em;
  color: #FF4500;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-slot-games h3 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
}

.page-slot-games .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-slot-games .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-slot-games .content-wrapper .text-block {
  flex: 1;
}

.page-slot-games .content-wrapper .image-block {
  flex: 1;
  min-width: 300px;
}

.page-slot-games .content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games ul {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-slot-games ul li {
  margin-bottom: 10px;
}

.page-slot-games .game-cards, .page-slot-games .promo-grid, .page-slot-games .news-grid, .page-slot-games .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slot-games .game-card, .page-slot-games .promo-card, .page-slot-games .news-card, .page-slot-games .info-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games .game-card:hover, .page-slot-games .promo-card:hover, .page-slot-games .news-card:hover, .page-slot-games .info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .card-image, .page-slot-games .promo-image, .page-slot-games .news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games .game-card h3, .page-slot-games .promo-card h3, .page-slot-games .news-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-slot-games .game-card h3 a, .page-slot-games .promo-card h3 a, .page-slot-games .news-card h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .game-card h3 a:hover, .page-slot-games .promo-card h3 a:hover, .page-slot-games .news-card h3 a:hover {
  color: #FF4500;
}

.page-slot-games .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: #007BFF;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.page-slot-games .cta-button-small:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

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

.page-slot-games .step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border-top: 5px solid #FF4500;
}

.page-slot-games .step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games .step-item h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .step-item h3 a:hover {
  color: #FF4500;
}

.page-slot-games .info-item {
  border-top: 5px solid #007BFF;
}

.page-slot-games .info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games .text-center {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games .faq-section {
  background-color: #f0f2f5;
  border-radius: 10px;
  padding: 40px;
}

.page-slot-games .faq-container {
  margin-top: 30px;
}

.page-slot-games .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-slot-games .faq-question:hover {
  background: #f5f5f5;
}

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.page-slot-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF4500;
  transition: transform 0.3s ease;
}

.page-slot-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #007BFF;
}

.page-slot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-radius: 0 0 5px 5px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
}

.page-slot-games .faq-answer p {
  margin: 0;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games .content-wrapper.reverse {
    flex-direction: column;
  }
  .page-slot-games .content-wrapper .image-block {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-slot-games .intro-section h1 {
    font-size: 2em;
  }
  .page-slot-games .intro-section p {
    font-size: 1em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-slot-games .game-cards, .page-slot-games .promo-grid, .page-slot-games .news-grid, .page-slot-games .info-grid, .page-slot-games .steps-container {
    grid-template-columns: 1fr;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-answer {
    padding: 10px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games section {
    padding: 30px 15px;
  }
  .page-slot-games .intro-section {
    padding: 40px 15px;
  }
  .page-slot-games h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-slot-games .game-card, .page-slot-games .promo-card, .page-slot-games .news-card, .page-slot-games .step-item, .page-slot-games .info-item {
    padding: 20px;
  }
  .page-slot-games .card-image, .page-slot-games .promo-image, .page-slot-games .news-image {
    height: 160px;
  }
  .page-slot-games .step-icon, .page-slot-games .info-icon {
    width: 80px;
    height: 80px;
  }
}