/* style/blog-huong-dan-dang-ky-typhu88.css */
.page-blog-huong-dan-dang-ky-typhu88 {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-huong-dan-dang-ky-typhu88__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section */
.page-blog-huong-dan-dang-ky-typhu88__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Ensure background color for the section */
}

.page-blog-huong-dan-dang-ky-typhu88__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  flex-direction: row-reverse; /* Image on left, content on right */
}

.page-blog-huong-dan-dang-ky-typhu88__hero-content {
  flex: 1;
  max-width: 55%;
  color: #F2FFF6; /* Text Main */
}

.page-blog-huong-dan-dang-ky-typhu88__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-huong-dan-dang-ky-typhu88__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-huong-dan-dang-ky-typhu88__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-huong-dan-dang-ky-typhu88__btn-primary,
.page-blog-huong-dan-dang-ky-typhu88__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
  box-sizing: border-box; /* Include padding in width calculation */
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-blog-huong-dan-dang-ky-typhu88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-huong-dan-dang-ky-typhu88__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-huong-dan-dang-ky-typhu88__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-blog-huong-dan-dang-ky-typhu88__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
}

.page-blog-huong-dan-dang-ky-typhu88__hero-image {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.page-blog-huong-dan-dang-ky-typhu88__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-blog-huong-dan-dang-ky-typhu88__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-huong-dan-dang-ky-typhu88__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-huong-dan-dang-ky-typhu88__section-intro {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Why Register Section */
.page-blog-huong-dan-dang-ky-typhu88__why-register-section {
  background-color: #11271B; /* Card BG */
}

.page-blog-huong-dan-dang-ky-typhu88__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-huong-dan-dang-ky-typhu88__feature-item {
  background-color: rgba(17, 168, 78, 0.1); /* Lighter green tint */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-huong-dan-dang-ky-typhu88__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-huong-dan-dang-ky-typhu88__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Registration Steps Section */
.page-blog-huong-dan-dang-ky-typhu88__registration-steps {
  background-color: #08160F; /* Background */
}