/* style/resources-nhat-vip-latest-guide.css */

/* --- Root Variables & Base Styles --- */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-card-dark: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark backgrounds */
  --border-color-dark: rgba(255, 255, 255, 0.15);
  --shadow-dark: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-resources-nhat-vip-latest-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Base text color for dark body background */
  background-color: var(--bg-dark); /* Should match body background for consistency */
  line-height: 1.6;
  padding-bottom: 60px; /* Space for footer */
}

/* --- General Content Area Styling --- */
.page-resources-nhat-vip-latest-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-nhat-vip-latest-guide h1,
.page-resources-nhat-vip-latest-guide h2,
.page-resources-nhat-vip-latest-guide h3 {
  color: var(--primary-color); /* Headings use primary color */
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-nhat-vip-latest-guide h1 {
  font-size: 3.2em;
  text-align: center;
}

.page-resources-nhat-vip-latest-guide h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-nhat-vip-latest-guide h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-nhat-vip-latest-guide h3 {
  font-size: 1.8em;
  color: var(--text-light); /* Sub-headings can be light text on dark bg */
}

.page-resources-nhat-vip-latest-guide p {
  margin-bottom: 1em;
  color: var(--text-light);
}

.page-resources-nhat-vip-latest-guide a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-nhat-vip-latest-guide a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-nhat-vip-latest-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

/* --- CTA Buttons --- */
.page-resources-nhat-vip-latest-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-nhat-vip-latest-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--bg-dark); /* Dark text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
}