.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding for hero section */
}

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

.page-no-hu__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 15px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over image */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
}

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-no-hu__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.page-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-no-hu__btn-secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(46, 122, 78, 0.4);
}

.page-no-hu__btn-secondary:hover {
  transform: translateY(-3px);
  background: #1E3A2A; /* Divider */
  box-shadow: 0 6px 20px rgba(46, 122, 78, 0.6);
}

.page-no-hu__btn-inline {
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 15px;
  max-width: 250px;
}

.page-no-hu__btn-small {
  padding: 10px 15px;
  font-size: 0.9rem;
}

.page-no-hu__section {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-no-hu__section:nth-of-type(even) {
  background-color: #0A4B2C; /* Deep Green */
}

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-no-hu__section-title--light {
  color: #F2FFF6; /* Text Main */
  text-shadow: none;
}

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

.page-no-hu__text-block p {
  margin-bottom: 15px;
}

.page-no-hu__text-block--light {
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-no-hu__card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-no-hu__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-no-hu__game-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

.page-no-hu__game-trial-frame {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.page-no-hu__game-card h3 {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin: 20px 20px 10px 20px;
  font-weight: 600;
}

.page-no-hu__game-card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-no-hu__game-card .page-no-hu__btn-primary {
  margin: 0 20px 20px 20px;
  width: auto;
  align-self: center;
}

.page-no-hu__how-to-play .page-no-hu__article-body,
.page-no-hu__tips-strategies .page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-no-hu__numbered-list,
.page-no-hu__bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-no-hu__numbered-list li,
.page-no-hu__bullet-list li {
  background: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 1px solid #2E7A4E; /* Border */
}

.page-no-hu__numbered-list li h3,
.page-no-hu__bullet-list li h3 {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-no-hu__numbered-list li p,
.page-no-hu__bullet-list li p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-no-hu__article-figure {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-no-hu__promo-list li {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-no-hu__promo-list li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 0;
  color: #F2C14E; /* Gold */
}

.page-no-hu__promo-list li strong {
  color: #F2C14E; /* Gold */
}

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

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #0A4B2C; /* Deep Green */
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Gold */
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 5px 5px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-no-hu__cta-bottom .page-no-hu__container {
  background: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 50px 30px;
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-no-hu__cta-bottom .page-no-hu__text-block--light {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* General image responsiveness */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop specific grid adjustments */
@media (min-width: 1025px) {
  .page-no-hu__hero-image-wrapper {
    max-height: 700px;
  }
  .page-no-hu__hero-image {
    height: 700px;
  }
  .page-no-hu__hero-content {
    margin-top: -150px;
    padding: 30px 40px;
  }
}

/* Tablet/Small Desktop */
@media (max-width: 1024px) {
  .page-no-hu__hero-image-wrapper {
    max-height: 500px;
  }
  .page-no-hu__hero-image {
    height: 500px;
  }
  .page-no-hu__hero-content {
    margin-top: -80px;
    padding: 25px 30px;
  }
  .page-no-hu__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-no-hu__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }
  .page-no-hu__section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
  }
  .page-no-hu__grid-3-col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .page-no-hu__card-title {
    font-size: 1.3rem;
  }
  .page-no-hu__game-card h3 {
    font-size: 1.2rem;
  }
  .page-no-hu__text-block, .page-no-hu__article-body {
    font-size: 1rem;
  }
  .page-no-hu__numbered-list li h3, .page-no-hu__bullet-list li h3 {
    font-size: 1.2rem;
  }
  .page-no-hu__faq-qtext {
    font-size: 1rem;
  }
  .page-no-hu__cta-bottom .page-no-hu__text-block--light {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-no-hu {
    padding-top: 10px;
  }
  .page-no-hu__hero-image-wrapper {
    max-height: 300px;
  }
  .page-no-hu__hero-image {
    height: 300px;
    object-fit: contain !important; /* HERO main image mobile contain */
    aspect-ratio: unset !important;
  }
  .page-no-hu__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }
  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-no-hu__hero-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__container {
    padding: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__section {
    padding: 40px 0;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }
  .page-no-hu__text-block,
  .page-no-hu__article-body {
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 0 10px; /* Add some padding to prevent text touching edges */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__grid-3-col {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-no-hu__card {
    padding: 20px;
  }
  .page-no-hu__card-image {
    height: 180px;
  }
  .page-no-hu__card-title {
    font-size: 1.2rem;
  }
  .page-no-hu__game-list {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll for games list */
  }
  .page-no-hu__game-card h3 {
    font-size: 1.1rem;
    margin: 15px 15px 8px 15px;
  }
  .page-no-hu__game-card p {
    font-size: 0.9rem;
    margin: 0 15px 15px 15px;
  }
  .page-no-hu__game-card .page-no-hu__btn-primary {
    margin: 0 15px 15px 15px;
    width: calc(100% - 30px);
  }
  .page-no-hu__numbered-list li,
  .page-no-hu__bullet-list li {
    padding: 20px;
  }
  .page-no-hu__numbered-list li h3,
  .page-no-hu__bullet-list li h3 {
    font-size: 1.1rem;
  }
  .page-no-hu__article-figure {
    margin: 15px auto;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__promo-list li {
    font-size: 1rem;
  }
  .page-no-hu__faq-list {
    padding: 0 10px;
  }
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 0.95rem;
  }
  .page-no-hu__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
  .page-no-hu__cta-bottom .page-no-hu__container {
    padding: 30px 20px;
  }
  .page-no-hu__cta-bottom .page-no-hu__text-block--light {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__section, .page-no-hu__card, .page-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}