:root {
  --base: #191724;
  --text: #e0def4;
  --subtext: #908caa;
  --lavender: #ebbcba;
  --blue: #c4a7e7;
  --green: #9ccfd8;
  --yellow: #f6c177;
  --red: #eb6f92;
  --surface0: #1f1d2e;
  --border: #e0def4;
  --overlay0: #6e6a86;

  --font-family-mono:
    "HurmitNFSubset", "HurmitNF", "Hurmit", "Cascadia Code", "Fira Code",
    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-md: 13px;
  --font-size-base: 14px;
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
}

@font-face {
  font-family: "HurmitNFSubset";
  src: url("fonts/HurmitNerdFont.subset.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HurmitNF";
  src:
    local("Hurmit Nerd Font"),
    local("HurmitNF"),
    local("Hurmit"),
    url("fonts/HurmitNerdFont.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-mono);
}

body {
  background: var(--base);
  color: var(--text);
  min-height: 100vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ui {
  width: 100%;
  max-width: 1200px;
  padding-bottom: 100px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.pane {
  border: 1px solid var(--border);
  padding: 15px;
  position: relative;
}

.pane-title {
  position: absolute;
  top: -10px;
  left: 10px;
  background: var(--base);
  padding: 0 5px;
  font-size: 12px;
  color: var(--border);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pfp {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10%;
  border: 2px solid var(--border);
  margin-bottom: 10px;
}

.bio-content {
  font-size: 14px;
  line-height: 1.4;
}

.link {
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
}

.link:hover {
  text-decoration: underline;
  color: var(--lavender);
}

.highlight {
  color: var(--yellow);
}

.skill-item {
  margin-bottom: 8px;
  font-size: 13px;
}

.bar-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar {
  color: var(--green);
  letter-spacing: -1px;
}

.bar-percent {
  color: var(--text);
  font-size: 11px;
}

.quote-box {
  display: block;
  width: min(100%, 720px);
  margin: 20px auto 0;
  opacity: 0.6;
  font-size: 12px;
  background: none;
  border: none;
  color: var(--subtext);
  text-align: center;
  cursor: pointer;
  padding: 8px 12px;
  transition: opacity 0.3s;
  white-space: normal;
}

.quote-box:hover {
  opacity: 1;
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
  100% {
    transform: translateY(-12px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
