body, html {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: 'Gochi Hand', cursive;
  overflow: hidden;
  box-sizing: border-box;
}

#main-bg {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(100% 100% at 50% 0%, #282828 0%, #202020 100%);
  overflow: hidden;
}

.center-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 24px);
  padding: 8px;
}

.g3v {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(60px, 10vw, 125px);
  line-height: 1.05;
  text-align: center;
  letter-spacing: -0.14em;
  color: #EBE1D7;
  z-index: 2;
}

#status-circle {
  width: 26px;
  height: 25px;
  flex: 0 0 auto;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.7,0,0.7,1), opacity 0.2s, width 0.3s cubic-bezier(0.7,0,0.7,1), margin-left 0.3s cubic-bezier(0.7,0,0.7,1);
}

.bottom-links {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100vw;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5vw;
  pointer-events: auto;
}

.github {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(20px, 2vw, 35px);
  line-height: 41px;
  text-align: center;
  letter-spacing: -0.08em;
  color: #423E3A;
  text-decoration: none;
  margin-bottom: 0;
}

.email {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(20px, 2vw, 35px);
  line-height: 41px;
  text-align: center;
  letter-spacing: -0.08em;
  color: #423E3A;
  text-decoration: none;
  margin-bottom: 0;
}

.status {
  font-family: 'Gochi Hand', cursive;
  font-size: clamp(20px, 2vw, 35px);
  line-height: 41px;
  text-align: center;
  letter-spacing: -0.08em;
  color: #423E3A;
  text-decoration: none;
  margin-bottom: 0;
}

/* Tooltip for status circle */
#status-circle {
  position: relative;
}

.status-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #202020;
  color: #EBE1D7;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.status-tooltip.show {
  opacity: 1;
}