.song-comments-section {
  margin-top: 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgba(214, 31, 0, 0.2);
  border-radius: 0.22rem;
  background: linear-gradient(180deg, rgba(16, 7, 7, 0.96), rgba(34, 8, 8, 0.92));
}

.song-comment-form {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(214, 31, 0, 0.15);
}

.comment-name,
.comment-text {
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(214, 31, 0, 0.25);
  border-radius: 0.2rem;
  background: rgba(0, 0, 0, 0.6);
  color: #f1d8d4;
  font-family: inherit;
  font-size: 0.95rem;
}

.comment-name::placeholder,
.comment-text::placeholder {
  color: rgba(241, 216, 212, 0.4);
}

.comment-name:focus,
.comment-text:focus {
  outline: 1px solid rgba(214, 31, 0, 0.5);
  border-color: rgba(214, 31, 0, 0.5);
}

.comment-submit-btn {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(214, 31, 0, 0.4);
  border-radius: 0.2rem;
  background: linear-gradient(180deg, rgba(214, 31, 0, 0.3), rgba(214, 31, 0, 0.1));
  color: #f1d8d4;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 180ms ease;
}

.comment-submit-btn:hover {
  border-color: rgba(214, 31, 0, 0.6);
  background: linear-gradient(180deg, rgba(214, 31, 0, 0.5), rgba(214, 31, 0, 0.25));
  filter: brightness(1.1);
}

.song-comments-list {
  display: grid;
  gap: 0.6rem;
}

.no-comments {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
  padding: 0.5rem 0;
}

.comment-item {
  padding: 0.7rem 0.75rem;
  border-left: 3px solid rgba(214, 31, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.15rem;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.comment-header strong {
  color: #f1d8d4;
  font-size: 0.95rem;
}

.comment-date {
  color: var(--ink-soft);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-left: auto;
}

.comment-text-display {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .song-comments-section {
    margin-top: 0.6rem;
    padding: 0.7rem;
  }

  .song-comment-form {
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .comment-name,
  .comment-text {
    padding: 0.6rem 0.6rem;
    font-size: 0.9rem;
  }

  .comment-item {
    padding: 0.6rem;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .comment-date {
    margin-left: 0;
  }
}
