* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  padding: 20px;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 2vh, 15px);
  width: max-content;
  max-width: 100%;
}

.identity {
  width: 100%;
  text-align: left;
}

.name {
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 4px;
}

.name a {
  text-decoration: none;
  color: black;
}

.tagline {
  font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  opacity: 0.6;
}

/* Fish Tank */
#tank {
  line-height: 1.05;
  font-size: clamp(14px, 1.4vw, 14px);
  user-select: none;
  cursor: default;
  align-self: center;
  min-width: 100%;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: clamp(0.85rem, 2.5vw, 0.9rem);
}

.nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav a::before {
  content: "";
  margin-right: 2px;
}

.nav a:hover {
  color: orange;
  padding-left: 12px;
  opacity: 1;
}

.nav a:hover::before {
  content: ">";
}

/* Mobile optimization */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }
  
  #tank {
    font-size: 14px;
    width: 100%;
  }
  
  .home {
    gap: 12px;
  }
}