/* style/blog-nohu90-game-strategy.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark-bg: #FFFFFF;
  --text-color-light-bg: #333333;
  --login-button-color: #EA7C07;
  --background-light: #FFFFFF;
  --background-dark: #0a0a0a; /* From body background */
}

/* Base styles for the page content */
.page-blog-nohu90-game-strategy {
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-dark);
}

.page-blog-nohu90-game-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px 40px; /* Adjusted padding-bottom for content below image */
  padding-top: 10px; /* Small top padding for first section */
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-nohu90-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-nohu90-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-nohu90-game-strategy__hero-content {
  max-width: 900px;
  margin-top: 20px;
  padding: 0 15px;
}

.page-blog-nohu90-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--text-color-dark-bg);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-nohu90-game-strategy__intro-text {
  font-size: 1.1rem;
  color: var(--text-color-dark-bg);
  margin-bottom: 30px;
}

.page-blog-nohu90-game-strategy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-nohu90-game-strategy__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-nohu90-game-strategy__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-blog-nohu90-game-strategy__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-blog-nohu90-game-strategy__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-nohu90-game-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-light); /* Light background for content area */
  color: var(--text-color-light-bg); /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-nohu90-game-strategy__section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-nohu90-game-strategy__sub-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-nohu90-game-strategy__text-block p,
.page-blog-nohu90-game-strategy__text-block li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color-light-bg);
}

.page-blog-nohu90-game-strategy__text-block a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-blog-nohu90-game-strategy__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-nohu90-game-strategy__image-text-block .page-blog-nohu90-game-strategy__content-image {
  flex: 1 1 400px;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-nohu90-game-strategy__image-text-block .page-blog-nohu90-game-strategy__text-block {
  flex: 1 1 400px;
  max-width: 50%;
}

.page-blog-nohu90-game-strategy__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px; /* For standalone images */
}

.page-blog-nohu90-game-strategy ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-nohu90-game-strategy ul li {
  margin-bottom: 8px;
  color: var(--text-color-light-bg);
}

.page-blog-nohu90-game-strategy__faq-list {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-blog-nohu90-game-strategy__faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  background-color: var(--background-light);
  color: var(--text-color-light-bg);
}

.page-blog-nohu90-game-strategy__faq-item details {
  list-style: none;
}

.page-blog-nohu90-game-strategy__faq-item details::-webkit-details-marker {
  display: none;
}

.page-blog-nohu90-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.page-blog-nohu90-game-strategy__faq-question:hover {
  color: #1e87c0;
}

.page-blog-nohu90-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
}

.page-blog-nohu90-game-strategy__faq-answer {
  padding-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light-bg);
}

.page-blog-nohu90-game-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-nohu90-game-strategy__hero-content {
    max-width: 768px;
  }

  .page-blog-nohu90-game-strategy__image-text-block .page-blog-nohu90-game-strategy__content-image,
  .page-blog-nohu90-game-strategy__image-text-block .page-blog-nohu90-game-strategy__text-block {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-nohu90-game-strategy__hero-section {
    padding: 0 15px 30px;
    padding-top: 10px !important;
  }

  .page-blog-nohu90-game-strategy__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-nohu90-game-strategy__intro-text {
    font-size: 1rem;
  }

  .page-blog-nohu90-game-strategy__content-area {
    padding: 30px 15px;
  }

  .page-blog-nohu90-game-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-nohu90-game-strategy__sub-title {
    font-size: 1.4rem;
  }

  .page-blog-nohu90-game-strategy p,
  .page-blog-nohu90-game-strategy li {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-blog-nohu90-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-nohu90-game-strategy__hero-image-wrapper,
  .page-blog-nohu90-game-strategy__image-text-block,
  .page-blog-nohu90-game-strategy__text-block,
  .page-blog-nohu90-game-strategy__faq-list,
  .page-blog-nohu90-game-strategy__cta-buttons,
  .page-blog-nohu90-game-strategy__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-nohu90-game-strategy__cta-button,
  .page-blog-nohu90-game-strategy__btn-primary,
  .page-blog-nohu90-game-strategy__btn-secondary,
  .page-blog-nohu90-game-strategy a[class*="button"],
  .page-blog-nohu90-game-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
  }

  .page-blog-nohu90-game-strategy__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Contrast fix for mobile if needed */
  .page-blog-nohu90-game-strategy__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
  }

  .page-blog-nohu90-game-strategy__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
  }
}