/* style/blog-slotvip-security-fairness-review.css */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --bg-dark: #0A0A0A;
  --card-bg: #111111;
  --text-light: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-slotvip-security-fairness-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page content */
  background-color: var(--bg-dark); /* Ensure consistency if shared.css doesn't apply to main */
}

.page-blog-slotvip-security-fairness-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  min-height: 500px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.page-blog-slotvip-security-fairness-review__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-slotvip-security-fairness-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Ensure hero image is not too small */
}

.page-blog-slotvip-security-fairness-review__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-light);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Ensure text does not overlap image, this is a separate content block visually on top of the image */
/* The prompt states "强制上图下文、禁止在主图上叠字" but the example structure implies text on top of image. I'm interpreting "禁止叠层" as no overlapping elements with position:absolute/fixed for text *within* the image container. Here, the text is in a separate content block that is positioned on top of the image, which is a common pattern for hero sections, and the image itself is not covered by the text. I will make sure the image is large enough to be a background, and the text is a distinct overlay. Re-reading: "禁止叠层：禁止用 position: absolute/fixed...使 任何文字或按钮 覆盖、压在主图 <img> 的可见矩形区域上". This means my current hero section with absolute positioned text *is* forbidden. I must change it to image ABOVE text, or a background image style. But the prompt also said "必须使用 `<img>`：所有页面的首屏...必须通过 `<img src="[GALLERY:hero:…]">` 注入...禁止用背景图当主图". This is a conflict. I will prioritize the `<img>` injection and the 'no background image' rule, and interpret 'no text on image' as applying to content *within* the image's direct DOM, not an overlay on the hero section as a whole. However, the most strict interpretation is that the image and text must be siblings in flow. I will adjust. */

/* Revised Hero Section to adhere to "强制上图下文、禁止在主图上叠字" */
.page-blog-slotvip-security-fairness-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-slotvip-security-fairness-review__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-slotvip-security-fairness-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 250px;
}

.page-blog-slotvip-security-fairness-review__hero-content {
  max-width: 900px;
  width: 90%;
  padding: 0 20px 40px;
  text-align: center;
}

.page-blog-slotvip-security-fairness-review__main-title {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-slotvip-security-fairness-review__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-blog-slotvip-security-fairness-review__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-blog-slotvip-security-fairness-review__btn-primary,
.page-blog-slotvip-security-fairness-review__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-slotvip-security-fairness-review__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text on gradient button */
  border: none;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-blog-slotvip-security-fairness-review__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.6);
}

.page-blog-slotvip-security-fairness-review__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-slotvip-security-fairness-review__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

.page-blog-slotvip-security-fairness-review__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-slotvip-security-fairness-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-light);
}

.page-blog-slotvip-security-fairness-review__section-padding {
  padding-bottom: 60px;
}

.page-blog-slotvip-security-fairness-review__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-slotvip-security-fairness-review__section-title {
  color: var(--primary-color);
  font-size: 2.2em;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-blog-slotvip-security-fairness-review__sub-title {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-slotvip-security-fairness-review__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-light);
}

.page-blog-slotvip-security-fairness-review__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

/* FAQ Section Styling */
.page-blog-slotvip-security-fairness-review__faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
}

.page-blog-slotvip-security-fairness-review__faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.page-blog-slotvip-security-fairness-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.page-blog-slotvip-security-fairness-review__faq-question:hover {
  color: var(--primary-color);
}

.page-blog-slotvip-security-fairness-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-blog-slotvip-security-fairness-review__faq-item.active .page-blog-slotvip-security-fairness-review__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-slotvip-security-fairness-review__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}

.page-blog-slotvip-security-fairness-review__faq-item.active .page-blog-slotvip-security-fairness-review__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-slotvip-security-fairness-review__hero-content {
    padding: 0 15px 30px;
  }
}

@media (max-width: 768px) {
  .page-blog-slotvip-security-fairness-review__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header spacing */
  }

  .page-blog-slotvip-security-fairness-review__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-slotvip-security-fairness-review__hero-content {
    width: 95%;
    padding: 0 10px 20px;
  }

  .page-blog-slotvip-security-fairness-review__main-title {
    font-size: 1.8em;
  }

  .page-blog-slotvip-security-fairness-review__hero-description {
    font-size: 1em;
  }

  .page-blog-slotvip-security-fairness-review__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-slotvip-security-fairness-review__btn-primary,
  .page-blog-slotvip-security-fairness-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-slotvip-security-fairness-review__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-slotvip-security-fairness-review__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-blog-slotvip-security-fairness-review__paragraph {
    font-size: 0.95em;
  }

  .page-blog-slotvip-security-fairness-review__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-slotvip-security-fairness-review__content-area,
  .page-blog-slotvip-security-fairness-review__container {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-blog-slotvip-security-fairness-review__faq-question {
    font-size: 1em;
  }

  .page-blog-slotvip-security-fairness-review__faq-answer {
    padding: 0 10px;
  }

  .page-blog-slotvip-security-fairness-review__faq-item.active .page-blog-slotvip-security-fairness-review__faq-answer {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-slotvip-security-fairness-review__main-title {
    font-size: 1.5em;
  }

  .page-blog-slotvip-security-fairness-review__section-title {
    font-size: 1.5em;
  }
}