/* style/blog-how-to-use-78vin-code-register-login.css */

/* Base styles for the page content, ensuring dark background and light text for contrast */
.page-blog-how-to-use-78vin-code-register-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-how-to-use-78vin-code-register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-use-78vin-code-register-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  min-height: 500px; /* Ensure hero has a minimum height */
}

.page-blog-how-to-use-78vin-code-register-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 700px; /* Limit height for aesthetic */
}

.page-blog-how-to-use-78vin-code-register-login__hero-content {
  position: relative;
  z-index: 2;
  background-color: rgba(17, 39, 27, 0.7); /* Card BG with transparency for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin-top: 20px; /* Separate from image above */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-use-78vin-code-register-login__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Flexible font size for H1 */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-use-78vin-code-register-login__hero-description {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* CTA Button - Primary Style */
.page-blog-how-to-use-78vin-code-register-login__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-use-78vin-code-register-login__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-blog-how-to-use-78vin-code-register-login__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.4);
}

/* CTA Button - Secondary Style */
.page-blog-how-to-use-78vin-code-register-login__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter green */
  border: 2px solid #2AD16F; /* Lighter green */
}

.page-blog-how-to-use-78vin-code-register-login__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.2);
}

.page-blog-how-to-use-78vin-code-register-login__btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* Content Sections */
.page-blog-how-to-use-78vin-code-register-login__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-how-to-use-78vin-code-register-login__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-use-78vin-code-register-login__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-use-78vin-code-register-login__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-how-to-use-78vin-code-register-login__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.page-blog-how-to-use-78vin-code-register-login__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}