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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  touch-action: none;
}

/* ── Intro block — gökyüzü ortası ── */
#intro {
  position: fixed;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  text-align: center;
}

/* ── Avatar + name row ── */
.name-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.intro-name {
  font-family: 'Georgia', serif;
  font-size: 46px;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.40);
  line-height: 1.15;
}

.intro-tagline {
  font-family: 'Georgia', serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.50);
}

/* ── Social icons ── */
#social {
  display: flex;
  gap: 64px;
  margin-top: 14px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.50));
}

.social-link svg {
  width: 34px;
  height: 34px;
}

.link-label {
  font-family: 'Georgia', serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.82);
}

.social-link:hover {
  color: #c8e8ff;
  transform: translateY(-3px);
}

/* ── Click anywhere — alt merkez, koyu pill ── */
#click-hint {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(4, 14, 28, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 9px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Georgia', serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
  animation: hintFade 2.8s ease-in-out infinite;
  transition: opacity 1s ease;
  z-index: 10;
  white-space: nowrap;
}

.hint-ripple {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  animation: ripplePulse 2.8s ease-in-out infinite;
}

@keyframes hintFade {
  0%, 100% { opacity: 0.50; }
  50%       { opacity: 1.00; }
}

@keyframes ripplePulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { transform: scale(1.4); box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}
