/* General Styles for Slot Games Page */
.page-slot-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games__section-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #FFF6D6;
  border: 2px solid #F2C14E;
}

.page-slot-games__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
}

/* HERO Section */
.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-slot-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-slot-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5em, 5vw, 4em); /* Use clamp for H1 */
  color: #FFD36B;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFF6D6;
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Why Choose Section */
.page-slot-games__why-choose-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-slot-games__feature-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-slot-games__feature-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-slot-games__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Popular Games Section */
.page-slot-games__popular-games-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-slot-games__game-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF6D6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__game-title {
  font-size: 1.3em;
  color: #F2C14E;
  padding: 15px 20px 5px;
}

.page-slot-games__game-provider {
  font-size: 0.9em;
  color: #FFF6D6;
  padding: 0 20px 15px;
  opacity: 0.8;
}

.page-slot-games__view-all-button-wrapper {
  text-align: center;
}

/* How To Play Section */
.page-slot-games__how-to-play-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-slot-games__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__step-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* Tips Section */
.page-slot-games__tips-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__tip-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #FFF6D6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__tip-item strong {
  color: #F2C14E;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-slot-games__promo-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF6D6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__promo-title {
  font-size: 1.3em;
  color: #F2C14E;
  padding: 15px 20px 5px;
}

.page-slot-games__promo-text {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 20px 15px;
  flex-grow: 1;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E;
  cursor: pointer;
  list-style: none;
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFD36B;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF6D6;
  line-height: 1.6;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

/* Bottom CTA Section */
.page-slot-games__cta-bottom-section {
  padding: 80px 0;
  background-color: #0A0A0A;
  text-align: center;
}

.page-slot-games__cta-bottom-section .page-slot-games__cta-buttons {
  margin-top: 40px;
}

/* Image responsiveness for all images */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles (max-width: 768px) */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-slot-games__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-slot-games__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px;
  }

  .page-slot-games__main-title {
    font-size: 2.2em; /* Smaller H1 for mobile */
    line-height: 1.1;
  }

  .page-slot-games__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Why Choose Section */
  .page-slot-games__why-choose-section {
    padding: 40px 0;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-slot-games__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-slot-games__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Popular Games Section */
  .page-slot-games__popular-games-section {
    padding: 40px 0;
  }

  .page-slot-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-slot-games__game-image {
    height: 200px; /* Adjust height for mobile */
  }

  /* How To Play Section */
  .page-slot-games__how-to-play-section {
    padding: 40px 0;
  }

  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Tips Section */
  .page-slot-games__tips-section {
    padding: 40px 0;
  }

  .page-slot-games__tip-item {
    padding: 15px 20px;
    font-size: 1em;
  }

  /* Promotions Section */
  .page-slot-games__promotions-section {
    padding: 40px 0;
  }

  .page-slot-games__promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-slot-games__promo-image {
    height: 180px; /* Adjust height for mobile */
  }

  /* FAQ Section */
  .page-slot-games__faq-section {
    padding: 40px 0;
  }

  .page-slot-games__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Bottom CTA Section */
  .page-slot-games__cta-bottom-section {
    padding: 40px 0;
  }

  .page-slot-games__cta-bottom-section .page-slot-games__cta-buttons {
    margin-top: 30px;
  }

  /* Universal image and container responsiveness for mobile */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Generic content area images */
.page-slot-games__feature-icon,
.page-slot-games__game-image,
.page-slot-games__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no small icons */
.page-slot-games img:not(.shared-logo):not(.shared-social-icon):not(.shared-payment-icon) {
  min-width: 200px;
  min-height: 200px;
}

/* Text contrast fixes if needed, though default colors should be fine */
.page-slot-games__dark-bg {
  color: #ffffff;
  background: #F2C14E; /* Example, ensure contrast */
}

.page-slot-games__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-slot-games__medium-bg {
  color: #000000;
  background: #FFD36B;
}

.page-slot-games__content-area,
.page-slot-games__text-block {
  color: #FFF6D6; /* Main text color */
}

.page-slot-games p,
.page-slot-games li {
  color: #FFF6D6; /* Main text color */
}

.page-slot-games__card {
  background: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border */
}

.page-slot-games__dark-section {
  background: #0A0A0A;
  color: #FFF6D6;
}