.share-component {
  display: flex;
  gap: 10px;
  align-items: center;
}


/*.share-component2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 10px;
}*/

/* Base button */
.share-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.share-component {
  isolation: isolate;  /* prevents parent styles leaking */
}

.share-btn {
  all: unset;  /* reset inherited styles */
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f5f5f5;
  color: #222;
  border: 1px solid #ddd;
  cursor: pointer;
}

/* Hover effect */
.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Brand colors */
.share-btn.fb:hover { background: #1877f2; }
.share-btn.tw:hover { background: #1da1f2; }
.share-btn.li:hover { background: #0a66c2; }
.share-btn.wa:hover { background: #25d366; }
.share-btn.copy:hover { background: #444; }

/* Copied state */
.share-copy.copied {
  background: #16a34a !important;
  border-color: #16a34a;
}




/* ── NORMAL NAV LINK (NEW) ───────────────── */
.hn-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s, background .15s;
}

.hn-link:hover {
  color: #f1f5f9;
  background: rgba(255,255,255,.06);
}

.hn-link.hn-active {
  color: #a5b4fc;
  background: rgba(99,102,241,.12);
}

/* 🔥 FORCE FIX NAV LINK COLORS */
.hn-link,
.hn-link:visited,
.hn-link:active,
.hn-link:focus {
  color: #94a3b8 !important;
  text-decoration: none !important;
}

.hn-drop a,
.hn-drop a:visited {
  color: #94a3b8 !important;
}

.hn-nav a,
.hn-nav a:visited {
  color: #94a3b8 !important;
}




/*footer */
.hf-footer {
  background: #0f1117;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 60px;
  padding: 40px 20px 20px;
}

.hf-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

.hf-col h4 {
  font-size: 14px;
  color: #a5b4fc;
  margin-bottom: 12px;
}

.hf-col a {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.hf-col a:hover {
  color: #f1f5f9;
  transform: translateX(4px);
}

.hf-bottom {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  margin-top: 30px;
}


@media (max-width: 900px) {
  .hf-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .hf-container {
    grid-template-columns: 1fr;
  }
}