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

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  justify-content: center;
  background-color: #2F6BFF; /* Fallback for image */
  color: #ffffff;
}

.page-no-hu__hero-image {
  width: 100%;
  max-height: 500px; /* Limit height for desktop */
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover for desktop */
  object-position: center;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-no-hu__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 600px; /* Limit max width of button group */
  margin: 0 auto;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  color: #245ccb;
  transform: translateY(-2px);
  border-color: #245ccb;
}

/* General Section Styling */
.page-no-hu__section {
  padding: 60px 0;
  overflow: hidden;
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.3;
}

.page-no-hu__section-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__text-block strong {
  color: #000000; /* Custom Color_1776249996415 */
}

/* Dark Background Section */
.page-no-hu__dark-section {
  background: #2F6BFF;
  color: #ffffff;
}
.page-no-hu__dark-section .page-no-hu__section-title,
.page-no-hu__dark-section .page-no-hu__text-block,
.page-no-hu__dark-section .page-no-hu__section-subtitle,
.page-no-hu__dark-section .page-no-hu__card-title,
.page-no-hu__dark-section .page-no-hu__card-description {
  color: #ffffff;
}

/* Light Background Section */
.page-no-hu__light-bg {
  background: #FFFFFF; /* Card BG */
  color: #1F2D3D;
}

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