.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #F4F7FB; /* Body background color from shared.css */
}

.page-slot-games__section {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-slot-games__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #F4F7FB;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games__hero-image {
  width: 100%;
  height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-slot-games__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-slot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-slot-games__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-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-slot-games__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 2px 10px rgba(47, 107, 255, 0.1);
}

.page-slot-games__btn-secondary:hover {
  background: #F4F7FB;
  color: #2F6BFF;
  border-color: #4A8BFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-slot-games__introduction-section {
  background-color: #F4F7FB;
}

.page-slot-games__introduction-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 15px;
  text-align: justify;
}

.page-slot-games__introduction-section p strong {
  color: #2F6BFF;
}

.page-slot-games__games-showcase {
  background-color: #ffffff;
}

.page-slot-games__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-slot-games__game-card {
  background: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-slot-games__game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__card-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin: 0 15px 20px;
  transition: background 0.3s ease;
  max-width: calc(100% - 30px);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-slot-games__advantages-section {
  background: #2F6BFF;
  color: #ffffff; /* Forced white text for dark background */
}

.page-slot-games__advantages-section .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__advantages-section .page-slot-games__section-description {
  color: #A5C4FF;
}

.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.page-slot-games__feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-slot-games__feature-item img {
  
  
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-slot-games__feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-slot-games__feature-item p {
  font-size: 16px;
  color: #A5C4FF;
  line-height: 1.6;
}

.page-slot-games__guide-section {
  background-color: #F4F7FB;
}

.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__step-item {
  background: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-slot-games__step-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slot-games__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-slot-games__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-slot-games__step-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.page-slot-games__step-item p a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-slot-games__step-item p a:hover {
  text-decoration: underline;
}

.page-slot-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games__strategy-section {
  background-color: #ffffff;
}

.page-slot-games__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.8;
  color: #333333;
  font-size: 17px;
}

.page-slot-games__article-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1F2D3D;
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-slot-games__article-body p {
  margin-bottom: 15px;
}

.page-slot-games__article-body strong {
  color: #2F6BFF;
}

.page-slot-games__article-figure {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-slot-games__promotions-section {
  background-color: #F4F7FB;
}

.page-slot-games__promo-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__promo-item {
  background: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-slot-games__promo-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slot-games__promo-title {
  font-size: 24px;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games__promo-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.page-slot-games__promo-item p a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-slot-games__promo-item p a:hover {
  text-decoration: underline;
}

.page-slot-games__security-section {
  background: #2F6BFF;
  color: #ffffff;
}

.page-slot-games__security-section .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__security-section .page-slot-games__section-description {
  color: #A5C4FF;
}

.page-slot-games__security-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__security-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.page-slot-games__security-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-slot-games__security-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games__security-item p {
  font-size: 16px;
  color: #A5C4FF;
  line-height: 1.6;
}

.page-slot-games__faq-section {
  background-color: #F4F7FB;
}

.page-slot-games__faq-list {
  margin-top: 40px;
}

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 600;
  color: #1F2D3D;
}

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

details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: #F4F7FB;
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-slot-games__faq-item[open] summary.page-slot-games__faq-question {
  background-color: #F4F7FB;
  color: #2F6BFF;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 20px;
  background: #F9F9F9;
  border-top: 1px dashed #D6E2FF;
  border-radius: 0 0 12px 12px;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer p {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  margin-top: 15px;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer p a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer p a:hover {
  text-decoration: underline;
}

.page-slot-games__conclusion-section {
  background-color: #ffffff;
}

.page-slot-games__conclusion-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 30px;
  text-align: center;
}

.page-slot-games__conclusion-section strong {
  color: #2F6BFF;
}

/* Universal image and container responsive styles */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-image {
    height: 500px;
  }

  .page-slot-games__main-title {
    font-size: clamp(30px, 4vw, 42px);
  }

  .page-slot-games__section-title {
    font-size: 32px;
  }

  .page-slot-games__games-grid,
  .page-slot-games__features-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promo-list,
  .page-slot-games__security-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-slot-games__game-card img {
    
  }

  .page-slot-games__card-title {
    font-size: 22px;
  }

  .page-slot-games__feature-title,
  .page-slot-games__step-title,
  .page-slot-games__promo-title,
  .page-slot-games__security-title {
    font-size: 20px;
  }

  .page-slot-games__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 849px) {
  .page-slot-games__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    height: auto !important;
  }
  .page-slot-games__hero-image {
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-slot-games__section {
    padding: 40px 0;
  }

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

  /* HERO 主图区域 */
  .page-slot-games__hero-section {
    padding-top: 10px;
  }

  .page-slot-games__hero-image {
    height: auto;
    margin-bottom: 20px;
  }

  .page-slot-games__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }

  .page-slot-games__hero-content {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(28px, 8vw, 38px);
    text-align: center;
  }

  .page-slot-games__hero-description {
    font-size: 16px;
    text-align: center;
  }

  /* 按钮与按钮容器 */
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

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

  .page-slot-games__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-slot-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* 产品展示图区域 */
  .page-slot-games__games-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 列 × 3 行 */
    gap: 15px;
    overflow-x: hidden !important;
  }

  .page-slot-games__game-card {
    margin: 0;
  }

  .page-slot-games__game-card img {
    
  }

  .page-slot-games__card-title {
    font-size: 18px;
  }

  .page-slot-games__card-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .page-slot-games__card-button {
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 10px 15px;
    max-width: calc(100% - 20px);
  }

  .page-slot-games__introduction-section p {
    font-size: 16px;
  }

  .page-slot-games__features-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__promo-list,
  .page-slot-games__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__feature-item img {
    
    
    margin-bottom: 15px;
  }

  .page-slot-games__feature-title,
  .page-slot-games__step-title,
  .page-slot-games__promo-title,
  .page-slot-games__security-title {
    font-size: 18px;
  }

  .page-slot-games__feature-item p,
  .page-slot-games__step-item p,
  .page-slot-games__promo-item p,
  .page-slot-games__security-item p {
    font-size: 15px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-slot-games__article-body {
    padding: 10px;
    font-size: 16px;
    text-align: left;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__article-body h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-slot-games__article-figure {
    margin: 20px auto;
  }

  .page-slot-games__cta-center .page-slot-games__btn-primary,
  .page-slot-games__cta-center .page-slot-games__btn-secondary {
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    margin: 0 auto;
  }

  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px 20px;
  }

  .page-slot-games__faq-qtext {
    font-size: 16px;
  }

  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }

  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 20px 15px;
  }

  details.page-slot-games__faq-item .page-slot-games__faq-answer p {
    font-size: 15px;
  }

  .page-slot-games__conclusion-section p {
    font-size: 16px;
  }

  /* 通用图片与容器 */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__games-showcase,
  .page-slot-games__advantages-section,
  .page-slot-games__guide-section,
  .page-slot-games__strategy-section,
  .page-slot-games__promotions-section,
  .page-slot-games__security-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}