/* style/no-hu.css */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: transparent; /* Body background is #B71C1C from shared.css */
}

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

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

.page-no-hu__section-description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1; /* Text Main */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles main offset */
  padding-bottom: 60px;
  background-color: #B71C1C; /* Background color for hero section if needed */
}

.page-no-hu__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 15px;
  flex-wrap: wrap;
}

.page-no-hu__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  margin-bottom: 30px;
  color: #FFF5E1; /* Text Main */
}

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

.page-no-hu__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  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, #FFD86A 0%, #E6B800 100%); /* Button color */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-no-hu__btn-secondary {
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F4D34D; /* Gold border */
  box-shadow: 0 4px 15px rgba(201, 31, 23, 0.4);
}

.page-no-hu__btn-secondary:hover {
  background-color: #E53935; /* Auxiliary color */
  transform: translateY(-2px);
}

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

.page-no-hu__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element for max-width/height:auto */
  margin: 0 auto;
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-no-hu__feature-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__feature-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F4D34D; /* Gold border */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold-like for emphasis */
}

.page-no-hu__feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
}

/* Game Highlights Section */
.page-no-hu__game-highlights-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-no-hu__game-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #FFF5E1; /* Text Main */
  transition: transform 0.3s ease;
  display: block;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

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

.page-no-hu__game-card-title {
  font-size: 22px;
  font-weight: 700;
  padding: 15px 20px 10px;
  color: #FFD86A; /* Gold-like for emphasis */
}

.page-no-hu__game-card-text {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 20px;
  color: #FFF5E1; /* Text Main */
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

.page-no-hu__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-no-hu__guide-steps {
  flex: 1;
  min-width: 300px;
}

.page-no-hu__ordered-list {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
}

.page-no-hu__ordered-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__ordered-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD86A; /* Gold for numbers */
  color: #7A0E0E; /* Deep Red for contrast */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.page-no-hu__guide-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #FFCC66; /* Glow */
}

.page-no-hu__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

/* Promo Section */
.page-no-hu__promo-section {
  padding: 80px 0;
  background-color: #7A0E0E; /* Deep Red */
}

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

.page-no-hu__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #FFF5E1; /* Text Main */
  transition: transform 0.3s ease;
  display: block;
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__promo-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-card-title {
  font-size: 22px;
  font-weight: 700;
  padding: 15px 20px 10px;
  color: #FFD86A; /* Gold-like for emphasis */
}

.page-no-hu__promo-card-text {
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 20px;
  color: #FFF5E1; /* Text Main */
}

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

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-no-hu__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  background-color: #C91F17; /* Main color */
  color: #FFF5E1; /* Text Main */
  border-bottom: 1px solid #7A0E0E; /* Deep Red */
  list-style: none; /* For details/summary */
}

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

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  border-bottom: 1px solid transparent;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A; /* Gold */
}

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

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #D32F2F; /* Card BG */
}

/* Final CTA Section */
.page-no-hu__cta-final {
  padding: 80px 0;
  background-color: #E53935; /* Auxiliary color */
  text-align: center;
}

.page-no-hu__cta-final-content {
  max-width: 800px;
}

.page-no-hu__cta-final .page-no-hu__section-title,
.page-no-hu__cta-final .page-no-hu__section-description {
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__cta-final .page-no-hu__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    padding: 40px 15px;
  }

  .page-no-hu__hero-content,
  .page-no-hu__hero-image-wrapper {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .page-no-hu__guide-content {
    flex-direction: column;
    align-items: center;
  }

  .page-no-hu__guide-steps {
    order: 2;
  }

  .page-no-hu__guide-image-wrapper {
    order: 1;
    margin-bottom: 40px;
  }

  .page-no-hu__promo-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Fixed top padding, body handles main offset */
    padding-bottom: 40px !important;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 30px 15px !important;
    gap: 20px !important;
  }

  .page-no-hu__hero-content {
    text-align: center;
  }

  .page-no-hu__main-title {
    font-size: 32px !important;
    margin-bottom: 15px !important;
  }

  .page-no-hu__hero-description {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-no-hu__btn {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section - Module 1 */
  .page-no-hu__intro-section {
    padding: 60px 0 !important;
  }

  .page-no-hu__section-title {
    font-size: 26px !important;
    margin-bottom: 15px !important;
  }

  .page-no-hu__section-description {
    font-size: 15px !important;
    margin-bottom: 30px !important;
  }

  .page-no-hu__feature-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-no-hu__icon-box-media {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 15px !important;
  }

  .page-no-hu__feature-title {
    font-size: 20px !important;
  }

  /* Game Highlights Section */
  .page-no-hu__game-highlights-section {
    padding: 60px 0 !important;
  }

  .page-no-hu__game-card-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-no-hu__game-card-image {
    height: 180px !important;
  }

  .page-no-hu__game-card-title {
    font-size: 20px !important;
  }

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

  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 20px !important;
  }

  .page-no-hu__ordered-list li {
    font-size: 15px !important;
    padding-left: 40px !important;
  }

  .page-no-hu__ordered-list li::before {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
  }

  .page-no-hu__guide-step-title {
    font-size: 18px !important;
  }

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

  .page-no-hu__promo-card-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-no-hu__promo-card-image {
    height: 180px !important;
  }

  .page-no-hu__promo-card-title {
    font-size: 20px !important;
  }

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

  .page-no-hu__faq-question {
    padding: 15px 20px !important;
    font-size: 16px !important;
  }

  .page-no-hu__faq-toggle {
    font-size: 20px !important;
  }

  .page-no-hu__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 15px !important;
  }

  /* Final CTA Section */
  .page-no-hu__cta-final {
    padding: 60px 0 !important;
  }

  /* Universal image adaptation for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__container,
  .page-no-hu__feature-card,
  .page-no-hu__game-card,
  .page-no-hu__promo-card,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Specific override for circular images to maintain aspect ratio */
  .page-no-hu__icon-box-media img {
    height: 100% !important;
    object-fit: cover !important;
  }
  /* Ensure general containers don't cause overflow */
  .page-no-hu__hero-image-wrapper, .page-no-hu__guide-image-wrapper {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}