/* style/blog-reliable-slot-platforms.css */
.page-blog-reliable-slot-platforms {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background: #ffffff; /* Assuming body background is light */
}

.page-blog-reliable-slot-platforms__floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 200px; /* Limit width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-blog-reliable-slot-platforms__floating-cta:hover {
  background-color: #d46e06;
}

.page-blog-reliable-slot-platforms__hero-section {
  position: relative;
  background-color: #f0f8ff; /* Light blue background */
  padding-top: 0; /* Important for body padding-top from shared.css */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.page-blog-reliable-slot-platforms__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.page-blog-reliable-slot-platforms__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-blog-reliable-slot-platforms__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-blog-reliable-slot-platforms__hero-title {
  font-weight: bold;
  color: #26A9E0; /* Brand color */
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  max-width: 100%;
}
.page-blog-reliable-slot-platforms__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}
.page-blog-reliable-slot-platforms__cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-blog-reliable-slot-platforms__cta-button:hover {
  background-color: #1e87b6;
}

.page-blog-reliable-slot-platforms__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-blog-reliable-slot-platforms__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.page-blog-reliable-slot-platforms__section-subtitle {
  font-size: 1.8em;
  color: #333333;
  margin-bottom: 20px;
  font-weight: bold;
}
.page-blog-reliable-slot-platforms__text-block {
  margin-bottom: 20px;
  color: #333333;
}
.page-blog-reliable-slot-platforms__image-wrapper {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.page-blog-reliable-slot-platforms__content-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px; /* Recommended for content images */
  margin: 0 auto;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-blog-reliable-slot-platforms__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}
.page-blog-reliable-slot-platforms__list-item {
  margin-bottom: 10px;
}

.page-blog-reliable-slot-platforms__faq-section {
  background-color: #f9f9f9;
}
.page-blog-reliable-slot-platforms__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}
.page-blog-reliable-slot-platforms__faq-item summary {
  display: block; /* For <details> */
  list-style: none; /* Hide default marker for <details> */
}
.page-blog-reliable-slot-platforms__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for <details> in Webkit */
}
.page-blog-reliable-slot-platforms__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}
.page-blog-reliable-slot-platforms__faq-question:hover {
  background-color: #e0e0e0;
}
.page-blog-reliable-slot-platforms__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  pointer-events: none; /* Ensure click on question works */
}
.page-blog-reliable-slot-platforms__faq-answer {
  padding: 0 20px 20px;
  color: #555555;
  max-height: 0; /* For JS toggle, if details not supported */
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.page-blog-reliable-slot-platforms__faq-item.active .page-blog-reliable-slot-platforms__faq-answer {
  max-height: 2000px !important; /* For JS toggle fallback */
}
.page-blog-reliable-slot-platforms__faq-item[open] .page-blog-reliable-slot-platforms__faq-answer {
  max-height: none; /* Override max-height for native open */
}

.page-blog-reliable-slot-platforms__dark-section {
  background: #26A9E0;
  color: #ffffff;
}
.page-blog-reliable-slot-platforms__dark-section .page-blog-reliable-slot-platforms__section-title,
.page-blog-reliable-slot-platforms__dark-section .page-blog-reliable-slot-platforms__section-subtitle,
.page-blog-reliable-slot-platforms__dark-section .page-blog-reliable-slot-platforms__text-block {
  color: #ffffff;
}

.page-blog-reliable-slot-platforms__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}
.page-blog-reliable-slot-platforms__btn-primary:hover {
  background: #1e87b6;
}
.page-blog-reliable-slot-platforms__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}
.page-blog-reliable-slot-platforms__btn-secondary:hover {
  background: #f0f8ff;
}

.page-blog-reliable-slot-platforms__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-reliable-slot-platforms__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-reliable-slot-platforms__section-title {
    font-size: 2em;
  }
  .page-blog-reliable-slot-platforms__section-subtitle {
    font-size: 1.5em;
  }
  .page-blog-reliable-slot-platforms__floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-blog-reliable-slot-platforms {
    font-size: 16px;
    line-height: 1.6;
  }
  /* LOGO 轮播区域 (Not present in this page, but rules would be here if it was) */
  /* .page-blog-reliable-slot-platforms__logo-carousel-section { padding: 10px 15px 20px; } */
  /* .page-blog-reliable-slot-platforms__logo-item { width: 80px !important; height: 80px !important; max-width: 80px !important; } */

  /* HERO 主图区域 */
  .page-blog-reliable-slot-platforms__hero-section {
    padding-top: 0 !important; /* Ensure no double padding from body */
    min-height: 400px;
  }
  .page-blog-reliable-slot-platforms__hero-content {
    padding: 30px 15px;
  }
  .page-blog-reliable-slot-platforms__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-reliable-slot-platforms__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* 游戏展示区域 (Not present in this page, but rules would be here if it was) */
  /* .page-blog-reliable-slot-platforms__games-section { padding: 40px 15px; } */
  /* .page-blog-reliable-slot-platforms__games-grid { grid-template-columns: 1fr; } */
  /* .page-blog-reliable-slot-platforms__game-card { width: 100%; } */

  /* 通用图片与容器 */
  .page-blog-reliable-slot-platforms img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-reliable-slot-platforms__section,
  .page-blog-reliable-slot-platforms__card,
  .page-blog-reliable-slot-platforms__container,
  .page-blog-reliable-slot-platforms__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-reliable-slot-platforms__content-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* 按钮与按钮容器 */
  .page-blog-reliable-slot-platforms__cta-button,
  .page-blog-reliable-slot-platforms__btn-primary,
  .page-blog-reliable-slot-platforms__btn-secondary,
  .page-blog-reliable-slot-platforms a[class*="button"],
  .page-blog-reliable-slot-platforms a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing if stacked */
  }
  .page-blog-reliable-slot-platforms__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center buttons if column */
  }
  .page-blog-reliable-slot-platforms__floating-cta {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    font-size: 0.85em;
    max-width: 160px;
  }

  /* Other content modules */
  .page-blog-reliable-slot-platforms__section {
    padding: 40px 15px;
  }
  .page-blog-reliable-slot-platforms__faq-question {
    padding: 15px;
    font-size: 0.95em;
  }
  .page-blog-reliable-slot-platforms__faq-answer {
    padding: 0 15px 15px;
  }
  .page-blog-reliable-slot-platforms__list {
    margin-left: 15px;
  }
}