.page-slot-games {
  padding-top: 10px; /* Small top padding for content, body handles main header offset */
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px 40px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

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

.page-slot-games__hero-content-wrapper {
  max-width: 900px;
}

.page-slot-games__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem); /* Adjusted for better desktop/mobile balance */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.page-slot-games__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__hero-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-slot-games__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-slot-games__section {
  padding: 40px 15px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-slot-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-slot-games__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-slot-games__content-wrapper p {
  line-height: 1.7;
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
}

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

.page-slot-games__slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

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

.page-slot-games__slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B;
}

.page-slot-games__card-link {
  text-decoration: none;
  color: #FFF6D6;
  display: block;
  flex-grow: 1;
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

.page-slot-games__card-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin: 15px 10px 10px;
  line-height: 1.4;
}

.page-slot-games__card-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-slot-games__card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.page-slot-games__card-button:hover {
  filter: brightness(1.1);
}

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

.page-slot-games__tip-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__why-choose-bh88 .page-slot-games__content-wrapper {
  flex-direction: column-reverse; /* Image at bottom for mobile */
}

.page-slot-games__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games__feature-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-title {
  font-size: 1.25rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

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

.page-slot-games__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  width: 100%;
  background-color: #111111;
  color: #F2C14E;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 20px;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slot-games__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slot-games__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #0A0A0A;
}

.page-slot-games__faq-answer p {
  padding-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.page-slot-games__cta-section {
  text-align: center;
  padding: 50px 15px;
  background-color: #111111;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

.page-slot-games__cta-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-slot-games__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 211, 107, 0.5);
}

.page-slot-games__cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.7);
}

@media (min-width: 769px) {
  .page-slot-games__hero-section {
    flex-direction: row;
    text-align: left;
    padding: 60px 30px;
  }

  .page-slot-games__hero-image-wrapper {
    flex: 1;
    margin-bottom: 0;
    margin-right: 40px;
  }

  .page-slot-games__hero-content-wrapper {
    flex: 1;
    text-align: left;
  }

  .page-slot-games__hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .page-slot-games__content-wrapper {
    flex-direction: row;
    gap: 50px;
    text-align: left;
  }

  .page-slot-games__content-wrapper p {
    text-align: left;
  }

  .page-slot-games__content-wrapper .page-slot-games__content-image {
    flex: 1;
    max-width: 50%;
  }

  .page-slot-games__content-wrapper .page-slot-games__tip-list,
  .page-slot-games__content-wrapper .page-slot-games__feature-list {
    flex: 1;
    max-width: 50%;
    margin: 0;
  }

  .page-slot-games__feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-slot-games__why-choose-bh88 .page-slot-games__content-wrapper {
    flex-direction: row;
  }

  .page-slot-games__faq-question:hover {
    background-color: #0A0A0A;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-image,
  .page-slot-games__content-image,
  .page-slot-games__card-image {
    max-width: 100%;
    height: auto;
  }

  .page-slot-games__card-image {
    height: 180px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 549px) {
  .page-slot-games__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-slot-games__cta-title {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  }
  .page-slot-games__content-wrapper p,
  .page-slot-games__tip-item,
  .page-slot-games__feature-description,
  .page-slot-games__faq-answer p {
    text-align: left;
  }
  .page-slot-games__hero-description {
    font-size: 0.95rem;
  }
  .page-slot-games__hero-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .page-slot-games__cta-button {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
  .page-slot-games__card-image {
    height: 160px; /* Further adjust height for very small screens */
  }
}