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

.page-no-hu__hero-section {
  padding-top: 10px; /* Consistent with header spacing rule */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Ensure consistent background */
}

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

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

.page-no-hu__hero-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-no-hu__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  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, #FFA53A 0%, #D96800 100%); /* Button color */
  color: #FFF3E6;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #E67A1A 100%);
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background-color: transparent;
  color: #FF8C1A;
  border: 2px solid #FF8C1A; /* Border color */
}

.page-no-hu__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #0D0E12;
  transform: translateY(-2px);
}

.page-no-hu__card-bg {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 12px;
}

.page-no-hu__dark-section {
  background-color: #0D0E12; /* Background */
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-no-hu__section-title {
  font-size: 2.2em;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-no-hu__text-block {
  font-size: 1.05em;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__highlight-text {
  color: #FFA53A;
  font-weight: bold;
}

.page-no-hu__link {
  color: #FFA53A;
  text-decoration: none;
}

.page-no-hu__link:hover {
  text-decoration: underline;
}

/* Game Tabs Section */
.page-no-hu__game-tabs {
  padding-bottom: 60px;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-no-hu__tab-button {
  background-color: #17191F;
  color: #FFF3E6;
  border: 1px solid #A84F0C; /* Border color */
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-no-hu__tab-button:hover,
.page-no-hu__tab-button.is-active {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border-color: transparent;
}

.page-no-hu__tab-content {
  margin-top: 20px;
}

.page-no-hu__game-panel {
  display: none;
  animation: fadeIn 0.5s forwards;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

.page-no-hu__game-panel-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-no-hu__game-image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__game-description-box {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-no-hu__game-title {
  font-size: 1.8em;
  color: #FF8C1A;
  margin-bottom: 15px;
}

.page-no-hu__panel-cta {
  margin-top: 20px;
}

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

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__guide-item {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  counter-increment: guide-step;
}

.page-no-hu__guide-item::before {
  content: "0" counter(guide-step);
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3em;
  font-weight: bold;
  color: #D96800; /* Deep Orange */
  opacity: 0.2;
  z-index: 0;
}

.page-no-hu__guide-item-title {
  font-size: 1.5em;
  color: #FFA53A;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-no-hu__guide-cta {
  margin-top: 40px;
  justify-content: center;
}

/* Tips Section */
.page-no-hu__tips-section {
  padding-bottom: 60px;
}

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

.page-no-hu__tips-item {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__tips-item-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 15px;
}

/* Promo Section */
.page-no-hu__promo-section {
  padding-bottom: 60px;
}

.page-no-hu__promo-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-no-hu__promo-text-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-no-hu__promo-list {
  list-style: disc;
  margin-left: 20px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-no-hu__promo-list li {
  margin-bottom: 8px;
}

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

.page-no-hu__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding-bottom: 60px;
}

.page-no-hu__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-no-hu__faq-item {
  background-color: #17191F;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: #FFF3E6;
}

.page-no-hu__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #FF8C1A;
  background-color: #17191F;
  border-bottom: 1px solid #A84F0C;
}

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

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: "−";
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #FFF3E6;
  background-color: #17191F;
}

/* Conclusion Section */
.page-no-hu__conclusion-section {
  padding-bottom: 60px;
  text-align: center;
}

.page-no-hu__conclusion-section .page-no-hu__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-no-hu__conclusion-section .page-no-hu__cta-buttons {
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: 2.4em;
  }
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__game-panel-inner {
    flex-direction: column;
  }
  .page-no-hu__game-image, .page-no-hu__game-description-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__hero-title {
    font-size: 2em;
    text-align: center;
  }
  .page-no-hu__hero-description {
    text-align: center;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-no-hu__container {
    padding: 0 15px;
  }
  .page-no-hu__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-no-hu__text-block {
    font-size: 1em;
    text-align: left;
  }
  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__tab-button {
    width: 100%;
    white-space: normal;
  }
  .page-no-hu__game-panel-inner {
    flex-direction: column;
    gap: 20px;
  }
  .page-no-hu__game-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    min-width: unset;
  }
  .page-no-hu__guide-list,
  .page-no-hu__tips-list {
    grid-template-columns: 1fr;
  }
  .page-no-hu__promo-content {
    flex-direction: column;
  }
  .page-no-hu__promo-text-block,
  .page-no-hu__promo-image-box {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__promo-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-no-hu__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-no-hu__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-no-hu__guide-item::before {
    font-size: 2.5em;
    top: -15px;
    left: 15px;
  }
  .page-no-hu__guide-item-title {
    font-size: 1.3em;
  }
  /* Universal image and container responsive styles */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__section,
  .page-no-hu__card-bg,
  .page-no-hu__dark-section,
  .page-no-hu__container,
  .page-no-hu__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-no-hu__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: 1.8em;
  }
  .page-no-hu__section-title {
    font-size: 1.6em;
  }
  .page-no-hu__tab-button {
    font-size: 0.9em;
  }
  .page-no-hu__game-title {
    font-size: 1.5em;
  }
  .page-no-hu__guide-item-title,
  .page-no-hu__tips-item-title {
    font-size: 1.2em;
  }
}