:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --background-color: #F4F7FB;
  --text-main-color: #1F2D3D;
  --text-black-color: #000000;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for light backgrounds */
  background-color: var(--background-color); /* Default page background */
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: var(--background-color);
}

.page-no-hu__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
  color: var(--text-main-color);
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-black-color);
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-no-hu__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-black-color);
}

.page-no-hu__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main-color);
}

.page-no-hu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: var(--card-bg);
  color: var(--text-main-color);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-black-color);
}

.page-no-hu__feature-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-no-hu__game-list-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-no-hu__section-title--light,
.page-no-hu__section-description--light {
  color: #ffffff;
}

.page-no-hu__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: var(--text-main-color);
}

.page-no-hu__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for thumbnails */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__game-title a {
  color: var(--text-black-color);
  text-decoration: none;
}

.page-no-hu__game-title a:hover {
  color: var(--primary-color);
}

.page-no-hu__game-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__btn-play {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  width: 100%;
}

.page-no-hu__btn-play:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-no-hu__strategy-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-no-hu__strategy-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-no-hu__strategy-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-no-hu__strategy-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--text-main-color);
}

.page-no-hu__strategy-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-no-hu__btn-read-more {
  max-width: fit-content;
}

.page-no-hu__strategy-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__strategy-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  text-align: center;
}

.page-no-hu__promo-content .page-no-hu__btn-primary {
  margin-top: 30px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__cta-section {
  padding: 60px 0;
  background-color: var(--card-bg);
  text-align: center;
}

.page-no-hu__cta-content {
  max-width: 900px;
}

.page-no-hu__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-no-hu__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-no-hu__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: var(--text-main-color);
}

.page-no-hu__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  color: var(--text-black-color);
  list-style: none; /* Hide default marker */
}

.page-no-hu__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-no-hu__faq-question {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-main-color);
}

/* General image responsive styles */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
    line-height: 1.5;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

  .page-no-hu__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

  .page-no-hu__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-no-hu__hero-image {
    flex: 1 1 100%;
  }

  .page-no-hu__hero-side-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* Module 1: Intro Section (Feature Grid) */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }

  .page-no-hu__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-no-hu__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-no-hu__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }

  .page-no-hu__feature-title {
    font-size: 1.4rem;
  }

  /* Game List Section */
  .page-no-hu__game-list-section {
    padding: 40px 0;
  }

  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__game-thumbnail {
    height: 180px; /* Adjust height for mobile */
  }

  .page-no-hu__game-title {
    font-size: 1.2rem;
  }

  .page-no-hu__game-text {
    font-size: 0.95rem;
  }

  /* Strategy Section */
  .page-no-hu__strategy-section {
    padding: 40px 0;
  }

  .page-no-hu__strategy-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-no-hu__strategy-content,
  .page-no-hu__strategy-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__strategy-item {
    font-size: 1rem;
    padding-left: 25px;
  }

  .page-no-hu__btn-read-more {
    width: 100%;
  }

  /* Promo Section */
  .page-no-hu__promo-section {
    padding: 40px 0;
  }

  /* CTA Section */
  .page-no-hu__cta-section {
    padding: 40px 0;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* FAQ Section */
  .page-no-hu__faq-section {
    padding: 40px 0;
  }

  .page-no-hu__faq-item summary {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-no-hu__faq-toggle {
    font-size: 1.5rem;
  }

  .page-no-hu__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95rem;
  }

  /* Universal image responsive styles for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Button responsive styles for mobile */
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-read-more,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__hero-cta-buttons,
  .page-no-hu__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
  }
}