/* style/blog-how-to-safely-login-sp666.css */

/* Base styles for the page content, ensuring contrast with body background which is #08160F */
.page-blog-how-to-safely-login-sp666 {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-safely-login-sp666__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-safely-login-sp666__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  background-color: #08160F; /* Ensure consistent background */
  color: #F2FFF6;
}

.page-blog-how-to-safely-login-sp666__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-how-to-safely-login-sp666__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-how-to-safely-login-sp666__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-how-to-safely-login-sp666__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
}

.page-blog-how-to-safely-login-sp666__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* CTA Buttons */
.page-blog-how-to-safely-login-sp666__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-safely-login-sp666__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-how-to-safely-login-sp666__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-safely-login-sp666__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-how-to-safely-login-sp666__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.2);
  background: #0A4B2C; /* Deep Green */
}

/* Content Sections */
.page-blog-how-to-safely-login-sp666__content-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-safely-login-sp666__dark-bg {
  background-color: #11271B; /* Card BG, for alternating sections */
}

.page-blog-how-to-safely-login-sp666__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-safely-login-sp666__subsection-title {
  font-size: 1.8em;
  font-weight: bold;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-safely-login-sp666__text-block p,
.page-blog-how-to-safely-login-sp666__faq-answer p {
  font-size: 1em;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-safely-login-sp666__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-safely-login-sp666__list-item {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-safely-login-sp666__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-safely-login-sp666__keyword {
  color: #2AD16F; /* Highlight keywords */
  font-weight: bold;
}

.page-blog-how-to-safely-login-sp666__link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-blog-how-to-safely-login-sp666__link:hover {
  color: #57E38D; /* Glow */
}

.page-blog-how-to-safely-login-sp666__button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

/* FAQ Section */
.page-blog-how-to-safely-login-sp666__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-safely-login-sp666__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-safely-login-sp666__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  font-size: 1.1em;
  list-style: none; /* Hide default marker */
}

.page-blog-how-to-safely-login-sp666__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-safely-login-sp666__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-safely-login-sp666__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-blog-how-to-safely-login-sp666__faq-item[open] .page-blog-how-to-safely-login-sp666__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-safely-login-sp666__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-how-to-safely-login-sp666 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-safely-login-sp666__hero-section {
    padding: 20px 0;
  }

  .page-blog-how-to-safely-login-sp666__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-safely-login-sp666__main-title {
    font-size: 2em;
  }

  .page-blog-how-to-safely-login-sp666__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-safely-login-sp666__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 10px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-safely-login-sp666__button-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-how-to-safely-login-sp666__content-section {
    padding: 30px 0;
  }

  .page-blog-how-to-safely-login-sp666__container {
    padding: 0 15px;
  }

  .page-blog-how-to-safely-login-sp666__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-safely-login-sp666__subsection-title {
    font-size: 1.5em;
    margin-top: 20px;
  }

  .page-blog-how-to-safely-login-sp666 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-how-to-safely-login-sp666__image-content {
    margin: 20px auto;
  }

  .page-blog-how-to-safely-login-sp666__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-safely-login-sp666__faq-answer {
    padding: 0 20px 15px;
  }
}