.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-no-hu__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

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

.page-no-hu__btn-secondary {
  background: transparent;
  color: #1D5FD1; /* Accent Color */
  border: 2px solid #1D5FD1;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.page-no-hu__btn-secondary:hover {
  background: rgba(29, 95, 209, 0.1);
  color: #4FA8FF; /* Glow */
  border-color: #4FA8FF; /* Glow */
  transform: translateY(-2px);
}

.page-no-hu__btn-small {
  padding: 8px 18px;
  font-size: 14px;
}

.page-no-hu__dark-section {
  background-color: #08162B; /* Deep Navy - Body BG */
}

.page-no-hu a {
  color: #1D5FD1; /* Accent Color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu a:hover {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as per rules */
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #113B7A, #08162B);
}

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

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 20px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.5;
}

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

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

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

/* Intro Section (3-column features) */
.page-no-hu__intro-section {
  padding: 80px 0;
}

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

.page-no-hu__feature-item {
  text-align: center;
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #244D84; /* Border Color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-no-hu__feature-title {
  font-size: 24px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 15px;
}

.page-no-hu__feature-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
  padding: 80px 0;
}

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

.page-no-hu__game-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #244D84; /* Border Color */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.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;
}

.page-no-hu__game-card-title {
  font-size: 22px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-no-hu__game-card-text {
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
}

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

.page-no-hu__guide-step {
  background-color: #10233F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #244D84; /* Border Color */
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__guide-step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(29, 95, 209, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__guide-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.page-no-hu__guide-step-title {
  font-size: 20px;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-no-hu__guide-step-text {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
}

/* Strategy Section */
.page-no-hu__strategy-section {
  padding: 80px 0;
}

.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 40px auto;
  max-width: 900px;
}

.page-no-hu__strategy-list li {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__strategy-item-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-no-hu__strategy-list li p {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 0;
  text-align: left;
}

.page-no-hu__strategy-image-wrapper {
  text-align: center;
  margin-top: 40px;
}