.song-line .custom-note {
  font-family: 'EB Garamond', Georgia, serif !important;
}
.intro {
  font-family: 'EB Garamond', 'Noto Serif JP', serif; 
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 10px 0;
  line-height: 1.5;
  max-width: 36ch;
}
.reroll-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 2px;
  font-family: 'EB Garamond', sans-serif; 
  transition: transform 0.25s ease, background 0.15s ease;
}

.reroll-btn svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #eee;
}

.avatar-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #eee;
}

.avatar-container .avatar,
.avatar-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 50%;
  margin: 0;
}

.avatar-container .avatar {
  z-index: 1;
}

#avatar-video {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#avatar-video.playing {
  opacity: 1;
  pointer-events: none; 
}