/* General Styling */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background: #08160F; /* Background */
}

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

.page-no-hu__section {
  padding: 60px 0;
}

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
}

.page-no-hu__text-block {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Assume shared.css handles body padding */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Minimum height for desktop hero */
}

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

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

.page-no-hu__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 160px; /* Ensure buttons are not too small */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
  background: #57E38D; /* Glow */
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-no-hu__btn-play:hover {
  opacity: 0.9;
}

.page-no-hu__btn-inline {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
  padding: 8px 15px;
  font-size: 15px;
  border-radius: 5px;
  margin-top: 10px;
  min-width: unset;
}

.page-no-hu__btn-inline:hover {
  opacity: 0.9;
}

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

.page-no-hu__game-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-no-hu__game-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__game-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow description to take available space */
}

/* Advantages Section */
.page-no-hu__dark-section {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-no-hu__dark-section .page-no-hu__section-title {
  color: #F2C14E; /* Gold */
}

.page-no-hu__dark-section .page-no-hu__text-block {
  color: #A7D9B8;
}

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

.page-no-hu__advantage-item {
  background: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-no-hu__advantage-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-no-hu__advantage-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* How to Play Section */
.page-no-hu__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__step-item {
  background: #11271B; /* Card BG */
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

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

.page-no-hu__step-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-no-hu__guide-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Minimum size */
}

/* Strategies Section */
.page-no-hu__light-bg {
  background: #0A4B2C; /* Deep Green */
}

.page-no-hu__light-bg .page-no-hu__section-title {
  color: #F2C14E; /* Gold */
}

.page-no-hu__light-bg .page-no-hu__text-block {
  color: #A7D9B8;
}

.page-no-hu__strategies-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__strategy-item {
  background: #11271B; /* Card BG */
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__strategy-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-no-hu__strategy-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Minimum size */
}

/* Promotions Section */
.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__promo-item {
  background: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

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

.page-no-hu__promo-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-no-hu__promo-cta {
  margin-top: 50px;
}

/* Download App Section */
.page-no-hu__download-app-section {
  background: #0A4B2C; /* Deep Green */
}

.page-no-hu__download-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
}

.page-no-hu__download-content {
  flex: 1;
  text-align: left;
}

.page-no-hu__download-content .page-no-hu__section-title {
  text-align: left;
  color: #F2C14E; /* Gold */
}

.page-no-hu__download-content .page-no-hu__text-block {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  color: #A7D9B8;
}

.page-no-hu__download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.page-no-hu__download-image-wrapper {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__download-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

/* FAQ Section */
.page-no-hu__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}