/* Base styles for the Nổ Hũ page */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Background */
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
}

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

.page-no-hu__container--center {
    text-align: center;
}

.page-no-hu__section {
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-no-hu__section-title--light {
  color: #FFF1E8; /* Text Main */
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
}

.page-no-hu__article-body p {
  margin-bottom: 20px;
}

.page-no-hu__article-body--light {
    color: #FFF1E8;
}

.page-no-hu__highlight {
  color: #FFB04A; /* From button gradient */
  font-weight: bold;
}

.page-no-hu__link {
    color: #FFB04A; /* Gold-like from button gradient */
    text-decoration: underline;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop */
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 15px;
}

.page-no-hu__hero-title {
  font-size: clamp(32px, 4.5vw, 48px); /* Using clamp for responsive H1 */
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-no-hu__hero-description {
  font-size: 20px;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-game {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #2A1212; /* Card BG for contrast with gold gradient */
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-no-hu__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #FFB04A; /* Gold from button gradient */
  border: 2px solid #FFB04A; /* Gold border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-no-hu__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
  background: #6A1E1E; /* Border color for hover */
  color: #FFF1E8; /* Text Main */
}

.page-no-hu__btn-game {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #2A1212;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 15px;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-game:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-no-hu__cta-buttons--center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0 15px;
}

/* Feature Grid */
.page-no-hu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__feature-card {
  background: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #6A1E1E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}