/* Social Media Icons - Rectangular Cyberpunk Style */
.social-sidebar {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  padding: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--border-primary);
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #000;
  border: 2px solid var(--border-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-icon:hover {
  color: #000;
  transform: translateX(5px);
  box-shadow: 5px 5px 0 rgba(0, 255, 0, 0.5);
}

.social-icon:hover::before {
  left: 0;
}

.social-tooltip {
  position: absolute;
  left: 60px;
  background: #000;
  color: #00ff00;
  padding: 5px 10px;
  border: 1px solid #00ff00;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.social-icon:hover .social-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .social-sidebar {
    flex-direction: row;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    justify-content: center;
    padding: 5px;
    gap: 5px;
    background: rgba(0, 0, 0, 0.9);
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .social-tooltip {
    display: none;
  }
}
