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

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

/* Hero Section */
.page-no-hu__hero-section {
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using aux and main color for hero background */
  color: #ffffff; /* White text for dark background */
  padding-top: 10px; /* Small top padding as per instruction */
  padding-bottom: 60px;
}

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

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

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

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

.page-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.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;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Custom Button Color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

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

.page-no-hu__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.2);
}

.page-no-hu__hero-image {
  flex: 1 1 40%;
  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.2);
}

/* General Section Titles */
.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-no-hu__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #2F6BFF; /* Main Color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-no-hu__text-block {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Games Showcase Section */
.page-no-hu__games-showcase-section {
  background-color: #ffffff; /* Card BG */
  padding: 60px 0;
}

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

.page-no-hu__game-card {
  background-color: #F4F7FB; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 20px 20px 10px;
}

.page-no-hu__game-card-description {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-no-hu__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Why Choose Section */
.page-no-hu__why-choose-section {
  padding: 60px 0;
}

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