.page-blog-deep-dive-5699-game {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D;
  line-height: 1.6;
  background-color: #F4F7FB;
}

.page-blog-deep-dive-5699-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-blog-deep-dive-5699-game__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, relying on shared.css for body padding-top */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-deep-dive-5699-game__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-deep-dive-5699-game__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-deep-dive-5699-game__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow */
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-blog-deep-dive-5699-game__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-deep-dive-5699-game__hero-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-deep-dive-5699-game__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-deep-dive-5699-game__btn-primary,
.page-blog-deep-dive-5699-game__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
}

.page-blog-deep-dive-5699-game__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-deep-dive-5699-game__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-blog-deep-dive-5699-game__btn-secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-blog-deep-dive-5699-game__btn-secondary:hover {
  background: #E0EFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-deep-dive-5699-game__content-area {
  padding: 40px 0;
}

.page-blog-deep-dive-5699-game__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-deep-dive-5699-game__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  border-radius: 2px;
}

.page-blog-deep-dive-5699-game__sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-deep-dive-5699-game__text-block {
  font-size: 1.05rem;
  color: #1F2D3D;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-deep-dive-5699-game__highlight-text {
  color: #2F6BFF;
  font-weight: 700;
}

.page-blog-deep-dive-5699-game__article-figure {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-deep-dive-5699-game__inline-link {
  color: #2F6BFF;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-blog-deep-dive-5699-game__inline-link:hover {
  color: #6FA3FF;
}

.page-blog-deep-dive-5699-game__button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-deep-dive-5699-game__cta-buttons--bottom {
  margin-top: 50px;
}

/* FAQ Styles - Using <details> */
details.page-blog-deep-dive-5699-game__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-blog-deep-dive-5699-game__faq-item summary.page-blog-deep-dive-5699-game__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-blog-deep-dive-5699-game__faq-item summary.page-blog-deep-dive-5699-game__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-deep-dive-5699-game__faq-item summary.page-blog-deep-dive-5699-game__faq-question:hover {
  background: #F4F7FB;
}
.page-blog-deep-dive-5699-game__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}
.page-blog-deep-dive-5699-game__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-deep-dive-5699-game__faq-item[open] .page-blog-deep-dive-5699-game__faq-question {
  background-color: #F4F7FB;
  border-bottom: 1px solid #D6E2FF;
}
details.page-blog-deep-dive-5699-game__faq-item .page-blog-deep-dive-5699-game__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
}

/* General Image Responsiveness */
.page-blog-deep-dive-5699-game img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-deep-dive-5699-game__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-blog-deep-dive-5699-game__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-deep-dive-5699-game__section-title {
    font-size: 2rem;
  }
  .page-blog-deep-dive-5699-game__sub-title {
    font-size: 1.5rem;
  }
  .page-blog-deep-dive-5699-game__text-block {
    font-size: 1rem;
  }
  details.page-blog-deep-dive-5699-game__faq-item summary.page-blog-deep-dive-5699-game__faq-question {
    padding: 15px 18px;
  }
  .page-blog-deep-dive-5699-game__faq-qtext {
    font-size: 1rem;
  }
  .page-blog-deep-dive-5699-game__faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-blog-deep-dive-5699-game__hero-section {
    padding-top: 10px; /* Small top padding */
    margin-bottom: 20px;
  }
  .page-blog-deep-dive-5699-game__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-deep-dive-5699-game__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
  }
  .page-blog-deep-dive-5699-game__hero-content {
    margin-top: -60px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  .page-blog-deep-dive-5699-game__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-deep-dive-5699-game__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* 按钮与按钮容器 */
  .page-blog-deep-dive-5699-game__cta-buttons,
  .page-blog-deep-dive-5699-game__button-group {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-deep-dive-5699-game__btn-primary,
  .page-blog-deep-dive-5699-game__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-blog-deep-dive-5699-game__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-deep-dive-5699-game__section-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .page-blog-deep-dive-5699-game__sub-title {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-blog-deep-dive-5699-game__text-block {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .page-blog-deep-dive-5699-game__article-figure {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 通用图片与容器 */
  .page-blog-deep-dive-5699-game img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ */
  details.page-blog-deep-dive-5699-game__faq-item summary.page-blog-deep-dive-5699-game__faq-question {
    padding: 15px;
  }
  .page-blog-deep-dive-5699-game__faq-qtext {
    font-size: 0.95rem;
  }
  .page-blog-deep-dive-5699-game__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-blog-deep-dive-5699-game__faq-item .page-blog-deep-dive-5699-game__faq-answer {
    padding: 0 15px 15px;
  }
}