/* ============================================
   REACTRECALL LANDING PAGE
   Full-screen desktop experience
   ============================================ */

:root {
  /* Background hierarchy - deep space blacks */
  --bg-void: #08090a;
  --bg-base: #0c0d0f;
  --bg-surface: #111214;
  --bg-elevated: #16181b;
  --bg-hover: #1c1e22;
  --bg-active: #22252a;

  /* Border colors */
  --border-subtle: #1a1c20;
  --border-default: #252830;
  --border-strong: #333842;

  /* Text hierarchy */
  --text-primary: #e8eaed;
  --text-secondary: #9aa0a9;
  --text-muted: #5f6670;
  --text-disabled: #3d424a;

  /* Accent - electric cyan */
  --accent: #00d4ff;
  --accent-bright: #5de8ff;
  --accent-dim: #0099bb;
  --accent-subtle: rgba(0, 212, 255, 0.08);
  --accent-glow: rgba(0, 212, 255, 0.4);

  /* Semantic colors */
  --color-success: #00e57a;
  --color-success-dim: rgba(0, 229, 122, 0.15);
  --color-error: #ff4d6a;
  --color-error-dim: rgba(255, 77, 106, 0.12);
  --color-warning: #ffb800;
  --color-info: #3b8bff;
  --color-network: #a855f7;

  /* Type indicators */
  --dot-event: #3b8bff;
  --dot-log: #5f6670;
  --dot-error: #ff4d6a;
  --dot-network: #a855f7;

  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Shadows */
  --shadow-lg: 0 7px 27px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 14px 41px rgba(0, 0, 0, 0.7);
  --glow-accent: 0 0 26px rgba(0, 212, 255, 0.2);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-void);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scanlines overlay */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 3px
  );
  pointer-events: none;
  z-index: 10000;
}

/* ============================================
   DESKTOP BACKGROUND
   ============================================ */

.desktop-bg {
  position: fixed;
  inset: 0;
  background: url('assets/bears.jpg') center center / cover no-repeat;
  z-index: 0;
}

.desktop-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1.3px);
  -webkit-backdrop-filter: blur(1.3px);
  pointer-events: none;
}

/* ============================================
   WINDOWS
   ============================================ */

.window {
  position: fixed;
  background: var(--bg-base);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  z-index: 10;
  transition: box-shadow 0.15s ease;
}

.window:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-strong);
}

.window.dragging {
  box-shadow: var(--shadow-xl), var(--glow-accent);
  z-index: 1000 !important;
  cursor: grabbing;
}

.window.focused {
  z-index: 100;
}

.window-titlebar {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border-subtle);
  min-height: 37px;
  cursor: grab;
  user-select: none;
  flex-shrink: 0;
}

.window-titlebar:active {
  cursor: grabbing;
}

