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

.page-no-hu__hero-section {
  padding-top: 10px; /* Consistent top spacing */
  padding-bottom: 60px;
  background-color: #B71C1C;
  color: #FFF5E1;
}

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

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

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

.page-no-hu__hero-content {
  flex: 1 1 400px;
  text-align: center;
  min-width: 200px;
}

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFF5E1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.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: 14px 28px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Custom Border */
  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);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-no-hu__btn-secondary {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Custom Border */
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.page-no-hu__btn-secondary:hover {
  background-color: #C91F17; /* Main Color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 31, 23, 0.6);
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #B71C1C;
  color: #FFF5E1;
}

.page-no-hu__content-area--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.page-no-hu__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #F4D34D; /* Custom Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-no-hu__text-block {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1;
}

.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
}

.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-item {
  background-color: #C91F17; /* Main Color */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

.page-no-hu__icon-box-media {
  width: 280px;
  height: 280px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F4D34D; /* Custom Gold */
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.7); /* Custom Glow */
}

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

.page-no-hu__feature-title {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F4D34D; /* Custom Gold */
}

.page-no-hu__feature-description {
  font-size: 1rem;
  color: #FFF5E1;
}

.page-no-hu__popular-games-section {
  padding: 60px 0;
  background-color: #B71C1C;
}

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

.page-no-hu__game-card {
  background-color: #C91F17; /* Main Color */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__game-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 20px 15px 10px;
  color: #F4D34D; /* Custom Gold */
}

.page-no-hu__game-description {
  font-size: 0.95rem;
  margin: 0 15px 20px;
  color: #FFF5E1;
  flex-grow: 1;
}

.page-no-hu__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Custom Border */
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px 20px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-no-hu__view-all-games {
  text-align: center;
  margin-top: 50px;
}

.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-no-hu__guide-item {
  background-color: #C91F17; /* Main Color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-no-hu__guide-step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F4D34D; /* Custom Gold */
  margin-bottom: 10px;
}

.page-no-hu__guide-item p {
  font-size: 1rem;
  color: #FFF5E1;
  text-align: left;
}

.page-no-hu__guide-item a {
  color: #FFD86A; /* Lighter gold for links */
  text-decoration: underline;
}

.page-no-hu__guide-item a:hover {
  color: #E6B800;
}

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

.page-no-hu__tips-section {
  padding: 60px 0;
  background-color: #B71C1C;
}

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-no-hu__tips-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-no-hu__tips-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #F4D34D; /* Custom Gold */
  margin-bottom: 10px;
}

.page-no-hu__tips-item p {
  font-size: 1rem;
  color: #FFF5E1;
  text-align: left;
}

.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #C91F17; /* Main Color */
}

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

.page-no-hu__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
  color: #FFF5E1;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #F4D34D; /* Custom Gold */
  list-style: none; /* For details/summary */
}

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

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFD86A;
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF5E1;
}

.page-no-hu__promo-cta-section {
  padding: 60px 0;
  background-color: #E53935; /* Auxiliary Color */
  text-align: center;
}

.page-no-hu__promo-text {
  flex: 1 1 500px;
  min-width: 200px;
}

.page-no-hu__promo-text .page-no-hu__section-title {
  color: #FFF5E1;
}

.page-no-hu__promo-text .page-no-hu__text-block {
  margin-bottom: 0;
}

.page-no-hu__promo-buttons {
  flex: 0 1 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content {
    order: 2;
  }

  .page-no-hu__hero-image {
    order: 1;
  }

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

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

  .page-no-hu__tips-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-no-hu__promo-cta-section .page-no-hu__content-area--flex {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__promo-buttons {
    justify-content: center;
    width: 100%;
  }
}

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

  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-no-hu__description {
    font-size: 1rem;
  }

  /* Buttons in HERO */
  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Module 1 (Intro/Feature Grid) */
  .page-no-hu__intro-section,
  .page-no-hu__popular-games-section,
  .page-no-hu__guide-section,
  .page-no-hu__tips-section,
  .page-no-hu__faq-section,
  .page-no-hu__promo-cta-section {
    padding: 40px 0 !important;
  }

  .page-no-hu__content-area {
    padding: 30px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }

  .page-no-hu__text-block {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
  }

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

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

  /* Game Grid (Tab-like structure) */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .page-no-hu__game-card {
    margin-bottom: 20px;
  }

  .page-no-hu__game-title {
    font-size: 1.4rem !important;
  }

  .page-no-hu__game-description {
    font-size: 0.9rem !important;
  }

  .page-no-hu__btn-play {
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    padding: 10px 15px !important;
    font-size: 0.95rem !important;
  }

  /* Guide Section */
  .page-no-hu__guide-list {
    max-width: 100% !important;
  }

  .page-no-hu__guide-step-title {
    font-size: 1.3rem !important;
  }

  .page-no-hu__guide-item p {
    font-size: 0.95rem !important;
  }

  /* Tips Section */
  .page-no-hu__tips-list {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 20px !important;
  }

  .page-no-hu__tips-title {
    font-size: 1.25rem !important;
  }

  .page-no-hu__tips-item p {
    font-size: 0.95rem !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-list {
    max-width: 100% !important;
  }

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

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

  /* Promo CTA Section */
  .page-no-hu__promo-cta-section .page-no-hu__content-area--flex {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .page-no-hu__promo-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  /* Universal Image and Container Adaptations */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__hero-image img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__game-card img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__feature-item img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__guide-item,
  .page-no-hu__tips-item,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}