/* style/game-types-slots.css */
.page-game-types-slots {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0;
  background-color: #1a1a2e;
  line-height: 1.6;
}

.page-game-types-slots .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-slots section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-slots h1, .page-game-types-slots h2, .page-game-types-slots h3 {
  color: #E3B505;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-game-types-slots h1 {
  font-size: 3.2em;
  color: #FFF;
}

.page-game-types-slots h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-game-types-slots h3 {
  font-size: 1.8em;
  color: #F0F0F0;
}

.page-game-types-slots p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-game-types-slots ul, .page-game-types-slots ol {
  list-style-position: inside;
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 0;
}

.page-game-types-slots ul li, .page-game-types-slots ol li {
  margin-bottom: 10px;
  color: #D0D0D0;
  font-size: 1.1em;
}

.page-game-types-slots ul li strong {
  color: #E3B505;
}

.page-game-types-slots .btn {
  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.3s ease;
  margin: 10px;
}

.page-game-types-slots .btn-primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-game-types-slots .btn-primary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-game-types-slots .btn-secondary {
  background-color: #0A2463;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-game-types-slots .btn-secondary:hover {
  background-color: #1e3a7a;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Hero Section */
.page-game-types-slots .hero-section {
  background: linear-gradient(135deg, #0A2463, #1e3a7a);
  color: #FFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-game-types-slots .hero-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-game-types-slots .hero-content {
  flex: 1;
  min-width: 300px;
}

.page-game-types-slots .hero-content h1 {
  font-size: 3.8em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-game-types-slots .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #D0D0D0;
}

.page-game-types-slots .hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-types-slots .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Game Types Section */
.page-game-types-slots .section-game-types {
  background-color: #0A2463;
}

.page-game-types-slots .game-type-card {
  background-color: #1e3a7a;
  border-radius: 12px;
  margin: 30px auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-slots .game-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-game-types-slots .card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #E3B505;
}

.page-game-types-slots .card-content h3 {
  color: #E3B505;
  font-size: 2em;
  margin-bottom: 15px;
}

.page-game-types-slots .card-content p {
  color: #D0D0D0;
  font-size: 1.05em;
  margin-bottom: 25px;
}

/* Benefits Section */
.page-game-types-slots .section-benefits {
  background-color: #1a1a2e;
}

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

.page-game-types-slots .benefit-item {
  background-color: #0A2463;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-types-slots .benefit-item:hover {
  transform: translateY(-5px);
}

.page-game-types-slots .benefit-item .benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.7));
}

.page-game-types-slots .benefit-item h3 {
  color: #E3B505;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-types-slots .benefit-item p {
  color: #D0D0D0;
  font-size: 1em;
}

/* How to Play Section */
.page-game-types-slots .section-how-to-play {
  background-color: #0A2463;
}

.page-game-types-slots .section-how-to-play ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-game-types-slots .section-how-to-play ol li {
  position: relative;
  text-align: left;
  padding: 20px 20px 20px 80px;
  margin-bottom: 25px;
  background-color: #1e3a7a;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-types-slots .section-how-to-play ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E3B505;
  color: #0A2463;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-game-types-slots .section-how-to-play ol li h3 {
  margin-top: 0;
  color: #E3B505;
}

.page-game-types-slots .section-how-to-play .btn-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

/* Promotions Section */
.page-game-types-slots .section-promotions {
  background-color: #1a1a2e;
}

.page-game-types-slots .promotion-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  margin: 30px auto;
  border: 2px solid #E3B505;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Tips Section */
.page-game-types-slots .section-tips {
  background-color: #0A2463;
}

.page-game-types-slots .section-tips ul {
  list-style: disc;
  text-align: left;
}

.page-game-types-slots .section-tips ul li {
  margin-bottom: 15px;
  padding-left: 10px;
  color: #D0D0D0;
}

.page-game-types-slots .section-tips ul li strong {
  color: #E3B505;
}

/* Mobile App Section */
.page-game-types-slots .section-mobile-app {
  background-color: #1a1a2e;
}

.page-game-types-slots .app-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-game-types-slots .app-text {
  flex: 1;
  min-width: 300px;
}

.page-game-types-slots .app-text ul {
  list-style: disc;
  padding-left: 20px;
}

.page-game-types-slots .app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-game-types-slots .app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #E3B505;
}

/* Responsible Gaming Section */
.page-game-types-slots .section-responsible-gaming {
  background-color: #0A2463;
  padding-bottom: 80px;
}

/* FAQ Section */
.page-game-types-slots .section-faq {
  background-color: #1a1a2e;
}

.page-game-types-slots .faq-item {
  background-color: #0A2463;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-types-slots .faq-question {
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #E3B505;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-game-types-slots .faq-question:hover {
  background-color: #1e3a7a;
}

.page-game-types-slots .faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E3B505;
}

.page-game-types-slots .faq-item.active .faq-question::after {
  content: '-';
}

.page-game-types-slots .faq-answer {
  padding: 0 30px 20px;
  font-size: 1.05em;
  color: #D0D0D0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-types-slots .faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Final CTA Section */
.page-game-types-slots .section-cta-final {
  background-color: #0A2463;
  padding-top: 80px;
  padding-bottom: 100px;
}

.page-game-types-slots .section-cta-final h2 {
  color: #FFF;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-slots .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .page-game-types-slots .hero-content, .page-game-types-slots .hero-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-game-types-slots .hero-content h1 {
    font-size: 3em;
  }

  .page-game-types-slots .game-type-card {
    flex-direction: column;
  }

  .page-game-types-slots .app-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-game-types-slots .app-text, .page-game-types-slots .app-image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-game-types-slots .app-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-game-types-slots h1 {
    font-size: 2.8em;
  }
  .page-game-types-slots h2 {
    font-size: 2em;
  }
  .page-game-types-slots h3 {
    font-size: 1.5em;
  }
  .page-game-types-slots p, .page-game-types-slots ul li, .page-game-types-slots ol li {
    font-size: 1em;
  }
  .page-game-types-slots .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-slots .hero-content h1 {
    font-size: 2.5em;
  }

  .page-game-types-slots .section-how-to-play ol li {
    padding: 15px 15px 15px 65px;
  }

  .page-game-types-slots .section-how-to-play ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.4em;
    left: 15px;
  }

  .page-game-types-slots .promotion-image {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-game-types-slots h1 {
    font-size: 2.2em;
  }
  .page-game-types-slots h2 {
    font-size: 1.8em;
  }
  .page-game-types-slots .hero-content h1 {
    font-size: 2em;
  }
  .page-game-types-slots .hero-content p {
    font-size: 1em;
  }
  .page-game-types-slots .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .page-game-types-slots .faq-question {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-game-types-slots .faq-answer {
    padding: 0 25px 15px;
  }
}