.window-controls {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.control {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: filter 0.15s ease;
}

.control:hover {
  filter: brightness(1.2);
}

.control-close { background: #ff5f57; }
.control-minimize { background: #febc2e; }
.control-maximize { background: #28c840; }

.window-tabs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.window-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 10px;
  color: var(--text-muted);
}

.window-tab.active {
  background: var(--bg-active);
  color: var(--text-primary);
}

.tab-icon {
  font-size: 9px;
}

.tab-divider {
  width: 1px;
  height: 12px;
  background: var(--border-default);
}

.window-title-center {
  flex: 1;
  text-align: center;
}

.terminal-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
}

.window-actions {
  width: 44px;
  display: flex;
  justify-content: flex-end;
}

.window-action {
  color: var(--text-muted);
  font-size: 9px;
  cursor: pointer;
}

.window-content {
  flex: 1;
  overflow: hidden;
}

/* Browser Window */
.window-browser {
  height: 796px;
}

.browser-split {
  display: flex;
  height: 100%;
}

.browser-pane {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-divider {
  width: 1px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ============================================
   CHAT APP
   ============================================ */

/* Demo App - Distinct palette from ReactRecall */
.demo-app {
  flex: 70;
  background: #0a0c0e;
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.chat-messages {
  flex: 1;
  padding: 17px 153px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0a0c0e;
}

.message {
  max-width: 85%;
}

.message-assistant {
  max-width: 100%;
}

.message-assistant { align-self: flex-start; }
.message-user { align-self: flex-end; }

.message-content {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.message-assistant .message-content {
  background: transparent;
  color: #c8cdd4;
  padding: 0;
}

.message-user .message-content {
  background: #1a1e24;
  color: #e4e8ec;
  border-radius: 10px;
}

.message-content p {
  margin: 0 0 9px 0;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.message-content strong {
  color: #7090b0;
}

.message-user .message-content strong {
  color: #e4e8ec;
}

.chat-code {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #060809;
  border: 1px solid #1a1e24;
  border-radius: 7px;
  padding: 9px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  margin-bottom: 10px;
  position: relative;
}

.chat-code code {
  flex: 1;
  color: #c8cdd4;
}

.chat-code-multi {
  flex-direction: column;
  align-items: stretch;
  padding-top: 24px;
}

.chat-code-multi::before {
  content: attr(data-lang);
  position: absolute;
  top: 7px;
  left: 10px;
  font-size: 9px;
  color: #5a6570;
  font-family: var(--font-mono);
}

.chat-code-multi pre {
  margin: 0;
  overflow-x: auto;
}

.chat-code-multi code {
  display: block;
  line-height: 1.5;
  font-size: 10px;
}

.chat-input-area {
  padding: 14px 153px 20px;
  background: #0a0c0e;
  flex-shrink: 0;
}

.chat-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 15px 12px;
  background: #0e1012;
  border: 1px solid #1a1e22;
  border-radius: 12px;
}

.chat-input {
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  color: #c8cdd4;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  resize: none;
  min-height: 41px;
}

.chat-input::placeholder {
  color: #5a6570;
}

.chat-input:focus {
  outline: none;
}

.chat-input-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-input-left {
  display: flex;
  align-items: center;
  gap: 3px;
}

.chat-action-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 7px;
  color: #5a6370;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chat-action-btn:hover {
  color: #8a90a0;
}

.chat-action-btn.active {
  background: #1e2530;
  color: #7a9ec0;
}

.chat-action-btn.active:hover {
  background: #252d3a;
}

.chat-action-btn svg {
  width: 15px;
  height: 15px;
}

.chat-send {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: none;
  border-radius: 7px;
  color: var(--bg-void);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  animation: sendPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent-glow);
}

.chat-send:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 20px var(--accent-glow);
  animation: none;
}

.chat-send.sent {
  animation: none;
  box-shadow: none;
  background: #3a4250;
}

.chat-send.sent:hover {
  background: #4a5260;
  box-shadow: none;
}

@keyframes sendPulse {
  0%, 100% {
    box-shadow: 0 0 8px var(--accent-glow);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px var(--accent-glow), 0 0 30px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
  }
}

.send-hint-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-hint {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  animation: hintBounce 1.5s ease-in-out infinite;
  white-space: nowrap;
}

.send-hint-arrow {
  display: inline-block;
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes hintBounce {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.chat-send:active {
  transform: scale(0.95);
}

.chat-send svg {
  width: 15px;
  height: 15px;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #1a1e24;
  border-top-color: #4a6380;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  align-self: flex-start;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-toast {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%) translateY(-17px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #180a0a;
  border: 1px solid #3a1a1a;
  border-radius: 7px;
  color: #c06060;
  font-size: 10px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.error-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.error-icon {
  width: 14px;
  height: 14px;
}

/* ============================================
   REACTRECALL DASHBOARD
   ============================================ */

.recall-dashboard {
  flex: 30;
  background: var(--bg-base);
  position: relative;
}

.recall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  flex-shrink: 0;
}

.recall-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.recall-icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
  filter: drop-shadow(0 0 3px var(--accent-glow));
  flex-shrink: 0;
}

.recall-filters {
  display: flex;
  gap: 5px;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 5px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-chip.active {
  background: var(--accent-subtle);
  color: var(--accent);
  border-color: rgba(0, 212, 255, 0.2);
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.chip-dot.blue { background: var(--dot-event); }
.chip-dot.gray { background: var(--dot-log); }
.chip-dot.red { background: var(--dot-error); }
.chip-dot.purple { background: var(--dot-network); }

.chip-count {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 1px 4px;
  background: var(--bg-active);
  border-radius: 3px;
}

.filter-chip.active .chip-count {
  background: rgba(0, 212, 255, 0.2);
  color: var(--accent-bright);
}

.recall-timeline {
  flex: 1;
  overflow-y: auto;
}

.timeline-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 10px;
}

.log-entry {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 11px;
  border-bottom: 1px solid var(--border-subtle);
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  transition: background 0.1s ease;
}

.log-entry:last-child {
  border-bottom: none;
}

.log-entry:hover {
  background: var(--bg-hover);
}

.log-entry.selected {
  background: var(--accent-subtle);
  border-bottom-color: rgba(0, 212, 255, 0.1);
}

.log-entry.highlight {
  background: rgba(255, 184, 0, 0.08);
  border-left: 2px solid var(--color-warning);
  padding-left: 9px;
}

.log-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.log-dot.blue { background: var(--dot-event); }
.log-dot.gray { background: var(--dot-log); }
.log-dot.red { background: var(--dot-error); box-shadow: 0 0 5px rgba(255, 77, 106, 0.4); }
.log-dot.purple { background: var(--dot-network); }

.log-content {
  flex: 1;
  min-width: 0;
}

.log-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.log-type {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-primary);
}

.log-status {
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-mono);
  padding: 2px 5px;
  border-radius: 3px;
}

.log-status.success {
  color: var(--color-success);
  background: var(--color-success-dim);
}

.log-status.error {
  color: var(--color-error);
  background: var(--color-error-dim);
}

.log-duration {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.log-time {
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-disabled);
  margin-left: auto;
}

.log-details {
  font-size: 9px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-mono);
}

/* Network Details Expandable */
.expand-btn {
  background: none;
  border: 1px solid var(--border-default);
  border-radius: 3px;
  color: var(--text-muted);
  font-size: 9px;
  padding: 2px 7px;
  cursor: pointer;
  transition: all 0.1s ease;
  margin-left: 5px;
}

.expand-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.expand-btn.expanded {
  background: var(--accent-subtle);
  color: var(--accent);
  border-color: rgba(0, 212, 255, 0.3);
}

.network-details {
  margin-top: 7px;
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  overflow: hidden;
  display: none;
}

.network-details.expanded {
  display: block;
}

.network-section {
  border-bottom: 1px solid var(--border-subtle);
}

.network-section:last-child {
  border-bottom: none;
}

.network-section-header {
  padding: 7px 10px;
  background: #101214;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.1s ease;
}

.network-section-header:hover {
  background: #151719;
  color: var(--text-primary);
}

.network-section-header .chevron {
  transition: transform 0.15s ease;
  opacity: 0.5;
  font-size: 9px;
}

.network-section.open .network-section-header .chevron {
  transform: rotate(90deg);
}

.network-section-header .badge {
  margin-left: auto;
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: var(--bg-active);
  padding: 1px 5px;
  border-radius: 3px;
}

.network-section-content {
  display: none;
  padding: 7px 10px;
  background: var(--bg-surface);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  max-height: 128px;
  overflow-y: auto;
}

.network-section.open .network-section-content {
  display: block;
}

.network-section-content pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
}

.network-headers-table {
  width: 100%;
  border-collapse: collapse;
}

.network-headers-table td {
  padding: 2px 0;
  vertical-align: top;
}

.network-headers-table td:first-child {
  color: var(--accent);
  padding-right: 10px;
  white-space: nowrap;
}

.network-headers-table td:last-child {
  color: var(--text-secondary);
  word-break: break-all;
}

.recall-action-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 14px;
  padding: 7px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  box-shadow: var(--shadow-lg), 0 0 15px rgba(0, 212, 255, 0.1);
  z-index: 100;
}

