/* style/slot-games-jackpot-strategy.css */
.page-slot-games-jackpot-strategy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
  font-size: 17px;
}

/* Hero Section */
.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  background-color: #F4F7FB;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height on desktop */
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-strategy__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-strategy__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* For mobile */
}

/* Buttons */
.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-games-jackpot-strategy__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-slot-games-jackpot-strategy__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-slot-games-jackpot-strategy__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
  background: #f0f5ff;
  color: #2F6BFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.1);
}

/* Content Sections */
.page-slot-games-jackpot-strategy__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F4F7FB;
}

.page-slot-games-jackpot-strategy__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-strategy__section-subtitle {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #2F6BFF;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__text-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #1F2D3D;
}

.page-slot-games-jackpot-strategy__text-block ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-strategy__text-block li {
  margin-bottom: 10px;
  color: #1F2D3D;
}

/* Card styles (not directly used in this specific HTML, but for general compliance) */
.page-slot-games-jackpot-strategy__card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #1F2D3D;
}

.page-slot-games-jackpot-strategy__card:hover {
  transform: translateY(-5px);
}

.page-slot-games-jackpot-strategy__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-strategy__card-description {
  font-size: 1rem;
  color: #1F2D3D;
  flex-grow: 1;
}

/* Grid layout for cards/features (not directly used in this specific HTML, but for general compliance) */
.page-slot-games-jackpot-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Images in content */
.page-slot-games-jackpot-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
  max-width: 800px; /* Limit content image width */
}

/* Gameshow grid */
.page-slot-games-jackpot-strategy__gameshow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games-jackpot-strategy__gameshow-item {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-strategy__gameshow-item:hover {
  transform: translateY(-5px);
}

.page-slot-games-jackpot-strategy__gameshow-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-slot-games-jackpot-strategy__gameshow-info {
  padding: 15px;
  text-align: center;
}

.page-slot-games-jackpot-strategy__gameshow-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-strategy__gameshow-button {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-strategy__gameshow-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  background-color: #F4F7FB;
}

.page-slot-games-jackpot-strategy__faq-list {
  margin-top: 30px;
}

.page-slot-games-jackpot-strategy__faq-item {
  background: #FFFFFF;
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #1F2D3D;
}

.page-slot-games-jackpot-strategy__faq-item details {
  padding: 0;
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  cursor: pointer;
  background-color: #f8faff;
  transition: background-color 0.3s ease;
  list-style: none; /* For summary tag */
}

.page-slot-games-jackpot-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-jackpot-strategy__faq-question:hover {
  background-color: #e6f0ff;
}

.page-slot-games-jackpot-strategy__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-slot-games-jackpot-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Call to Action Section */
.page-slot-games-jackpot-strategy__cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-strategy__hero-image-wrapper {
    max-height: 500px;
  }
  .page-slot-games-jackpot-strategy__gameshow-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-slot-games-jackpot-strategy__hero-section {
    padding-top: 10px !important; /* Small top padding */
  }
  .page-slot-games-jackpot-strategy__hero-image-wrapper {
    max-height: 300px;
  }
  .page-slot-games-jackpot-strategy__hero-content {
    padding: 30px 15px;
  }
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 2rem;
  }
  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1rem;
  }
  .page-slot-games-jackpot-strategy__hero-cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
  }
  
  /* 产品展示图区域 */
  .page-slot-games-jackpot-strategy__gameshow-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 15px !important;
    padding: 0 15px !important; /* Add padding to prevent overflow */
  }
  .page-slot-games-jackpot-strategy__gameshow-item {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games-jackpot-strategy__gameshow-image {
    height: 180px;
  }

  /* 通用图片与容器 */
  .page-slot-games-jackpot-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-slot-games-jackpot-strategy__section,
  .page-slot-games-jackpot-strategy__text-block,
  .page-slot-games-jackpot-strategy__faq-section,
  .page-slot-games-jackpot-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* 按钮与按钮容器 */
  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary,
  .page-slot-games-jackpot-strategy a[class*="button"],
  .page-slot-games-jackpot-strategy a[class*="btn"],
  .page-slot-games-jackpot-strategy__gameshow-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-slot-games-jackpot-strategy__hero-cta-buttons,
  .page-slot-games-jackpot-strategy__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  
  /* 其他内容模块 */
  .page-slot-games-jackpot-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8rem;
  }
  .page-slot-games-jackpot-strategy__section-subtitle {
    font-size: 1.3rem;
  }
  .page-slot-games-jackpot-strategy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 0 20px 15px;
  }
  .page-slot-games-jackpot-strategy__cta-title {
    font-size: 1.8rem;
  }
  .page-slot-games-jackpot-strategy__cta-description {
    font-size: 1rem;
  }
  .page-slot-games-jackpot-strategy__grid {
    grid-template-columns: 1fr; /* Single column for cards */
  }
}