.page-blog-f1680-login-guide {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color, #08160F); /* Background */
}

.page-blog-f1680-login-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 600px;
  overflow: hidden;
  color: #F2FFF6;
  background-color: #08160F; /* Ensure dark background for hero */
}

.page-blog-f1680-login-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-f1680-login-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-top: 20px; /* Small margin to separate from potential header offset */
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  letter-spacing: 0.05em;
}

.page-blog-f1680-login-guide__description {
  font-size: clamp(1em, 2vw, 1.2em);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-f1680-login-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-f1680-login-guide__btn-primary,
.page-blog-f1680-login-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-f1680-login-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-blog-f1680-login-guide__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-f1680-login-guide__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2);
  color: #57E38D; /* Glow */
  border-color: #57E38D;
}

.page-blog-f1680-login-guide__content-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__light-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__section-title--white {
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-f1680-login-guide__text-block--white {
  color: #A7D9B8;
}

.page-blog-f1680-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__step-card,
.page-blog-f1680-login-guide__issue-card,
.page-blog-f1680-login-guide__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__step-title,
.page-blog-f1680-login-guide__issue-title,
.page-blog-f1680-login-guide__feature-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #57E38D; /* Glow */
}

.page-blog-f1680-login-guide__step-image,
.page-blog-f1680-login-guide__feature-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-f1680-login-guide__step-description,
.page-blog-f1680-login-guide__issue-description,
.page-blog-f1680-login-guide__feature-description {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-f1680-login-guide__text-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-blog-f1680-login-guide__text-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-blog-f1680-login-guide__text-link--white {
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__text-link--white:hover {
  color: #57E38D;
}

.page-blog-f1680-login-guide__feature-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-f1680-login-guide__feature-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-blog-f1680-login-guide__feature-list li strong {
  color: #F2FFF6;
}

.page-blog-f1680-login-guide__video-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto 0 auto;
  border-radius: 10px;
}

.page-blog-f1680-login-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-blog-f1680-login-guide__faq-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6;
  box-sizing: border-box;
}

.page-blog-f1680-login-guide__faq-list {
  margin-top: 40px;
}

.page-blog-f1680-login-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-f1680-login-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6;
  font-weight: 600;
  font-size: 1.15em;
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none;
}

.page-blog-f1680-login-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f1680-login-guide__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-f1680-login-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-blog-f1680-login-guide__faq-item[open] .page-blog-f1680-login-guide__faq-toggle {
  content: '−';
}

.page-blog-f1680-login-guide__faq-answer {
  padding: 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-blog-f1680-login-guide__faq-answer p {
  margin-bottom: 15px;
}

.page-blog-f1680-login-guide__faq-answer a {
  color: #57E38D;
  text-decoration: none;
  font-weight: 500;
}

.page-blog-f1680-login-guide__faq-answer a:hover {
  text-decoration: underline;
  color: #F2C14E;
}

.page-blog-f1680-login-guide__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-f1680-login-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-f1680-login-guide__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }

  .page-blog-f1680-login-guide__description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }

  .page-blog-f1680-login-guide__section-title {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
  }

  .page-blog-f1680-login-guide__step-title,
  .page-blog-f1680-login-guide__issue-title,
  .page-blog-f1680-login-guide__feature-title {
    font-size: 1.4em;
  }

  .page-blog-f1680-login-guide__faq-question {
    font-size: 1.05em;
  }
}

@media (max-width: 768px) {
  .page-blog-f1680-login-guide__hero-section {
    min-height: 400px;
  }

  .page-blog-f1680-login-guide__hero-content {
    padding: 20px 15px;
    margin-top: 0; /* Remove extra margin for mobile */
  }

  .page-blog-f1680-login-guide__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-f1680-login-guide__description {
    font-size: clamp(0.85em, 2.5vw, 1em);
    margin-bottom: 20px;
  }

  .page-blog-f1680-login-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-f1680-login-guide__btn-primary,
  .page-blog-f1680-login-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-f1680-login-guide__content-section,
  .page-blog-f1680-login-guide__video-section,
  .page-blog-f1680-login-guide__faq-section,
  .page-blog-f1680-login-guide__conclusion-section {
    padding: 40px 15px;
  }

  .page-blog-f1680-login-guide__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-f1680-login-guide__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-blog-f1680-login-guide__text-block,
  .page-blog-f1680-login-guide__step-description,
  .page-blog-f1680-login-guide__issue-description,
  .page-blog-f1680-login-guide__feature-description,
  .page-blog-f1680-login-guide__feature-list li,
  .page-blog-f1680-login-guide__faq-answer {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .page-blog-f1680-login-guide__step-card,
  .page-blog-f1680-login-guide__issue-card,
  .page-blog-f1680-login-guide__feature-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-blog-f1680-login-guide__step-title,
  .page-blog-f1680-login-guide__issue-title,
  .page-blog-f1680-login-guide__feature-title {
    font-size: 1.3em;
    margin-bottom: 15px;
  }

  .page-blog-f1680-login-guide__hero-image,
  .page-blog-f1680-login-guide__step-image,
  .page-blog-f1680-login-guide__feature-image,
  .page-blog-f1680-login-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-f1680-login-guide__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-f1680-login-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-blog-f1680-login-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
}