.page-slot-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-slot-games section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-slot-games section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-slot-games h1 {
  font-size: 3.2em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-slot-games h2 {
  font-size: 2.5em;
  border-bottom: 3px solid #ffc107;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-slot-games p {
  text-align: justify;
  margin-bottom: 15px;
}

.page-slot-games .text-center {
  text-align: center;
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #ffc107, #ff9800);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
  border: none;
  cursor: pointer;
}

.page-slot-games .cta-button:hover {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-slot-games .secondary-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #007bff;
  text-decoration: none;
  border: 2px solid #007bff;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.page-slot-games .secondary-button:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

/* Hero Section */
.page-slot-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  overflow: hidden;
}

.page-slot-games .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-slot-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Adjust max-width for content images */
}

.page-slot-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-slot-games .hero-content p {
  font-size: 1.15em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: center;
}

/* Intro Section */
.page-slot-games .section-intro {
  background-color: #fefefe;
}

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

.page-slot-games .intro-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .intro-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games .intro-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slot-games .intro-item p {
  color: #555555;
  text-align: center;
}

/* Game Types Section */
.page-slot-games .section-game-types {
  background-color: #eaf4ff;
}

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

.page-slot-games .game-type-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .game-type-card img {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games .game-type-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #007bff;
}

.page-slot-games .game-type-card h3 a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .game-type-card h3 a:hover {
  color: #ffc107;
}

.page-slot-games .game-type-card p {
  color: #555555;
  text-align: center;
}

/* How to Play Section */
.page-slot-games .section-how-to-play {
  background-color: #fefefe;
}

.page-slot-games .play-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-slot-games .play-steps li {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  padding: 25px 30px 25px 80px;
  margin-bottom: 25px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .play-steps li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games .play-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  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;
}

.page-slot-games .play-steps li h3 {
  text-align: left;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
}

.page-slot-games .play-steps li h3 a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games .play-steps li h3 a:hover {
  color: #ffc107;
}

.page-slot-games .play-steps li p {
  text-align: justify;
  color: #555555;
  margin-bottom: 0;
}

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

/* Promotions Section */
.page-slot-games .section-promotions {
  background-color: #fff8e1;
}

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

.page-slot-games .promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .promo-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games .promo-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #ffc107;
}

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

.page-slot-games .promo-card h3 a:hover {
  color: #007bff;
}

.page-slot-games .promo-card p {
  color: #555555;
  text-align: center;
}

.page-slot-games .promo-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-slot-games .promo-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Security & Support Section */
.page-slot-games .section-security-support {
  background-color: #eaf4ff;
}

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

.page-slot-games .security-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .security-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games .security-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.page-slot-games .security-item p {
  color: #555555;
  text-align: center;
}

/* FAQ Section */
.page-slot-games .section-faq {
  background-color: #fefefe;
}

.page-slot-games .faq-list {
  margin-top: 40px;
}

.page-slot-games .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  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.3em;
  color: #007bff;
  text-align: left;
}

.page-slot-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffc107;
  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: #f9f9f9;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-slot-games .faq-answer p {
  margin-bottom: 10px;
  color: #555555;
  text-align: justify;
}

.page-slot-games .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-slot-games .faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games .faq-answer a:hover {
  text-decoration: underline;
}

/* Tips Section */
.page-slot-games .section-tips {
  background-color: #eaf4ff;
}

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

.page-slot-games .tip-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games .tip-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games .tip-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #007bff;
}

.page-slot-games .tip-card p {
  color: #555555;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games h1 {
    font-size: 2.8em;
  }
  .page-slot-games h2 {
    font-size: 2em;
  }
  .page-slot-games .hero-section {
    padding: 60px 15px;
  }
  .page-slot-games .cta-button, .page-slot-games .secondary-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-slot-games .play-steps li {
    padding: 20px 25px 20px 70px;
  }
  .page-slot-games .play-steps li::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
  .page-slot-games .faq-item.active .faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: 2.2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
    padding-bottom: 8px;
  }
  .page-slot-games h3 {
    font-size: 1.3em;
  }
  .page-slot-games p {
    font-size: 0.95em;
  }
  .page-slot-games .hero-content p {
    font-size: 1em;
  }
  .page-slot-games .hero-image {
    margin-bottom: 20px;
  }
  .page-slot-games .cta-button, .page-slot-games .secondary-button {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
  }
  .page-slot-games .secondary-button {
    margin-top: 15px;
  }
  .page-slot-games .intro-grid, .page-slot-games .game-type-grid, .page-slot-games .promo-grid, .page-slot-games .security-grid, .page-slot-games .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games .intro-item, .page-slot-games .game-type-card, .page-slot-games .promo-card, .page-slot-games .security-item, .page-slot-games .tip-card {
    padding: 25px;
  }
  .page-slot-games .play-steps li {
    padding: 18px 20px 18px 60px;
  }
  .page-slot-games .play-steps li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-slot-games .play-steps li h3 {
    font-size: 1.3em;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 18px;
  }
  .page-slot-games .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games h2 {
    font-size: 1.5em;
  }
  .page-slot-games h3 {
    font-size: 1.2em;
  }
  .page-slot-games .hero-section {
    padding: 40px 10px;
  }
  .page-slot-games .hero-content p {
    font-size: 0.9em;
  }
  .page-slot-games .cta-button, .page-slot-games .secondary-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-slot-games .play-steps li {
    padding: 15px 15px 15px 50px;
  }
  .page-slot-games .play-steps li::before {
    left: 10px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-slot-games .play-steps li h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-question {
    padding: 12px 15px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 0.9em;
  }
  .page-slot-games .faq-toggle {
    font-size: 16px;
  }
  .page-slot-games .faq-item.active .faq-answer {
    padding: 8px 10px;
  }
}