:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-bj88vn-official-link {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Ensure all links inherit color and are readable */
.page-blog-bj88vn-official-link a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-bj88vn-official-link a:hover {
  color: var(--glow);
}

/* Headings */
.page-blog-bj88vn-official-link h1,
.page-blog-bj88vn-official-link h2,
.page-blog-bj88vn-official-link h3,
.page-blog-bj88vn-official-link h4,
.page-blog-bj88vn-official-link h5,
.page-blog-bj88vn-official-link h6 {
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-bj88vn-official-link__hero-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-bj88vn-official-link__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-main);
}

.page-blog-bj88vn-official-link__section-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-bj88vn-official-link__highlight {
  color: var(--gold);
  font-weight: bold;
}

/* Container for content sections */
.page-blog-bj88vn-official-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-bj88vn-official-link__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px; /* Small top padding, larger bottom padding */
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-blog-bj88vn-official-link__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-bj88vn-official-link__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}