/* style/blog-nohu-52-gameplay-tips.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-nohu-52-gameplay-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for page, assuming dark body background from shared.css */
  background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-blog-nohu-52-gameplay-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #26A9E0; /* Brand main color for dark background */
  color: #ffffff;
  overflow: hidden;
}

.page-blog-nohu-52-gameplay-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-nohu-52-gameplay-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-nohu-52-gameplay-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above image if any overlap */
}

.page-blog-nohu-52-gameplay-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.page-blog-nohu-52-gameplay-tips__intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-nohu-52-gameplay-tips__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-nohu-52-gameplay-tips__btn-primary,
.page-blog-nohu-52-gameplay-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-nohu-52-gameplay-tips__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-nohu-52-gameplay-tips__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-nohu-52-gameplay-tips__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-blog-nohu-52-gameplay-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-blog-nohu-52-gameplay-tips__cta-buttons--bottom {
  margin-top: 40px;
}

/* Content Sections */
.page-blog-nohu-52-gameplay-tips__content-section {
  padding: 60px 0;
}

.page-blog-nohu-52-gameplay-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Color contrast management */
.page-blog-nohu-52-gameplay-tips__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for contrast */
}

.page-blog-nohu-52-gameplay-tips__dark-bg {
  background-color: #26A9E0; /* Brand main color */
  color: #ffffff; /* White text for contrast */
}

.page-blog-nohu-52-gameplay-tips__white-text {
  color: #ffffff;
}

.page-blog-nohu-52-gameplay-tips__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit color from parent section */
}

.page-blog-nohu-52-gameplay-tips__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-nohu-52-gameplay-tips__paragraph {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: inherit;
}

.page-blog-nohu-52-gameplay-tips__highlight {
  color: #EA7C07; /* Highlight color for keywords */
  font-weight: 700;
}

.page-blog-nohu-52-gameplay-tips__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-blog-nohu-52-gameplay-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: inherit;
}

.page-blog-nohu-52-gameplay-tips__image-wrapper {
  margin: 40px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-nohu-52-gameplay-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

/* FAQ Section */
.page-blog-nohu-52-gameplay-tips__faq-list {
  margin-top: 30px;
}

.page-blog-nohu-52-gameplay-tips__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-nohu-52-gameplay-tips__faq-item[open] {
  background-color: #e0f7fa; /* Lighter background when open */
}

.page-blog-nohu-52-gameplay-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #26A9E0;
  list-style: none;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-nohu-52-gameplay-tips__faq-item[open] .page-blog-nohu-52-gameplay-tips__faq-question {
  border-bottom: 1px solid #cceeff;
}

.page-blog-nohu-52-gameplay-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nohu-52-gameplay-tips__faq-qtext {
  flex-grow: 1;
}

.page-blog-nohu-52-gameplay-tips__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-nohu-52-gameplay-tips__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nohu-52-gameplay-tips__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-blog-nohu-52-gameplay-tips__section-title {
    font-size: 2rem;
  }

  .page-blog-nohu-52-gameplay-tips__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-nohu-52-gameplay-tips__paragraph,
  .page-blog-nohu-52-gameplay-tips__list-item,
  .page-blog-nohu-52-gameplay-tips__faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-nohu-52-gameplay-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-nohu-52-gameplay-tips__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-nohu-52-gameplay-tips__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-nohu-52-gameplay-tips__intro-text {
    font-size: 1rem;
  }

  .page-blog-nohu-52-gameplay-tips__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-nohu-52-gameplay-tips__btn-primary,
  .page-blog-nohu-52-gameplay-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-nohu-52-gameplay-tips__content-section {
    padding: 40px 0;
  }

  .page-blog-nohu-52-gameplay-tips__container {
    padding: 0 15px;
  }

  .page-blog-nohu-52-gameplay-tips__section-title {
    font-size: 1.8rem;
  }

  .page-blog-nohu-52-gameplay-tips__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-nohu-52-gameplay-tips__paragraph,
  .page-blog-nohu-52-gameplay-tips__list-item,
  .page-blog-nohu-52-gameplay-tips__faq-answer {
    font-size: 0.95rem;
  }

  .page-blog-nohu-52-gameplay-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-nohu-52-gameplay-tips__section,
  .page-blog-nohu-52-gameplay-tips__card,
  .page-blog-nohu-52-gameplay-tips__container,
  .page-blog-nohu-52-gameplay-tips__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-nohu-52-gameplay-tips__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-nohu-52-gameplay-tips__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-nohu-52-gameplay-tips__faq-answer {
    padding: 10px 20px 20px;
  }
}