/* style/blog-how-to-register-y088-quickly.css */

/* --- Base Styles & Reset (Scoped) --- */
.page-blog-how-to-register-y088-quickly {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-blog-how-to-register-y088-quickly p,
.page-blog-how-to-register-y088-quickly li {
  color: #A7D9B8; /* Text Secondary for general text */
}

.page-blog-how-to-register-y088-quickly h1,
.page-blog-how-to-register-y088-quickly h2,
.page-blog-how-to-register-y088-quickly h3,
.page-blog-how-to-register-y088-quickly h4,
.page-blog-how-to-register-y088-quickly h5,
.page-blog-how-to-register-y088-quickly h6 {
  color: #F2FFF6; /* Text Main for headings */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-how-to-register-y088-quickly a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

.page-blog-how-to-register-y088-quickly a:hover {
  text-decoration: underline;
}

.page-blog-how-to-register-y088-quickly__section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2FFF6;
}

/* --- Hero Section --- */
.page-blog-how-to-register-y088-quickly__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
}

.page-blog-how-to-register-y088-quickly__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for hero image */
}

.page-blog-how-to-register-y088-quickly__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
  border-radius: 8px;
  margin-top: -100px; /* Overlap with image slightly for visual effect */
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-y088-quickly__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
}

.page-blog-how-to-register-y088-quickly__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* --- Buttons --- */
.page-blog-how-to-register-y088-quickly__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-y088-quickly__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-how-to-register-y088-quickly__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #57E38D; /* Glow color for secondary button text */
  border: 2px solid #57E38D; /* Glow color for border */
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-blog-how-to-register-y088-quickly__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1); /* Slight background on hover */
  color: #F2FFF6;
}