.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #000;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-screen.hide { opacity: 0; visibility: hidden; }

.icon-dock {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 30px !important;
  text-align: center;
}

.dock-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.quick-panel {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.68), rgba(3, 3, 4, 0.74));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: slideUp 0.55s ease both;
}

.quick-panel.collapsed { display: none; }

.social-link,
.friend-card {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 17px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.friend-card:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.social-link .material-symbols-rounded {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  font-size: 22px;
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.social-link small,
.friend-card small {
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  font-weight: 700;
}

.friend-avatar {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  background: rgba(255, 255, 255, 0.07);
}

.friend-avatar .material-symbols-rounded { font-size: 22px; }
.friend-card span:last-child { min-width: 0; display: grid; gap: 3px; }
.friend-card strong { color: #fff; font-size: 13px; }

@media (max-width: 460px) {
  .icon-dock { gap: 28px !important; }
  .quick-panel { padding: 10px; border-radius: 22px; }
  .social-link,
  .friend-card { min-height: 54px; padding: 8px; }
}
