body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 20px;
}

.intro {
  margin-bottom: 3rem;
  text-align: center;
  font-family: 'Fira Code', monospace;
}

.intro h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.description {
  font-size: 0.95rem;
  color: #aaaaaa;
}

.social {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.social a {
  color: #569cd6;
  text-decoration: none;
  font-family: 'Fira Code', monospace;
}

.social a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  color: #ffffff;
  font-family: 'Fira Code', monospace;
}

.entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.year {
  width: 130px;
  flex-shrink: 0;
  font-weight: 500;
  color: #808080;
  font-family: 'Fira Code', monospace;
}

.details h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: #dcdcdc;
}

.details p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  font-family: 'Fira Code', monospace;
}

a {
  color: gray;
  font-weight: 100;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
}

.skill {
  font-size: 0.75rem;
  /* background-color: #4c93cd; */
  background-color: #0e5881;
  padding: 4px;
  border-radius: 8px;
  font-family: 'Fira Code', monospace;
}

.paper {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #d4d4d4;
  position: relative;
  margin-bottom: 1rem;
}

.tooltip-container {
  display: inline-block;
  position: relative;
}

.tooltip-anchor {
  color: gray;
  cursor: pointer;
  font-weight: 100;
}
.tooltip-container:hover .tooltip,
.tooltip:hover {
  display: block;
}

.tooltip {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 0;
  background-color: #252526;
  border: 1px solid #333;
  padding: 0.75rem;
  border-radius: 4px;
  width: max-content;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 10;
}

.tooltip a {
  display: block;
  color: #9cdcfe;
  text-decoration: none;
  margin-bottom: 0.3rem;
  font-family: 'Fira Code', monospace;
}

.tooltip a:hover {
  text-decoration: underline;
}



.token-keyword    { color: #c586c0; }
.token-string     { color: #ce9178; }
.token-comment    { color: #6a9955; }
.token-constant   { color: #569cd6; font-weight: 500; }
.token-type       { color: #4ec9b0; }
.token-var        { color: #9cdcfe; }
