.social-flyout {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.social-flyout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(4px);
}
.social-flyout-card {
  position: relative;
  width: min(34rem, calc(100vw - 2rem));
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  border-radius: 0.7rem;
  background: linear-gradient(165deg, rgba(17, 20, 34, 0.98) 0%, rgba(8, 10, 18, 0.98) 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(var(--accent-rgb), 0.2);
  padding: 1rem 1rem 0.9rem;
}
.social-flyout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-flyout-title { font-size: 0.95rem; color: #d9ecff; font-weight: 600; }
.social-flyout-x {
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.35rem;
  background: rgba(20, 26, 40, 0.85);
  color: rgba(230, 235, 250, 0.75);
  cursor: pointer;
}
.social-flyout-links { margin-top: 0.75rem; display: grid; gap: 0.5rem; }
.social-flyout-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(140, 180, 220, 0.35);
  border-radius: 0.5rem;
  padding: 0.58rem 0.65rem;
  text-decoration: none;
  color: #d4e8ff;
  background: rgba(20, 26, 40, 0.76);
}
.social-flyout-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(220, 230, 255, 0.9);
}
.social-flyout-icon.tiktok { background: rgba(0, 0, 0, 0.28); color: #e8e8f0; }
.social-flyout-icon.youtube { background: rgba(196, 48, 43, 0.18); color: #ff6b5e; }
.social-flyout-link-label { display: flex; flex-direction: column; gap: 0.1rem; }
.social-flyout-link-pill {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(170, 190, 220, 0.7);
}
.social-flyout-actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.social-flyout-btn {
  border: 1px solid rgba(140, 180, 220, 0.4);
  background: rgba(20, 26, 40, 0.86);
  color: #d4e8ff;
  border-radius: 0.45rem;
  padding: 0.46rem 0.7rem;
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}
.social-flyout-btn.primary {
  border-color: rgba(var(--accent-rgb), 0.65);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.2);
}
