.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Text Main */
  background: #F5F7FA; /* Background */
  line-height: 1.6;
}

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

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #E53935; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF5A4F 0%, #E53935 100%);
  border-radius: 2px;
}

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

.page-no-hu__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__keyword {
  font-weight: bold;
  color: #E53935; /* Main Color */
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  overflow: hidden;
}

.page-no-hu__hero-image {
  width: 100%;
  max-height: 550px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop, will change to contain for mobile */
  object-position: center;
}

.page-no-hu__hero-content {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
  color: #ffffff;
  padding: 0 15px;
}

.page-no-hu__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Responsive font size */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-no-hu__description {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button Color */
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.6);
}

.page-no-hu__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #E53935; /* Main Color */
  border: 2px solid #E53935; /* Main Color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
  transform: translateY(-3px);
  background: #f0f0f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.page-no-hu__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Games Section */
.page-no-hu__games-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-no-hu__game-card {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-no-hu__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-no-hu__game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e0e0e0; /* Border */
}

.page-no-hu__game-card .page-no-hu__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #E53935; /* Main Color */
  padding: 20px 20px 10px;
  margin: 0;
}

.page-no-hu__game-card .page-no-hu__card-description {
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-no-hu__btn-play {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button Color */
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  background: #E53935; /* Main Color */
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-no-hu__benefit-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for contrast */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-no-hu__benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-no-hu__benefit-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-no-hu__benefit-description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-no-hu__step-item {
  background: #ffffff; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #E53935; /* Main Color */
  margin-bottom: 15px;
}

.page-no-hu__step-description {
  font-size: 16px;
  line-height: 1.7;
}

.page-no-hu__step-description a {
  color: #E53935; /* Main Color */
  text-decoration: none;
  font-weight: 600;
}

.page-no-hu__step-description a:hover {
  text-decoration: underline;
}

/* Strategy Section */
.page-no-hu__strategy-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-no-hu__strategy-list li {
  background: #ffffff; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.page-no-hu__strategy-list li:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-no-hu__strategy-list li strong {
  color: #E53935; /* Main Color */
}

/* Promo Section */
.page-no-hu__promo-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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