:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-color-dark: #0D0E12;
  --card-bg-color: #17191F;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg-color-rgb: 23, 25, 31; /* For rgba usage */
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Body is dark, so text is light */
  background-color: var(--background-color-dark); /* Ensure background is dark */
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  position: relative;
  margin-bottom: 40px;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 10px;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: -100px auto 0;
  background: rgba(var(--card-bg-color-rgb), 0.9); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  border: 1px solid var(--border-color);
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for responsive H1 */
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__lead-text {
  font-size: 1.1em;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-phan-tich-ty-le-keo-nha-cai-5-win-moi-nhat__content-section {
  padding: 40px 0;
}