:root {
  --bg: #07110c;
  --bg-deep: #030805;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 20%, rgba(53, 137, 91, 0.18), transparent 26%),
    radial-gradient(circle at 50% 80%, rgba(29, 104, 68, 0.14), transparent 34%),
    linear-gradient(180deg, #07110c 0%, #040906 55%, #020403 100%);
}

body {
  overflow: hidden;
}

.app-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.social-links {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(120, 255, 160, 0.15);
  border-radius: 999px;
  background: rgba(5, 18, 10, 0.22);
  color: rgba(215, 255, 227, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
  opacity: 0.72;
}

.social-link:hover {
  color: rgba(235, 255, 241, 0.92);
  border-color: rgba(120, 255, 160, 0.35);
  background: rgba(10, 30, 16, 0.32);
  transform: translateY(-1px);
  opacity: 1;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
