@font-face {
  font-family: "Mplus";
  src: url("fonts/mplusone/MPLUS1Code-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Mplus";
  src: url("fonts/mplusone/MPLUS1Code-Bold.ttf") format("truetype");
  font-weight: 700;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Mplus", "SF Mono", "Fira Code", monospace;
  background: #000;
}

#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Glass morphism panels */
#info-container,
#aboutMe {
  position: fixed;
  color: white;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  z-index: 10;
}

#aboutMe {
  bottom: 24px;
  left: 24px;
  padding: 22px 26px;
}

#aboutMe .role {
  font-size: 0.9rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

#aboutMe .tagline {
  margin-top: 4px;
  font-size: 0.82rem;
  opacity: 0.5;
}

#socialLinks {
  display: flex;
  align-items: center;
  margin-top: 14px;
  gap: 14px;
}

#socialLinks a {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#socialLinks a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

#info-container {
  bottom: 24px;
  right: 24px;
  padding: 14px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

#info-container #time-info {
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

/* Mobile */
@media screen and (max-width: 745px) {
  #aboutMe {
    top: 24px;
    left: 12px;
    right: 12px;
    bottom: auto;
    text-align: center;
    padding: 18px 20px;
  }

  #socialLinks {
    justify-content: center;
  }

  #info-container {
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
