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

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

/* --- Hero Section --- */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  background: linear-gradient(180deg, #C91F17 0%, #E53935 100%); /* Main brand colors */
  text-align: center;
  padding-bottom: 40px;
}

.page-no-hu__hero-image {
  margin-bottom: 20px;
}

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

.page-no-hu__hero-content {
  padding: 0 20px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Clamp for H1 */
  font-weight: 700;
  color: #FFD86A; /* Gold color for title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu__hero-description {
  font-size: 1.15rem;
  color: #FFF5E1; /* Text Main */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-no-hu__hero-description a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red for text on gold button */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-no-hu__btn-secondary {
  background: #B71C1C; /* Background */
  color: #FFD86A; /* Gold */
  border: 2px solid #F4D34D; /* Border Gold */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: #7A0E0E; /* Deep Red */
  border-color: #FFCC66; /* Glow */
}

/* --- Section Titles & Descriptions --- */
.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #FFD86A; /* Gold */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-no-hu__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__section-description a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

/* --- About Section --- */
.page-no-hu__about-section {
  padding: 60px 0;
  background: #B71C1C; /* Background */
}

.page-no-hu__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
  text-align: justify;
}

.page-no-hu__text-block a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

/* --- Games Showcase Section --- */
.page-no-hu__games-showcase {
  padding: 60px 0;
  background: #7A0E0E; /* Deep Red */
}

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

.page-no-hu__game-card {
  background: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A; /* Gold */
}

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

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

.page-no-hu__game-description {
  font-size: 0.95rem;
  color: #FFF5E1; /* Text Main */
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-no-hu__game-btn {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red */
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__game-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* --- Tips Section --- */
.page-no-hu__tips-section {
  padding: 60px 0;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

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

.page-no-hu__tip-item {
  background: #B71C1C; /* Background */
  border: 1px solid #F2B544; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__tip-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold */
}

.page-no-hu__tip-text {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__tip-text a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

/* --- Benefits Section --- */
.page-no-hu__benefits-section {
  padding: 60px 0;
  background: #B71C1C; /* Background */
}

.page-no-hu__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.page-no-hu__benefit-item img {
  
  
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.page-no-hu__benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD86A; /* Gold */
}

.page-no-hu__benefit-text {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__benefit-text a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

/* --- Register Guide Section --- */
.page-no-hu__register-guide {
  padding: 60px 0;
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__guide-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-no-hu__guide-steps {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.page-no-hu__step-number {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
  color: #7A0E0E; /* Deep Red */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-no-hu__step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 5px;
  color: #FFD86A; /* Gold */
}

.page-no-hu__step-text {
  font-size: 1rem;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__step-text a {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
}

.page-no-hu__guide-image {
  flex: 1;
  text-align: center;
}

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

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

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

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

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
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: #C91F17; /* Main color on hover */
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold */
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #C91F17; /* Main color for answer background */
  border-radius: 0 0 10px 10px;
}
.page-no-hu__faq-answer p {
  color: #FFF5E1; /* Text Main */
  font-size: 1rem;
}

/* --- Final CTA Section --- */
.page-no-hu__final-cta {
  padding: 60px 0;
  background: #D32F2F; /* Card BG */
  text-align: center;
  color: #FFF5E1; /* Text Main */
}

/* --- Responsive Styles --- */
/* Desktop-first, so general styles are for desktop */

/* @media (max-width: 1024px) - Tablet */
@media (max-width: 1024px) {
  .page-no-hu__container {
    padding: 20px 30px;
  }

  .page-no-hu__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

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