/* style/blog-wi55-n-h-game-tips-deep-dive.css */

/* Base styles for the page content, assuming a dark background for the main content areas */
.page-blog-wi55-n-h-game-tips-deep-dive {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-wi55-n-h-game-tips-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-wi55-n-h-game-tips-deep-dive__section {
  padding: 60px 0;
}

.page-blog-wi55-n-h-game-tips-deep-dive__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

/* Hero Section */
.page-blog-wi55-n-h-game-tips-deep-dive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  background-color: #08160F; /* Ensure consistent background */
}

.page-blog-wi55-n-h-game-tips-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-wi55-n-h-game-tips-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-blog-wi55-n-h-game-tips-deep-dive__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly with image for visual flow, but not on text */
  position: relative; /* Ensure content is above image if z-index is used elsewhere */
  z-index: 1; /* Ensure content is above image */
  background-color: transparent; /* No background to avoid covering image */
}

.page-blog-wi55-n-h-game-tips-deep-dive__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-wi55-n-h-game-tips-deep-dive__description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-wi55-n-h-game-tips-deep-dive__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure button adapts to mobile */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-wi55-n-h-game-tips-deep-dive__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-wi55-n-h-game-tips-deep-dive__cta-button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Section Titles */
.page-blog-wi55-n-h-game-tips-deep-dive__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-wi55-n-h-game-tips-deep-dive__sub-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-wi55-n-h-game-tips-deep-dive__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-blog-wi55-n-h-game-tips-deep-dive__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-wi55-n-h-game-tips-deep-dive__list-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-wi55-n-h-game-tips-deep-dive__list-item strong {
  color: #F2FFF6; /* Text Main */
}

/* Image blocks within content */
.page-blog-wi55-n-h-game-tips-deep-dive__image-block {
  margin: 40px auto;
  text-align: center;
  max-width: 800px; /* Limit width for content images */
}

.page-blog-wi55-n-h-game-tips-deep-dive__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

/* FAQ Section */
.page-blog-wi55-n-h-game-tips-deep-dive__faq-section {
  padding-bottom: 80px;
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-list {
  margin-top: 40px;
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-question:hover {
  background-color: #2E7A4E; /* Border / slightly lighter */
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-blog-wi55-n-h-game-tips-deep-dive__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* details tag specific styles */
.page-blog-wi55-n-h-game-tips-deep-dive__faq-item[open] .page-blog-wi55-n-h-game-tips-deep-dive__faq-question {
  background-color: #2E7A4E; /* Darker when open */
}
.page-blog-wi55-n-h-game-tips-deep-dive__faq-item[open] .page-blog-wi55-n-h-game-tips-deep-dive__faq-toggle {
  content: "−"; /* Change toggle to minus when open */
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-wi55-n-h-game-tips-deep-dive__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__section-title {
    font-size: 2em;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-wi55-n-h-game-tips-deep-dive__section {
    padding: 40px 0;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
  }
  .page-blog-wi55-n-h-game-tips-deep-dive__text-block,
  .page-blog-wi55-n-h-game-tips-deep-dive__list-item,
  .page-blog-wi55-n-h-game-tips-deep-dive__faq-answer {
    font-size: 1em;
  }

  /* Mobile image and button adaptations */
  .page-blog-wi55-n-h-game-tips-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-wi55-n-h-game-tips-deep-dive__section,
  .page-blog-wi55-n-h-game-tips-deep-dive__container,
  .page-blog-wi55-n-h-game-tips-deep-dive__hero-section,
  .page-blog-wi55-n-h-game-tips-deep-dive__faq-section,
  .page-blog-wi55-n-h-game-tips-deep-dive__image-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-blog-wi55-n-h-game-tips-deep-dive__cta-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;
  }
}