.page-blog-how-to-safely-access-vivu88 {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main on dark background */
  background-color: transparent; /* Body background from shared.css */
}

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

.page-blog-how-to-safely-access-vivu88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space for content below image */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-blog-how-to-safely-access-vivu88__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Max height for hero image */
  object-fit: cover;
  display: block;
}

.page-blog-how-to-safely-access-vivu88__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap image slightly for visual flow */
  background-color: #11271B; /* Card BG for content block */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 10;
  position: relative;
}

.page-blog-how-to-safely-access-vivu88__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1, no fixed large size */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-safely-access-vivu88__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-how-to-safely-access-vivu88__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-how-to-safely-access-vivu88__btn-primary,
.page-blog-how-to-safely-access-vivu88__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-safely-access-vivu88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-safely-access-vivu88__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-how-to-safely-access-vivu88__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Green from button gradient for border/text */
  border: 2px solid #2AD16F;
}

.page-blog-how-to-safely-access-vivu88__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  color: #57E38D; /* Glow color */
}

.page-blog-how-to-safely-access-vivu88__section {
  padding: 60px 0;
  background-color: #08160F; /* Background color */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-how-to-safely-access-vivu88__section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-safely-access-vivu88__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-safely-access-vivu88__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-how-to-safely-access-vivu88__text-block strong {
  color: #F2FFF6; /* Text Main for strong text */
}

.page-blog-how-to-safely-access-vivu88__list,
.page-blog-how-to-safely-access-vivu88__ordered-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-blog-how-to-safely-access-vivu88__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-safely-access-vivu88__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Green checkmark */
  font-weight: bold;
}

.page-blog-how-to-safely-access-vivu88__ordered-list .page-blog-how-to-safely-access-vivu88__list-item {
  counter-increment: step-counter;
}

.page-blog-how-to-safely-access-vivu88__ordered-list .page-blog-how-to-safely-access-vivu88__list-item::before {
  content: counter(step-counter) '.';
  color: #F2C14E; /* Gold number */
  font-weight: bold;
  font-size: 1.2em;
  left: 0;
  width: 25px;
  text-align: right;
  margin-right: 5px;
}

.page-blog-how-to-safely-access-vivu88__image-content {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

/* FAQ Section */
.page-blog-how-to-safely-access-vivu88__faq-section {
  padding-bottom: 80px;
}

.page-blog-how-to-safely-access-vivu88__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-how-to-safely-access-vivu88__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-safely-access-vivu88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main for question */
  list-style: none; /* For details/summary */
}

.page-blog-how-to-safely-access-vivu88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-safely-access-vivu88__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-blog-how-to-safely-access-vivu88__faq-item[open] .page-blog-how-to-safely-access-vivu88__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

.page-blog-how-to-safely-access-vivu88__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-how-to-safely-access-vivu88__faq-answer p {
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-how-to-safely-access-vivu88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-safely-access-vivu88__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-safely-access-vivu88__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
    padding-bottom: 40px;
  }

  .page-blog-how-to-safely-access-vivu88__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-blog-how-to-safely-access-vivu88__main-title {
    font-size: 2em; /* Smaller on mobile */
    margin-bottom: 15px;
  }

  .page-blog-how-to-safely-access-vivu88__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-how-to-safely-access-vivu88__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-safely-access-vivu88__btn-primary,
  .page-blog-how-to-safely-access-vivu88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-how-to-safely-access-vivu88__section {
    padding: 40px 0;
  }

  .page-blog-how-to-safely-access-vivu88__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-safely-access-vivu88__text-block,
  .page-blog-how-to-safely-access-vivu88__list-item,
  .page-blog-how-to-safely-access-vivu88__faq-answer {
    font-size: 0.95em;
  }

  .page-blog-how-to-safely-access-vivu88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size even on mobile */
    min-height: 200px !important;
  }
  
  /* All image containers must also be max-width: 100% */
  .page-blog-how-to-safely-access-vivu88__section,
  .page-blog-how-to-safely-access-vivu88__card, /* Not used directly but for general rule */
  .page-blog-how-to-safely-access-vivu88__container,
  .page-blog-how-to-safely-access-vivu88__hero-section,
  .page-blog-how-to-safely-access-vivu88__hero-content,
  .page-blog-how-to-safely-access-vivu88__cta-buttons,
  .page-blog-how-to-safely-access-vivu88__faq-list,
  .page-blog-how-to-safely-access-vivu88__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
}