.page-blog-slot-machine-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-blog-slot-machine-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-slot-machine-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-slot-machine-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit hero image height for better content visibility */
}

.page-blog-slot-machine-strategy__hero-content {
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.8) 0%, #0D0E12 100%); /* Overlay for text readability */
  width: 100%;
  box-sizing: border-box;
}

.page-blog-slot-machine-strategy__main-title {
  font-size: clamp(1.8rem, 4vw, 3rem); /* Responsive font size */
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-slot-machine-strategy__description {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-slot-machine-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid #17191F; /* Card BG as separator */
}

.page-blog-slot-machine-strategy__section:last-of-type {
  border-bottom: none;
}

.page-blog-slot-machine-strategy__section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #FF8C1A; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-slot-machine-strategy__sub-title {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-slot-machine-strategy__paragraph {
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-blog-slot-machine-strategy__keyword {
  color: #FFB04D; /* Highlight keywords with Glow color */
  font-weight: bold;
}

.page-blog-slot-machine-strategy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-blog-slot-machine-strategy__list-item {
  margin-bottom: 10px;
}

.page-blog-slot-machine-strategy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-blog-slot-machine-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-slot-machine-strategy__cta-button:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%); /* Slightly lighter hover */
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

.page-blog-slot-machine-strategy__cta-button--wide {
  display: block;
  width: fit-content;
  margin: 40px auto;
  text-align: center;
  max-width: 90%;
}

.page-blog-slot-machine-strategy__cta-button--final {
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-slot-machine-strategy__faq-list {
  margin-top: 30px;
}

.page-blog-slot-machine-strategy__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-slot-machine-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  position: relative;
  list-style: none; /* For details/summary */
}

.page-blog-slot-machine-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-slot-machine-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-slot-machine-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A; /* Primary color */
}

.page-blog-slot-machine-strategy__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

.page-blog-slot-machine-strategy__faq-item[open] .page-blog-slot-machine-strategy__faq-question {
  border-bottom: 1px solid #A84F0C;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-slot-machine-strategy__container {
    padding: 0 15px;
  }

  .page-blog-slot-machine-strategy__hero-content {
    padding: 20px 15px;
  }

  .page-blog-slot-machine-strategy__main-title {
    font-size: 2rem;
  }

  .page-blog-slot-machine-strategy__description {
    font-size: 1rem;
  }

  .page-blog-slot-machine-strategy__section {
    padding: 40px 0;
  }

  .page-blog-slot-machine-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-slot-machine-strategy__sub-title {
    font-size: 1.4rem;
  }

  .page-blog-slot-machine-strategy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-slot-machine-strategy__cta-button--wide {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-slot-machine-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Ensure all containers with images/buttons are responsive */
  .page-blog-slot-machine-strategy__section,
  .page-blog-slot-machine-strategy__card,
  .page-blog-slot-machine-strategy__container,
  .page-blog-slot-machine-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-slot-machine-strategy__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-slot-machine-strategy__hero-image {
    max-height: 300px;
  }

  .page-blog-slot-machine-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-slot-machine-strategy__faq-answer {
    padding: 0 20px 15px;
  }
}