/* Base styles for the Nổ Hũ page */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-no-hu__section-padding {
  padding: 60px 20px;
}

.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);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-no-hu__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__text-block:last-child {
  margin-bottom: 0;
}

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

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

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A lighter shade of primary for contrast */
  border: 2px solid #2AD16F; /* Border matching primary button's lighter shade */
}

.page-no-hu__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #57E38D; /* Glow */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #F2C14E 0%, #D4A73F 100%); /* Gold */
  color: #08160F; /* Background color for contrast */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.4);
}

.page-no-hu__btn-play:hover {
  background: linear-gradient(180deg, #D4A73F 0%, #F2C14E 100%);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.6);
  transform: translateY(-1px);
}

.page-no-hu__btn-small {
  background: #2E7A4E; /* Border color for a subtle button */
  color: #F2FFF6; /* Text Main */
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-no-hu__btn-small:hover {
  background: #0A4B2C; /* Deep Green */
}