.love-input-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 24px;
}

.love-form-group {
  margin: 0;
}

.love-name-input {
  font-size: 1.1rem;
  text-align: center;
}

.love-heart-separator {
  font-size: 2rem;
  padding-bottom: 8px;
  color: var(--text-muted);
}

.love-calc-row {
  text-align: center;
  margin-bottom: 24px;
}

.love-calc-btn {
  padding: 12px 32px;
  font-size: 1.1rem;
}

.love-btn-icon {
  margin-right: 6px;
}

.love-display {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.love-actions {
  text-align: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.love-score {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin: 16px 0;
}
.love-score--high { color: #ff4d8d; }
.love-score--medium { color: #f59e0b; }
.love-score--low { color: #8b5cf6; }
.love-tier {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.love-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}
.love-names {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.love-bar-track {
  height: 12px;
  background: var(--bg-primary);
  border-radius: 6px;
  max-width: 300px;
  margin: 16px auto;
  overflow: hidden;
}
.love-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.5s ease;
  background: linear-gradient(90deg, #a855f7, #ff4d8d);
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}
.heart-anim { animation: heartbeat 1.5s ease infinite; display: inline-block; }

.heart-anim--large {
  font-size: 2.5rem;
}