.page-blog-how-to-use-fu88-link-effectively {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default to Text Main if not set by shared */
  background-color: var(--background-color, #08160F); /* Default to Background if not set by shared */
}

/* Hero Section */
.page-blog-how-to-use-fu88-link-effectively__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--background-color, #08160F);
}

.page-blog-how-to-use-fu88-link-effectively__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-how-to-use-fu88-link-effectively__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-blog-how-to-use-fu88-link-effectively__hero-content {
  position: relative; 
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: 40px; /* Separates content from image */
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-secondary-color, #A7D9B8);
}

/* General Content Section */
.page-blog-how-to-use-fu88-link-effectively__content-section {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__dark-bg {
  background-color: var(--card-bg-color, #11271B); /* Using Card BG color for dark sections */
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-use-fu88-link-effectively__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__paragraph {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
}

/* CTA Buttons */
.page-blog-how-to-use-fu88-link-effectively__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-how-to-use-fu88-link-effectively__btn-primary,
.page-blog-how-to-use-fu88-link-effectively__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-blog-how-to-use-fu88-link-effectively__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-use-fu88-link-effectively__btn-secondary {
  background: transparent;
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-use-fu88-link-effectively__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Method Cards / Security Tips / Benefit Cards */
.page-blog-how-to-use-fu88-link-effectively__method-card,
.page-blog-how-to-use-fu88-link-effectively__security-tip,
.page-blog-how-to-use-fu88-link-effectively__benefit-card {
  background-color: var(--card-bg-color, #11271B);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__method-title,
.page-blog-how-to-use-fu88-link-effectively__tip-title,
.page-blog-how-to-use-fu88-link-effectively__benefit-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__method-image,
.page-blog-how-to-use-fu88-link-effectively__tip-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-blog-how-to-use-fu88-link-effectively__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__list-item {
  margin-bottom: 10px;
}

.page-blog-how-to-use-fu88-link-effectively__list-item strong {
  color: var(--text-main-color, #F2FFF6);
}

/* FAQ Section */
.page-blog-how-to-use-fu88-link-effectively__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-use-fu88-link-effectively__faq-item {
  background-color: var(--background-color, #08160F);
  border: 1px solid var(--divider-color, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-use-fu88-link-effectively__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--background-color, #08160F);
}

.page-blog-how-to-use-fu88-link-effectively__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-how-to-use-fu88-link-effectively__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-how-to-use-fu88-link-effectively__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-use-fu88-link-effectively__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__faq-item[open] .page-blog-how-to-use-fu88-link-effectively__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form an X or close icon */
}

.page-blog-how-to-use-fu88-link-effectively__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.1em;
  color: var(--text-secondary-color, #A7D9B8);
}

/* CTA Section at bottom */
.page-blog-how-to-use-fu88-link-effectively__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

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

  .page-blog-how-to-use-fu88-link-effectively__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-how-to-use-fu88-link-effectively__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

  .page-blog-how-to-use-fu88-link-effectively__main-title {
    font-size: 2em; /* Smaller H1 for mobile */
  }

  .page-blog-how-to-use-fu88-link-effectively__hero-description {
    font-size: 1em;
  }

  .page-blog-how-to-use-fu88-link-effectively__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-use-fu88-link-effectively__paragraph {
    font-size: 1em;
  }

  .page-blog-how-to-use-fu88-link-effectively__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-use-fu88-link-effectively__btn-primary,
  .page-blog-how-to-use-fu88-link-effectively__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important; /* Ensure full width on mobile */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-blog-how-to-use-fu88-link-effectively img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-use-fu88-link-effectively__hero-image-wrapper,
  .page-blog-how-to-use-fu88-link-effectively__method-card,
  .page-blog-how-to-use-fu88-link-effectively__security-tip,
  .page-blog-how-to-use-fu88-link-effectively__benefit-card,
  .page-blog-how-to-use-fu88-link-effectively__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-use-fu88-link-effectively__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-how-to-use-fu88-link-effectively__video-section {
    padding-top: 10px !important;
  }

  /* Video responsive - if any */
  .page-blog-how-to-use-fu88-link-effectively video,
  .page-blog-how-to-use-fu88-link-effectively__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-use-fu88-link-effectively__video-section,
  .page-blog-how-to-use-fu88-link-effectively__video-container,
  .page-blog-how-to-use-fu88-link-effectively__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-how-to-use-fu88-link-effectively__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Color Contrast Enforcement (using defined colors) */
/* This assumes shared.css sets --background-color to #08160F and --text-main-color to #F2FFF6 */
/* If shared.css is different, these variables would adapt. */

.page-blog-how-to-use-fu88-link-effectively {
  color: var(--text-main-color, #F2FFF6); /* Ensure main text is light on dark background */
  background-color: var(--background-color, #08160F);
}

.page-blog-how-to-use-fu88-link-effectively__hero-section {
  background-color: var(--background-color, #08160F);
}

.page-blog-how-to-use-fu88-link-effectively__hero-content {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__main-title {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__hero-description {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__content-section {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__dark-bg {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__section-title {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__paragraph {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__method-card,
.page-blog-how-to-use-fu88-link-effectively__security-tip,
.page-blog-how-to-use-fu88-link-effectively__benefit-card {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__method-title,
.page-blog-how-to-use-fu88-link-effectively__tip-title,
.page-blog-how-to-use-fu88-link-effectively__benefit-title {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__list {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__list-item strong {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__faq-section {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__faq-item {
  background-color: var(--background-color, #08160F);
  border: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-how-to-use-fu88-link-effectively__faq-item summary {
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--background-color, #08160F);
}

.page-blog-how-to-use-fu88-link-effectively__faq-toggle {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-use-fu88-link-effectively__faq-answer {
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-use-fu88-link-effectively__cta-section {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}