.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as per instruction */
  padding-bottom: 40px;
  background-color: #f0f8ff; /* Light blue tint for hero background */
}

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

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: #1e1765;
}

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for main title */
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333333;
}

.page-no-hu__hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  max-width: 100%;
  text-align: center;
}

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-no-hu__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-no-hu__intro-section,
.page-no-hu__guide-section,
.page-no-hu__final-cta-section {
  padding: 60px 0;
  background-color: #ffffff; /* Light background */
}

.page-no-hu__game-showcase-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark section background (brand color) */
  color: #ffffff; /* Light text for dark background */
}

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

.page-no-hu__content-area--center {
  text-align: center;
}

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles on light background */
}

.page-no-hu__section-title--light {
  color: #ffffff; /* White color for titles on dark background */
}

.page-no-hu__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__text-block--light {
  color: #f0f0f0; /* Slightly off-white for better readability on brand blue */
}

.page-no-hu__highlight {
  font-weight: 700;
  color: #26A9E0; /* Highlight color on light background */
}

.page-no-hu__dark-section .page-no-hu__highlight {
  color: #ffcc00; /* Yellowish highlight on dark background */
}

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

.page-no-hu__feature-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 200px; /* Fixed width for square image */
  height: 200px; /* Fixed height for square image */
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  display: flex; /* Use flex to center image if it's smaller */
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the circular area */
  border-radius: 50%; /* Keep image circular inside its container */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-no-hu__feature-description {
  font-size: 1rem;
  color: #555555;
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.page-no-hu__game-card-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 15px;
}

.page-no-hu__btn-play {
  display: inline-block;
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push to bottom of card content */
  align-self: flex-start; /* Align to left within card */
}

.page-no-hu__btn-play:hover {
  background-color: #c96706;
}

.page-no-hu__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

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

.page-no-hu__guide-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  counter-increment: guide-step;
  position: relative;
  padding-left: 70px;
}

.page-no-hu__guide-item::before {
  content: counter(guide-step);
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #26A9E0;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.page-no-hu__guide-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-no-hu__guide-item p {
  font-size: 1rem;
  color: #555555;
}

.page-no-hu__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-no-hu__text-link:hover {
  color: #1e87b7;
}

.page-no-hu__faq-list {
  margin-top: 40px;
}

.page-no-hu__faq-item {
  background-color: #ffffff; /* White background for FAQ items on brand blue section */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}