* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

canvas {
  display: block;
  cursor: grab;
}

canvas:active {
  cursor: grabbing;
}

/* Header with name - thin gray line with white name */
.site-header {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.header-border {
  position: relative;
  display: flex;
  align-items: center;
}

.header-border::before,
.header-border::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #888888;
}

.header-border h1 {
  font-size: 11px;
  font-weight: 400;
  color: #888888;
  letter-spacing: 2px;
  padding: 0 14px;
  background: #ffffff;
  text-transform: uppercase;
}

/* Social links - no border, small gray icons */
.social-links {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #1a1a1a;
}

.social-links svg {
  width: 18px;
  height: 18px;
}
