/* style/blog-top-slot-games.css */
.page-blog-top-slot-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px;
}

.page-blog-top-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body handles --header-offset */
  background-color: #08160F;
}

.page-blog-top-slot-games__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-top-slot-games__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px 40px;
  color: #F2FFF6;
}

.page-blog-top-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-top-slot-games__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-top-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

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

.page-blog-top-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-top-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-blog-top-slot-games__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-top-slot-games__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

.page-blog-top-slot-games__section {
  padding: 50px 0;
  background-color: #08160F;
}

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

.page-blog-top-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-top-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-top-slot-games__text-block {
  font-size: 1.1rem;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-top-slot-games__image-content {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  object-fit: cover;
}

.page-blog-top-slot-games__read-more-btn,
.page-blog-top-slot-games__view-all-btn,
.page-blog-top-slot-games__view-promotions-btn,
.page-blog-top-slot-games__contact-btn {
  display: block;
  margin: 30px auto 0;
  width: fit-content;
}

.page-blog-top-slot-games__faq-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
}

.page-blog-top-slot-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-top-slot-games__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-top-slot-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-blog-top-slot-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-top-slot-games__faq-item summary:hover {
  background-color: #13994A;
}

.page-blog-top-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-blog-top-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-top-slot-games__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-top-slot-games__faq-answer p {
  margin-bottom: 15px;
}

.page-blog-top-slot-games__faq-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-width: 1px;
}

.page-blog-top-slot-games__final-cta {
  margin-top: 50px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-top-slot-games__hero-content {
    padding: 0 15px 30px;
  }

  .page-blog-top-slot-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-top-slot-games__hero-description {
    font-size: 1rem;
  }

  .page-blog-top-slot-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

  .page-blog-top-slot-games__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-top-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-top-slot-games__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-top-slot-games__hero-content {
    padding: 0 15px 20px;
  }

  .page-blog-top-slot-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
  }

  .page-blog-top-slot-games__hero-description {
    font-size: 0.95rem;
  }

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

  .page-blog-top-slot-games__btn-primary,
  .page-blog-top-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-top-slot-games__section {
    padding: 40px 0;
  }

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

  .page-blog-top-slot-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    margin-bottom: 30px;
  }

  .page-blog-top-slot-games__text-block {
    font-size: 0.95rem;
  }

  .page-blog-top-slot-games__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 20px auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-top-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-top-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-blog-top-slot-games__faq-btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Ensure all containers with images/videos are handled */
  .page-blog-top-slot-games__section,
  .page-blog-top-slot-games__card,
  .page-blog-top-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-top-slot-games__video-section {
    padding-top: 10px !important; /* body 已承担 --header-offset，此处禁止 var(--header-offset) */
  }
  .page-blog-top-slot-games video,
  .page-blog-top-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-top-slot-games__video-section,
  .page-blog-top-slot-games__video-container,
  .page-blog-top-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-top-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}