/* style/no-hu.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-no-hu {
  font-family: Arial, sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color);
}

.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-no-hu__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-secondary-color);
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-no-hu__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.2);
}

.page-no-hu__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-no-hu__btn-center {
  display: block;
  margin: 30px auto 0;
  max-width: 300px;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  padding-bottom: 60px;
  background-color: var(--deep-green-color);
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-no-hu__hero-content-wrapper {
  max-width: 800px;
  text-align: center;
  padding: 0 16px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

/* Intro Section */
.page-no-hu__intro-section {
  background-color: var(--background-color);
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 200px; /* Specific size for circular image */
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold-color);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image itself is circular */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-main-color);
  margin-bottom: 10px;
}

.page-no-hu__feature-description {
  font-size: 1em;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* Game List Section */
.page-no-hu__game-list-section {
  background-color: var(--deep-green-color);
  padding: 60px 0;
}

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

.page-no-hu__game-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

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

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

.page-no-hu__game-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-no-hu__game-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: auto; /* Push to bottom */
}

.page-no-hu__btn-play:hover {
  opacity: 0.9;
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: var(--background-color);
  padding: 60px 0;
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__guide-list li {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-no-hu__guide-step-title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-no-hu__guide-step-description {
  font-size: 1em;
  color: var(--text-secondary-color);
  line-height: 1.7;
}

.page-no-hu__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  background-color: var(--deep-green-color);
  padding: 60px 0;
}

.page-no-hu__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-no-hu__benefits-list li {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--gold-color);
  border-radius: 8px;
  padding: 20px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__benefits-list li strong {
  color: var(--text-main-color);
}

/* Promo Section */
.page-no-hu__promo-section {
  background-color: var(--background-color);
  padding: 60px 0;
}