/* style/blog-sc88a5-game-features-deep-review.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-sc88a5-game-features-deep-review {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-sc88a5-game-features-deep-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-sc88a5-game-features-deep-review__section {
  padding: 60px 0;
}

.page-blog-sc88a5-game-features-deep-review__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-sc88a5-game-features-deep-review__sub-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-sc88a5-game-features-deep-review__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* Hero Section */
.page-blog-sc88a5-game-features-deep-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
}

.page-blog-sc88a5-game-features-deep-review__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

.page-blog-sc88a5-game-features-deep-review__hero-image {
  width: 100%;
  height: auto; /* Ensure aspect ratio */
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image for text readability */
}

.page-blog-sc88a5-game-features-deep-review__hero-content {
  max-width: 900px;
  margin-top: -300px; /* Overlap content on image */
  position: relative;
  z-index: 1;
  padding: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-sc88a5-game-features-deep-review__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-sc88a5-game-features-deep-review__hero-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-sc88a5-game-features-deep-review__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-sc88a5-game-features-deep-review__btn-primary,
.page-blog-sc88a5-game-features-deep-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-sc88a5-game-features-deep-review__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-blog-sc88a5-game-features-deep-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-sc88a5-game-features-deep-review__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-sc88a5-game-features-deep-review__btn-secondary:hover {
  transform: translateY(-3px);
  background: #0A4B2C; /* Deep Green */
}

/* Video Section */
.page-blog-sc88a5-game-features-deep-review__video-section {
  background-color: #08160F;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-blog-sc88a5-game-features-deep-review__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-blog-sc88a5-game-features-deep-review__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-blog-sc88a5-game-features-deep-review__video-caption {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  font-style: italic;
  margin-top: 10px;
}

/* Feature Cards */
.page-blog-sc88a5-game-features-deep-review__game-features .page-blog-sc88a5-game-features-deep-review__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-sc88a5-game-features-deep-review__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-blog-sc88a5-game-features-deep-review__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-blog-sc88a5-game-features-deep-review__feature-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  padding: 0 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-sc88a5-game-features-deep-review__feature-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
}

/* Advantages Section */
.page-blog-sc88a5-game-features-deep-review__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-blog-sc88a5-game-features-deep-review__advantage-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-blog-sc88a5-game-features-deep-review__advantage-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-sc88a5-game-features-deep-review__advantage-description {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sc88a5-game-features-deep-review__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Guide Section */
.page-blog-sc88a5-game-features-deep-review__step-list,
.page-blog-sc88a5-game-features-deep-review__tip-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-sc88a5-game-features-deep-review__step-item,
.page-blog-sc88a5-game-features-deep-review__tip-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F; /* Main color for accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #F2FFF6;
  font-size: 1em;
}

.page-blog-sc88a5-game-features-deep-review__step-item a,
.page-blog-sc88a5-game-features-deep-review__tip-item a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-blog-sc88a5-game-features-deep-review__step-item a:hover,
.page-blog-sc88a5-game-features-deep-review__tip-item a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-blog-sc88a5-game-features-deep-review__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-sc88a5-game-features-deep-review__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-sc88a5-game-features-deep-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-sc88a5-game-features-deep-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-sc88a5-game-features-deep-review__faq-question::marker {
  display: none;
}

.page-blog-sc88a5-game-features-deep-review__faq-qtext {
  flex-grow: 1;
}

.page-blog-sc88a5-game-features-deep-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2FFF6;
}

.page-blog-sc88a5-game-features-deep-review__faq-item[open] .page-blog-sc88a5-game-features-deep-review__faq-question {
  border-bottom: 1px solid #1E3A2A;
}

.page-blog-sc88a5-game-features-deep-review__faq-item[open] .page-blog-sc88a5-game-features-deep-review__faq-toggle {
  content: '−';
}

.page-blog-sc88a5-game-features-deep-review__faq-answer {
  padding: 20px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sc88a5-game-features-deep-review__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-blog-sc88a5-game-features-deep-review__faq-answer a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-blog-sc88a5-game-features-deep-review__conclusion {
  text-align: center;
}

.page-blog-sc88a5-game-features-deep-review__conclusion .page-blog-sc88a5-game-features-deep-review__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-sc88a5-game-features-deep-review__hero-content {
    margin-top: -200px;
  }
}

@media (max-width: 768px) {
  .page-blog-sc88a5-game-features-deep-review__section {
    padding: 40px 0;
  }

  .page-blog-sc88a5-game-features-deep-review__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-sc88a5-game-features-deep-review__hero-content {
    margin-top: -150px; /* Adjust overlap for smaller screens */
  }

  .page-blog-sc88a5-game-features-deep-review__main-title {
    font-size: 2.5em;
  }

  .page-blog-sc88a5-game-features-deep-review__hero-description {
    font-size: 1em;
  }

  .page-blog-sc88a5-game-features-deep-review__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-sc88a5-game-features-deep-review__btn-primary,
  .page-blog-sc88a5-game-features-deep-review__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-blog-sc88a5-game-features-deep-review__video-wrapper {
    padding-bottom: 56.25%;
  }

  .page-blog-sc88a5-game-features-deep-review__feature-image {
    height: 200px;
  }

  .page-blog-sc88a5-game-features-deep-review__feature-title {
    font-size: 1.3em;
  }

  .page-blog-sc88a5-game-features-deep-review__advantage-title {
    font-size: 1.1em;
  }

  /* Mobile specific image, video, and container adaptations */
  .page-blog-sc88a5-game-features-deep-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-sc88a5-game-features-deep-review video,
  .page-blog-sc88a5-game-features-deep-review__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-sc88a5-game-features-deep-review__section,
  .page-blog-sc88a5-game-features-deep-review__card,
  .page-blog-sc88a5-game-features-deep-review__container,
  .page-blog-sc88a5-game-features-deep-review__video-section,
  .page-blog-sc88a5-game-features-deep-review__video-container,
  .page-blog-sc88a5-game-features-deep-review__video-wrapper,
  .page-blog-sc88a5-game-features-deep-review__cta-buttons,
  .page-blog-sc88a5-game-features-deep-review__button-group,
  .page-blog-sc88a5-game-features-deep-review__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-sc88a5-game-features-deep-review__hero-section,
  .page-blog-sc88a5-game-features-deep-review__video-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

  .page-blog-sc88a5-game-features-deep-review__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}