.page-no-hu {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for emphasis */
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  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, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

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

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

.page-no-hu__btn-secondary:hover {
  background-color: rgba(255, 211, 107, 0.1);
  transform: translateY(-2px);
}

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

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

.page-no-hu__intro-section,
.page-no-hu__game-tabs-section,
.page-no-hu__guide-section,
.page-no-hu__promotions-section,
.page-no-hu__faq-section,
.page-no-hu__cta-final-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
}

.page-no-hu__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

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

.page-no-hu__icon-box {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 211, 107, 0.2);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2C14E;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-no-hu__icon-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Main color */
}

.page-no-hu__icon-box-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

.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: #111111; /* Card BG */
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Border */
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-no-hu__tab-button:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-no-hu__tab-button.is-active {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-color: #F2C14E;
  box-shadow: 0 2px 10px rgba(255, 211, 107, 0.4);
}

.page-no-hu__game-panel {
  display: none;
}

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

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

.page-no-hu__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

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

.page-no-hu__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__game-title a {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu__game-title a:hover {
  color: #FFD36B; /* Glow color */
}

.page-no-hu__game-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-no-hu__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-no-hu__guide-step {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #F2C14E; /* Main color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-no-hu__guide-number {
  line-height: 1;
}

.page-no-hu__guide-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color */
}

.page-no-hu__guide-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-no-hu__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-no-hu__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 211, 107, 0.2);
}

.page-no-hu__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-no-hu__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__promo-title a {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu__promo-title a:hover {
  color: #FFD36B; /* Glow color */
}

.page-no-hu__promo-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-no-hu__btn-detail {
  display: inline-block;
  background: #F2C14E; /* Main color */
  color: #111111;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-no-hu__faq-item {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  border: 1px solid #3A2A12; /* Border */
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E; /* Main color */
  list-style: none;
  user-select: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #FFD36B; /* Glow color */
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-answer {
  max-height: 1000px; /* Arbitrarily large value for smooth transition */
}

.page-no-hu__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A0A0A;
}

.page-no-hu__cta-final-content {
  max-width: 900px;
  margin: 0 auto;
}

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

/* General container responsive styles */
.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-no-hu__hero-content {
    padding-right: 0;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
  }
  .page-no-hu__cta-buttons {
    justify-content: center;
  }
  .page-no-hu__main-title {
    font-size: 2.8rem;
  }
  .page-no-hu__section-title {
    font-size: 2.2rem;
  }
  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
  }
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 15px;
    gap: 30px;
  }
  .page-no-hu__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .page-no-hu__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Module 1: Three-column round images */
  .page-no-hu__icon-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
  }

  /* Seven Tab Game Area */
  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-no-hu__tab-button {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
  }
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__game-card {
    padding: 15px;
  }
  .page-no-hu__game-title {
    font-size: 1.2rem;
  }
  .page-no-hu__btn-play {
    font-size: 0.9rem;
  }

  /* Tutorial long text / Promo / Trust / FAQ / intro排版 */
  .page-no-hu__intro-section,
  .page-no-hu__game-tabs-section,
  .page-no-hu__guide-section,
  .page-no-hu__promotions-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-final-section {
    padding: 40px 0;
  }
  .page-no-hu__content-area {
    padding: 0 15px;
  }
  .page-no-hu__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .page-no-hu__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-no-hu__guide-steps {
    gap: 30px;
  }
  .page-no-hu__guide-step {
    padding: 20px;
  }
  .page-no-hu__guide-title {
    font-size: 1.4rem;
  }
  .page-no-hu__guide-text {
    font-size: 0.9rem;
  }
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__promo-card {
    padding: 20px;
  }
  .page-no-hu__promo-title {
    font-size: 1.2rem;
  }
  .page-no-hu__btn-detail {
    font-size: 0.9rem;
  }
  .page-no-hu__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }
  .page-no-hu__cta-final-section {
    padding: 60px 0;
  }
  .page-no-hu__cta-final-content {
    padding: 0 15px;
  }

  /* General images and containers */
  .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,
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Exception for round images - maintain aspect ratio */
  .page-no-hu__icon-box-media {
    width: 120px;
    height: 120px;
    border: 2px solid #F2C14E;
  }
  .page-no-hu__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Buttons and button containers */
  .page-no-hu__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}