/* style/no-hu.css */

/* Base styles for the Nổ Hũ page */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #F5F7FA; /* Custom background color */
  padding-bottom: 50px;
}

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

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #E53935; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FF5A4F; /* Auxiliary brand color */
  border-radius: 2px;
}

.page-no-hu__section-title--white {
  color: #ffffff;
}
.page-no-hu__section-title--white::after {
  background-color: #ffffff;
}

.page-no-hu__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
}

.page-no-hu__text-block--white {
  color: #ffffff;
}

/* Color contrast classes */
.page-no-hu__light-bg {
  background-color: #F5F7FA; /* Custom background color */
  color: #333333;
}

.page-no-hu__dark-bg {
  background-color: #E53935; /* Main brand color */
  color: #ffffff;
}

/* Buttons */
.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,
.page-no-hu__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}

.page-no-hu__btn-secondary {
  background-color: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-no-hu__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
}

.page-no-hu__btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.5);
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a; /* Dark background for hero */
}