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

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

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow */
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 40px auto;
  color: #FFF3E6;
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #FFF3E6;
}

.page-no-hu__article-body p {
  margin-bottom: 20px;
}

.page-no-hu__article-body ul,
.page-no-hu__article-body ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-no-hu__article-body li {
  margin-bottom: 10px;
}

.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  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;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

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

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255,176,77,0.5);
}

.page-no-hu__intro-text {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 30px;
  color: #FFF3E6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  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: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255,165,58,0.4);
}

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

.page-no-hu__btn-secondary {
  background: transparent;
  color: #FFB04D; /* Glow */
  border: 2px solid #A84F0C; /* Border */
  box-shadow: 0 2px 10px rgba(168,79,12,0.3);
}

.page-no-hu__btn-secondary:hover {
  background: rgba(255,165,58,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(168,79,12,0.5);
}

.page-no-hu__btn-inline {
  margin-top: 20px;
  display: inline-block;
}

.page-no-hu__about-section,
.page-no-hu__why-choose-section,
.page-no-hu__popular-games-section,
.page-no-hu__how-to-play-section,
.page-no-hu__tips-section,
.page-no-hu__faq-section,
.page-no-hu__cta-section {
  padding: 60px 0;
}

.page-no-hu__dark-section {
  background-color: #17191F; /* Card BG */
}

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

.page-no-hu__card {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #A84F0C; /* Border */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-no-hu__card-title {
  font-size: 24px;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-no-hu__card-text {
  font-size: 16px;
  color: #FFF3E6;
  flex-grow: 1;
}

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

.page-no-hu__game-card {
  text-align: center;
}

.page-no-hu__game-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.page-no-hu__game-title {
  font-size: 22px;
  color: #FFB04D; /* Glow */
  margin-bottom: 8px;
}

.page-no-hu__game-provider {
  font-size: 15px;
  color: #FFF3E6;
  margin-bottom: 15px;
}

.page-no-hu__game-trial-frame {
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%;
  height: 200px; /* Fixed height for trial frame */
}

.page-no-hu__btn-play {
  margin-top: auto; /* Push button to bottom */
  width: 100%;
  max-width: 200px;
}

.page-no-hu__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.page-no-hu__steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  position: relative;
  padding-left: 60px;
}

.page-no-hu__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(255,165,58,0.4);
}

.page-no-hu__step-title {
  font-size: 20px;
  color: #FFB04D; /* Glow */
  margin-bottom: 5px;
}

.page-no-hu__step-item p {
  font-size: 16px;
  color: #FFF3E6;
}

.page-no-hu__how-to-play-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-no-hu__how-to-play-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  display: block;
}

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

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu__tips-list li {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-no-hu__tips-list li strong {
  color: #FFB04D; /* Glow */
}

.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 #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}

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

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: rgba(255,165,58,0.1);
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04D; /* Glow */
}

.page-no-hu__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 25px 25px;
  background: rgba(255,165,58,0.05); /* Slightly lighter background for answer */
  border-radius: 0 0 10px 10px;
  color: #FFF3E6;
}

.page-no-hu__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-no-hu__text-center {
  text-align: center;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: clamp(32px, 4.5vw, 55px);
  }
  .page-no-hu__intro-text {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-no-hu__hero-image-wrapper {
    max-height: 600px;
  }
  .page-no-hu__btn-primary, .page-no-hu__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-no-hu__features-grid, .page-no-hu__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-no-hu__content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .page-no-hu__how-to-play-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__container,
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__content-area,
  .page-no-hu__text-block,
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container,
  .page-no-hu__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* HERO Section - Mobile */
  .page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-image-wrapper {
    max-height: 400px;
    margin-bottom: 20px;
  }
  .page-no-hu__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    filter: brightness(0.8) !important;
  }
  .page-no-hu__main-title {
    font-size: clamp(28px, 8vw, 40px) !important;
    margin-bottom: 15px;
  }
  .page-no-hu__intro-text {
    font-size: 16px !important;
    margin-bottom: 25px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Buttons - Mobile */
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 14px 10px !important;
    font-size: 16px !important;
  }

  /* Section Titles & Descriptions - Mobile */
  .page-no-hu__section-title {
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-bottom: 30px;
  }
  .page-no-hu__section-description {
    font-size: 15px !important;
    margin-bottom: 30px;
  }
  .page-no-hu__article-body {
    font-size: 16px !important;
  }

  /* Product/Games Grid - Mobile */
  .page-no-hu__features-grid,
  .page-no-hu__games-grid {
    grid-template-columns: 1fr !important; /* Single column */
    gap: 20px !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  .page-no-hu__game-card {
    max-width: 100%;
  }
  .page-no-hu__game-thumbnail {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
  .page-no-hu__game-trial-frame {
    height: 180px !important;
  }

  /* How-to-Play Section - Mobile */
  .page-no-hu__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-no-hu__step-item {
    padding-left: 50px;
  }
  .page-no-hu__step-number {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .page-no-hu__step-title {
    font-size: 18px;
  }
  .page-no-hu__how-to-play-image-wrapper {
    margin-top: 20px;
  }
  .page-no-hu__how-to-play-image {
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ Section - Mobile */
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 16px;
  }
  .page-no-hu__faq-toggle {
    font-size: 24px;
    margin-left: 10px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
  .page-no-hu__faq-answer p {
    font-size: 15px;
  }

  /* General Images - Mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}