.recall-action-bar.visible {
  display: flex;
}

.action-bar-count {
  font-size: 10px;
  white-space: nowrap;
  color: var(--text-secondary);
}

.action-bar-count strong {
  color: var(--accent);
  font-family: var(--font-mono);
}

.action-bar-buttons {
  display: flex;
  gap: 5px;
}

.action-bar-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  color: var(--bg-void);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.action-bar-btn:hover {
  background: var(--accent-bright);
}

.action-bar-btn-text {
  background: transparent;
  border-color: var(--border-default);
  color: var(--text-secondary);
}

.action-bar-btn-text:hover {
  background: var(--bg-hover);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.keybind {
  font-size: 9px;
  opacity: 0.6;
}

.action-bar-btn.copied {
  background: var(--color-success);
  border-color: var(--color-success);
}

/* ============================================
   TERMINAL
   ============================================ */

.window-terminal {
  height: 520px;
  background: transparent;
}

.terminal-content {
  height: 100%;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  overflow-y: auto;
  background: rgba(10, 10, 10, 0.85);
}

.terminal-line {
  display: flex;
  gap: 9px;
  margin-bottom: 5px;
}

.terminal-prompt {
  color: var(--color-success);
}

.terminal-command {
  color: var(--text-primary);
}

.terminal-output {
  color: var(--text-secondary);
}

.claude-welcome-box {
  border: 1px solid #865;
  border-radius: 7px;
  margin-bottom: 10px;
  font-size: 9px;
}

.claude-box-header {
  color: #c97;
  font-size: 9px;
  padding: 7px 14px;
  border-bottom: 1px solid #865;
}

.claude-box-content {
  display: flex;
  padding: 14px 17px;
  gap: 20px;
}

.claude-box-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary);
  min-width: 102px;
}

