/* ═══════════════════════════════════════════
   panel-link.css — "open panel" access button
   Deliberately NOT a social icon: rectangular
   terminal-prompt pill so it reads as a way
   into an internal panel, not an outbound link.
═══════════════════════════════════════════ */

.panel-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 22px;
  padding: 9px 18px;
  border-radius: 4px;

  background: rgba(255, 31, 110, 0.06);
  border: 1px solid rgba(255, 31, 110, 0.32);
  backdrop-filter: blur(6px);

  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;

  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.28s var(--ease-spring);
}

.panel-link i.bi-terminal-fill {
  font-size: 13px;
  color: var(--clr-pink);
}

.panel-link__sep {
  color: var(--clr-pink);
}

.panel-link__cursor {
  display: inline-block;
  margin-left: 1px;
  color: var(--clr-pink);
  animation: panelCursorBlink 1.1s step-end infinite;
}

.panel-link__arrow {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.25s, color 0.25s;
}

.panel-link:hover {
  background: rgba(255, 31, 110, 0.12);
  border-color: rgba(255, 31, 110, 0.6);
  box-shadow: 0 0 24px rgba(255, 31, 110, 0.30);
  transform: translateY(-2px);
  color: rgba(255, 255, 255, 0.92);
}

.panel-link:hover .panel-link__arrow {
  transform: translateX(3px);
  color: var(--clr-pink);
}

@keyframes panelCursorBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@media (max-width: 600px) {
  .panel-link {
    margin-top: 18px;
    padding: 8px 14px;
    font-size: 10.5px;
  }
  .panel-link__sep { display: none; }
}
