.page-blog-how-to-choose-best-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-best-slot-games__hero-section {
  padding-top: var(--header-offset, 120px); /* For fixed header */
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Main and Auxiliary colors */
  position: relative;
  overflow: hidden;
}

.page-blog-how-to-choose-best-slot-games__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
}

.page-blog-how-to-choose-best-slot-games__hero-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and text */
}

.page-blog-how-to-choose-best-slot-games__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-slot-games__hero-text-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-how-to-choose-best-slot-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for H1 */
  color: #ffffff; /* White text for contrast on gradient */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-slot-games__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text on button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%; /* For mobile */
  box-sizing: border-box; /* For mobile */
  white-space: normal; /* For mobile */
  word-wrap: break-word; /* For mobile */
}

.page-blog-how-to-choose-best-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-best-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-best-slot-games__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-choose-best-slot-games__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Main color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games__sub-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-best-slot-games p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-best-slot-games__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-best-slot-games__list li {
  margin-bottom: 10px;
  color: #FFF6D6; /* Text Main */
}

.page-blog-how-to-choose-best-slot-games__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-how-to-choose-best-slot-games__faq-list {
  margin-top: 40px;
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-how-to-choose-best-slot-games__faq-item {
  border-bottom: 1px solid #3A2A12; /* Border color */
}

.page-blog-how-to-choose-best-slot-games__faq-item:last-child {
  border-bottom: none;
}

.page-blog-how-to-choose-best-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-best-slot-games__faq-question:hover {
  background-color: #1f1f1f;
}

.page-blog-how-to-choose-best-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Auxiliary color */
}

.page-blog-how-to-choose-best-slot-games__faq-item.active .page-blog-how-to-choose-best-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-choose-best-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-blog-how-to-choose-best-slot-games__faq-item.active .page-blog-how-to-choose-best-slot-games__faq-answer {
  max-height: 1000px !important;
  padding: 15px 20px;
}

.page-blog-how-to-choose-best-slot-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-choose-best-slot-games__btn-primary,
.page-blog-how-to-choose-best-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-choose-best-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text */
}

.page-blog-how-to-choose-best-slot-games__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #3A2A12; /* Border color */
}

.page-blog-how-to-choose-best-slot-games__btn-primary:hover,
.page-blog-how-to-choose-best-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-choose-best-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-best-slot-games__hero-section {
    padding-top: var(--header-offset, 100px) !important;
  }

  .page-blog-how-to-choose-best-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-choose-best-slot-games__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-choose-best-slot-games__sub-title {
    font-size: 1.5em;
  }

  .page-blog-how-to-choose-best-slot-games__hero-image,
  .page-blog-how-to-choose-best-slot-games__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-how-to-choose-best-slot-games__hero-image-container,
  .page-blog-how-to-choose-best-slot-games__content-area,
  .page-blog-how-to-choose-best-slot-games__container,
  .page-blog-how-to-choose-best-slot-games__faq-list,
  .page-blog-how-to-choose-best-slot-games__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-best-slot-games__cta-button,
  .page-blog-how-to-choose-best-slot-games__btn-primary,
  .page-blog-how-to-choose-best-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-choose-best-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}