.claude-pig {
  color: #D77757;
  font-size: 10px;
  line-height: 1;
  margin: 7px 0;
}

.claude-box-right {
  flex: 1;
  border-left: 1px solid #555;
  padding-left: 17px;
}

.claude-tips-header {
  color: #c97;
  font-weight: 500;
  margin-bottom: 2px;
}

.claude-tips-text {
  color: var(--text-muted);
  margin-bottom: 7px;
}

.claude-divider-line {
  border-bottom: 1px solid #444;
  margin: 7px 0;
}

.claude-model-info {
  color: var(--text-muted);
  font-size: 9px;
  margin-bottom: 10px;
}

.claude-line {
  margin-bottom: 7px;
  line-height: 1.5;
}

.claude-bullet {
  color: var(--accent);
}

.claude-tool {
  color: var(--color-warning);
  font-weight: 500;
}

.claude-result {
  color: var(--text-muted);
  padding-left: 14px;
  border-left: 2px solid var(--border-default);
  margin-left: 7px;
  margin-top: 3px;
  font-size: 9px;
}

.claude-code {
  display: block;
  background: var(--bg-elevated);
  padding: 9px 12px;
  border-radius: 5px;
  margin: 7px 0;
  border: 1px solid var(--border-subtle);
  font-size: 9px;
}

.claude-success {
  color: var(--color-success);
}

.claude-dim {
  color: #6a7080;
  font-family: 'JetBrains Mono', monospace;
}

.claude-user {
  color: var(--text-primary);
  font-weight: 500;
}

.claude-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 10px 0;
}

.typing-cursor {
  display: inline-block;
  width: 7px;
  height: 12px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ============================================
   COPY BUTTONS & SYNTAX HIGHLIGHTING
   ============================================ */

.copy-btn-small {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 3px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.copy-btn-small:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.copy-btn-small.copied {
  background: var(--color-success-dim);
  color: var(--color-success);
  border-color: rgba(0, 229, 122, 0.3);
}

.copy-btn-small svg {
  width: 10px;
  height: 10px;
}

.hl-keyword { color: var(--color-network); }
.hl-string { color: var(--color-success); }
.hl-function { color: var(--color-info); }
.hl-tag { color: var(--accent); }


/* ============================================
   BOUNCING SCREENSAVER ELEMENTS
   ============================================ */

.bouncer {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(10, 12, 14, 0.9);
  border: 1px solid var(--border-default);
  border-radius: 7px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  z-index: 1000;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.bouncer:hover {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  color: var(--text-primary);
}

.bouncer svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

#bouncerGithub {
  left: 34px;
  bottom: 34px;
}

#bouncerNpm {
  right: 34px;
  top: 34px;
}

#bouncerNpm svg {
  fill: #cb3837;
}
