.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensuring consistency with body background */
}

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

.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height to maintain aspect ratio without excessive height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over image, ensure readability */
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 4vw, 3rem); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-slot-games__description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

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

.page-slot-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-slot-games__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.page-slot-games__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-slot-games__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

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

.page-slot-games__light-text {
  color: #ffffff;
}

.page-slot-games__dark-text {
  color: #333333;
}

/* Introduction Section */
.page-slot-games__introduction-section {
  padding: 60px 0;
}

/* Products Section */
.page-slot-games__products-section {
  padding: 60px 0;
}

.page-slot-games__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__product-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games__product-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__product-link {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games__product-link:hover {
  color: #1a8cc7;
}

.page-slot-games__product-desc {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-slot-games__btn-play {
  display: inline-block;
  padding: 10px 20px;
  background-color: #EA7C07;
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games__btn-play:hover {
  background-color: #c76706;
}

.page-slot-games__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

/* Types Section */
.page-slot-games__types-section {
  padding: 60px 0;
}

.page-slot-games__type-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__type-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__type-title {
  font-size: 1.8rem;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-slot-games__type-desc {
  font-size: 1rem;
  color: #555555;
}

/* Guide Section */
.page-slot-games__guide-section {
  padding: 60px 0;
}

.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
  margin-top: 40px;
}

.page-slot-games__guide-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.page-slot-games__guide-item::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-slot-games__guide-title {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-slot-games__guide-desc {
  font-size: 1rem;
  color: #f0f0f0;
}

/* Strategy Section */
.page-slot-games__strategy-section {
  padding: 60px 0;
}

.page-slot-games__strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-slot-games__strategy-list {
  list-style: disc;
  padding-left: 20px;
}

.page-slot-games__strategy-item {
  margin-bottom: 20px;
}

.page-slot-games__strategy-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 5px;
}

.page-slot-games__strategy-desc {
  font-size: 1rem;
  color: #555555;
}

.page-slot-games__strategy-image-wrapper {
  text-align: center;
}

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

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

.page-slot-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games__promo-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__promo-desc {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

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

.page-slot-games__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__advantages-item {
  background: #f8f8f8;
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-games__advantages-title {
  font-size: 1.6rem;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-slot-games__advantages-desc {
  font-size: 1rem;
  color: #555555;
}

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

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

.page-slot-games__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #ffffff;
  list-style: none; /* For details/summary */
}

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

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

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

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__products-grid,
  .page-slot-games__type-list,
  .page-slot-games__promotions-grid,
  .page-slot-games__advantages-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .page-slot-games__strategy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    min-height: 400px;
  }

  .page-slot-games__hero-content {
    margin-top: -50px; /* Adjust overlap for mobile */
    padding: 25px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
  }

  .page-slot-games__description {
    font-size: 1rem;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem;
  }

  .page-slot-games__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  /* Products Section - Mobile */
  .page-slot-games__products-grid {
    grid-template-columns: 1fr !important; /* One column for products */
    gap: 20px;
    padding: 0 15px;
    overflow-x: hidden;
  }

  .page-slot-games__product-card {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-slot-games__product-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* General Image & Container Adaptations */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Types Section - Mobile */
  .page-slot-games__type-list {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 15px;
  }

  .page-slot-games__type-item {
    padding: 20px;
  }

  .page-slot-games__type-title {
    font-size: 1.5rem;
  }

  /* Guide Section - Mobile */
  .page-slot-games__guide-item {
    padding-left: 45px;
  }

  .page-slot-games__guide-item::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .page-slot-games__guide-title {
    font-size: 1.4rem;
  }

  /* Strategy Section - Mobile */
  .page-slot-games__strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 0 15px;
  }

  /* Promotions Section - Mobile */
  .page-slot-games__promotions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 15px;
  }

  .page-slot-games__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Why Choose Section - Mobile */
  .page-slot-games__advantages-list {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 15px;
  }

  /* FAQ Section - Mobile */
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-slot-games__faq-toggle {
    font-size: 1.2rem;
  }

  .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }

  .page-slot-games__text-block, .page-slot-games p, .page-slot-games li {
    font-size: 15px;
    line-height: 1.6;
  }
}